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 d40d5bb2d84..8e61f8f7dd4 100644 --- a/src/azure-cli/azure/cli/command_modules/search/_help.py +++ b/src/azure-cli/azure/cli/command_modules/search/_help.py @@ -64,3 +64,84 @@ type: command short-summary: Wait for async service operations. """ + +helps['search service query-key create'] = """ +type: command +short-summary: Creates a query key for a given Azure Search service. +examples: + - name: Create a query key for a Search service. + text: > + az search service query-key create --resource-group MyResourceGroup --search-service-name MySearchService -n MyQueryKey +""" + +helps['search service admin-key regenerate'] = """ +type: command +short-summary: Regenerate an admin key for a given Azure Search service. +examples: + - name: Regenerate the primary admin key for a Search service. + text: > + az search service admin-key regenerate --resource-group MyResourceGroup --search-service-name MySearchService --key-kind primary + - name: Regenerate the secondary admin key for a Search service. + text: > + az search service admin-key regenerate --resource-group MyResourceGroup --search-service-name MySearchService --key-kind secondary +""" + +helps['search service check-name-availability'] = """ +type: command +short-summary: Check the availability of a given Azure Search service name. +examples: + - name: Check if a Search service name is available. + text: > + az search service check-name-availability --name MySearchService --type searchServices +""" + +helps['search service upgrade'] = """ +type: command +short-summary: Upgrade a given Azure Search service. +examples: + - name: Upgrade a Search service. + text: > + az search service upgrade --resource-group MyResourceGroup --search-service-name MySearchService +""" + +helps['search service network-security-perimeter-configuration reconcile'] = """ +type: command +short-summary: Reconcile network security perimeter configuration for a given Azure Search service. +examples: + - name: Reconcile network security perimeter configuration and specify a perimeter name. + text: > + az search service network-security-perimeter-configuration reconcile --resource-group MyResourceGroup --search-service-name MySearchService --nsp-config-name MyPerimeter +""" + +helps['search service shared-private-link-resource create'] = """ +type: command +short-summary: Create a shared private link resource for a given Azure Search service. +examples: + - name: Create a shared private link resource for a Search service. + text: > + az search service shared-private-link-resource create --resource-group MyResourceGroup --search-service-name MySearchService --name MySharedPrivateLinkResource --group-id MyGroupId --resource-id /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/{provider}/{resourceType}/{resourceName} + - name: Create a shared private link resource and specify a request message. + text: > + az search service shared-private-link-resource create --resource-group MyResourceGroup --search-service-name MySearchService --name MySharedPrivateLinkResource --group-id MyGroupId --resource-id /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/{provider}/{resourceType}/{resourceName} --request-message "Please approve this connection." +""" + +helps['search service shared-private-link-resource update'] = """ +type: command +short-summary: Update a shared private link resource for a given Azure Search service. +examples: + - name: Update the request message for a shared private link resource. + text: > + az search service shared-private-link-resource update --resource-group MyResourceGroup --search-service-name MySearchService --name MySharedPrivateLinkResource --request-message "Updated request message." + - name: Approve a shared private link resource connection. + text: > + az search service shared-private-link-resource update --resource-group MyResourceGroup --search-service-name MySearchService --name MySharedPrivateLinkResource --status Approved +""" + +helps['search service private-endpoint-connection update'] = """ +type: command +short-summary: Update a private endpoint connection for a given Azure Search service. +examples: + - name: Approve a private endpoint connection. + text: > + az search service private-endpoint-connection update --resource-group MyResourceGroup --search-service-name MySearchService --name MyPrivateEndpointConnection +""" diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py index 5757aea3175..f6acc11aa4e 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/__init__.py @@ -4,3 +4,7 @@ # # Code generated by aaz-dev-tools # -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + 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 96e48ae0376..401c906a51f 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 Azure Search services, admin keys and query keys + """Manage Search """ pass diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py index f3bc154a807..c1fced8b762 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__cmd_group.py @@ -15,7 +15,7 @@ "search service", ) class __CMDGroup(AAZCommandGroup): - """Manage Azure Search services + """Manage Service """ pass diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py index a66fcaa1a56..6e02f5a6f00 100644 --- a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/__init__.py @@ -9,8 +9,11 @@ # flake8: noqa from .__cmd_group import * +from ._check_name_availability import * from ._create import * from ._delete import * +from ._list import * from ._show import * from ._update import * +from ._upgrade import * from ._wait import * 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 new file mode 100644 index 00000000000..1424d1e2555 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_check_name_availability.py @@ -0,0 +1,184 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service check-name-availability", +) +class CheckNameAvailability(AAZCommand): + """Checks whether or not the given search service name is available for use. Search service names must be globally unique since they are part of the service URI (https://``.search.windows.net). + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/checknameavailability", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + # define Arg Group "CheckNameAvailabilityInput" + + _args_schema = cls._args_schema + _args_schema.name = AAZStrArg( + options=["--name"], + arg_group="CheckNameAvailabilityInput", + help="The search service name to validate. Search service names must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and must be between 2 and 60 characters in length.", + required=True, + ) + _args_schema.type = AAZStrArg( + options=["--type"], + arg_group="CheckNameAvailabilityInput", + help="The type of the resource whose name is to be validated. This value must always be 'searchServices'.", + required=True, + enum={"searchServices": "searchServices"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ServicesCheckNameAvailability(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ServicesCheckNameAvailability(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Microsoft.Search/checkNameAvailability", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + 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.message = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name_available = AAZBoolType( + serialized_name="nameAvailable", + flags={"read_only": True}, + ) + _schema_on_200.reason = AAZStrType( + flags={"read_only": True}, + ) + + return cls._schema_on_200 + + +class _CheckNameAvailabilityHelper: + """Helper class for CheckNameAvailability""" + + +__all__ = ["CheckNameAvailability"] 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 b0adfb296b1..f75d8218f28 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 @@ -15,13 +15,13 @@ "search service create", ) class Create(AAZCommand): - """Create a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. + """Creates or updates a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. """ _aaz_info = { - "version": "2023-11-01", + "version": "2025-05-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2023-11-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], ] } @@ -47,7 +47,7 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.search_service_name = AAZStrArg( options=["-n", "--name", "--search-service-name"], - help="The name of the Azure Cognitive Search service to create or update. Search service names must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and must be between 2 and 60 characters in length. Search service names must be globally unique since they are part of the service URI (`https://.search.windows.net`). You cannot change the service name after the service is created.", + help="The name of the Azure AI Search service to create or update. Search service names must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and must be between 2 and 60 characters in length. Search service names must be unique since they are part of the service URI (https://``.search.windows.net). You cannot change the service name after the service is created.", required=True, ) @@ -74,10 +74,10 @@ def _build_arguments_schema(cls, *args, **kwargs): options=["--identity-type"], arg_group="Identity", help="The identity type.", - enum={"None": "None", "SystemAssigned": "SystemAssigned"}, + enum={"None": "None", "SystemAssigned": "SystemAssigned", "UserAssigned": "UserAssigned", "SystemAssigned, UserAssigned": "SystemAssigned, UserAssigned"}, ) - # define Arg Group "NetworkRuleSet" + # define Arg Group "NetworkRuleSet" _args_schema = cls._args_schema _args_schema.ip_rules_internal = AAZListArg( @@ -95,15 +95,43 @@ def _build_arguments_schema(cls, *args, **kwargs): help="Value corresponding to a single IPv4 address (eg., 123.1.2.3) or an IP range in CIDR format (eg., 123.1.2.3/24) to be allowed.", ) + _args_schema.bypass = AAZStrArg( + options=["--bypass"], + arg_group="NetworkRuleSet", + help="Possible origins of inbound traffic that can bypass the rules defined in the 'ipRules' section.", + enum={"AzureServices": "AzureServices", "None": "None"}, + ) + # define Arg Group "Properties" _args_schema = cls._args_schema + _args_schema.compute_type = AAZStrArg( + options=["--compute-type"], + arg_group="Properties", + help="Configure this property to support the search service using either the Default Compute or Azure Confidential Compute.", + enum={"confidential": "confidential", "default": "default"}, + ) + _args_schema.data_exfiltration_protections = AAZListArg( + options=["--data-exfiltration-protections", "--data--protections"], + arg_group="Properties", + help="A list of data exfiltration scenarios that are explicitly disallowed for the search service. Currently, the only supported value is 'All' to disable all possible data export scenarios with more fine grained controls planned for the future.", + ) _args_schema.disable_local_auth = AAZBoolArg( options=["--disable-local-auth"], arg_group="Properties", help="When set to true, calls to the search service will not be permitted to utilize API keys for authentication. This cannot be set to true if 'dataPlaneAuthOptions' are defined.", nullable=True, ) + _args_schema.encryption_with_cmk = AAZObjectArg( + options=["--encryption-with-cmk"], + arg_group="Properties", + help="Specifies any policy regarding encryption of resources (such as indexes) using customer manager keys within a search service.", + ) + _args_schema.endpoint = AAZStrArg( + options=["--endpoint"], + arg_group="Properties", + help="The endpoint of the Azure AI Search service.", + ) _args_schema.hosting_mode = AAZStrArg( options=["--hosting-mode"], arg_group="Properties", @@ -126,7 +154,7 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method.", default="enabled", - enum={"disabled": "disabled", "enabled": "enabled"}, + enum={"disabled": "disabled", "enabled": "enabled", "securedByPerimeter": "securedByPerimeter"}, ) _args_schema.replica_count = AAZIntArg( options=["--replica-count"], @@ -141,10 +169,28 @@ 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.upgrade_available = AAZStrArg( + options=["--upgrade-available"], + arg_group="Properties", + help="Indicates if the search service has an upgrade available.", + enum={"available": "available", "notAvailable": "notAvailable"}, + ) + + data_exfiltration_protections = cls._args_schema.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrArg( + enum={"BlockAll": "BlockAll"}, + ) + + encryption_with_cmk = cls._args_schema.encryption_with_cmk + encryption_with_cmk.enforcement = AAZStrArg( + options=["enforcement"], + help="Describes how a search service should enforce compliance if it finds objects that aren't encrypted with the customer-managed key.", + enum={"Disabled": "Disabled", "Enabled": "Enabled", "Unspecified": "Unspecified"}, + ) # define Arg Group "Service" @@ -157,6 +203,13 @@ def _build_arguments_schema(cls, *args, **kwargs): resource_group_arg="resource_group", ), ) + _args_schema.sku = AAZStrArg( + options=["--sku"], + arg_group="Service", + help="The SKU of the search service. Valid values include: 'free': Shared service. 'basic': Dedicated service with up to 3 replicas. 'standard': Dedicated service with up to 12 partitions and 12 replicas. 'standard2': Similar to standard, but with more capacity per search unit. 'standard3': The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity'). 'storage_optimized_l1': Supports 1TB per partition, up to 12 partitions. 'storage_optimized_l2': Supports 2TB per partition, up to 12 partitions.'", + required=True, + enum={"basic": "basic", "free": "free", "standard": "standard", "standard2": "standard2", "standard3": "standard3", "storage_optimized_l1": "storage_optimized_l1", "storage_optimized_l2": "storage_optimized_l2"}, + ) _args_schema.tags = AAZDictArg( options=["--tags"], arg_group="Service", @@ -165,17 +218,6 @@ def _build_arguments_schema(cls, *args, **kwargs): tags = cls._args_schema.tags tags.Element = AAZStrArg() - - # define Arg Group "Sku" - - _args_schema = cls._args_schema - _args_schema.sku = AAZStrArg( - options=["--sku"], - arg_group="Sku", - help="The SKU of the search service. Valid values include: 'free': Shared service. 'basic': Dedicated service with up to 3 replicas. 'standard': Dedicated service with up to 12 partitions and 12 replicas. 'standard2': Similar to standard, but with more capacity per search unit. 'standard3': The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity'). 'storage_optimized_l1': Supports 1TB per partition, up to 12 partitions. 'storage_optimized_l2': Supports 2TB per partition, up to 12 partitions.'", - required=True, - enum={"basic": "basic", "free": "free", "standard": "standard", "standard2": "standard2", "standard3": "standard3", "storage_optimized_l1": "storage_optimized_l1", "storage_optimized_l2": "storage_optimized_l2"}, - ) return cls._args_schema def _execute_operations(self): @@ -259,7 +301,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-11-01", + "api-version", "2025-05-01", required=True, ), } @@ -284,7 +326,7 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZObjectType) + _builder.set_prop("identity", AAZIdentityObjectType) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("sku", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) @@ -297,13 +339,18 @@ def content(self): properties = _builder.get(".properties") if properties is not None: properties.set_prop("authOptions", AAZObjectType) + properties.set_prop("computeType", AAZStrType, ".compute_type") + 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("endpoint", AAZStrType, ".endpoint") properties.set_prop("hostingMode", AAZStrType, ".hosting_mode") properties.set_prop("networkRuleSet", AAZObjectType) properties.set_prop("partitionCount", AAZIntType, ".partition_count") properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") properties.set_prop("replicaCount", AAZIntType, ".replica_count") properties.set_prop("semanticSearch", AAZStrType, ".semantic_search", typ_kwargs={"nullable": True}) + properties.set_prop("upgradeAvailable", AAZStrType, ".upgrade_available") auth_options = _builder.get(".properties.authOptions") if auth_options is not None: @@ -314,8 +361,17 @@ def content(self): if aad_or_api_key is not None: aad_or_api_key.set_prop("aadAuthFailureMode", AAZStrType, ".aad_auth_failure_mode") + data_exfiltration_protections = _builder.get(".properties.dataExfiltrationProtections") + if data_exfiltration_protections is not None: + data_exfiltration_protections.set_elements(AAZStrType, ".") + + encryption_with_cmk = _builder.get(".properties.encryptionWithCmk") + if encryption_with_cmk is not None: + encryption_with_cmk.set_prop("enforcement", AAZStrType, ".enforcement") + network_rule_set = _builder.get(".properties.networkRuleSet") if network_rule_set is not None: + network_rule_set.set_prop("bypass", AAZStrType, ".bypass") network_rule_set.set_prop("ipRules", AAZListType, ".ip_rules_internal") ip_rules = _builder.get(".properties.networkRuleSet.ipRules") @@ -357,7 +413,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.identity = AAZObjectType() + _schema_on_200_201.identity = AAZIdentityObjectType() _schema_on_200_201.location = AAZStrType( flags={"required": True}, ) @@ -367,9 +423,12 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.properties = AAZObjectType( flags={"client_flatten": True}, ) - _schema_on_200_201.sku = AAZObjectType( - flags={"required": True}, + _schema_on_200_201.sku = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, ) + _CreateHelper._build_schema_system_data_read(_schema_on_200_201.system_data) _schema_on_200_201.tags = AAZDictType() _schema_on_200_201.type = AAZStrType( flags={"read_only": True}, @@ -387,18 +446,45 @@ def _build_schema_on_200_201(cls): identity.type = AAZStrType( flags={"required": True}, ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200_201.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200_201.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) properties = cls._schema_on_200_201.properties properties.auth_options = AAZObjectType( serialized_name="authOptions", ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", nullable=True, ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) properties.encryption_with_cmk = AAZObjectType( serialized_name="encryptionWithCmk", ) + properties.endpoint = AAZStrType() properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) @@ -426,6 +512,10 @@ def _build_schema_on_200_201(cls): serialized_name="semanticSearch", nullable=True, ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) properties.shared_private_link_resources = AAZListType( serialized_name="sharedPrivateLinkResources", flags={"read_only": True}, @@ -437,6 +527,9 @@ def _build_schema_on_200_201(cls): serialized_name="statusDetails", flags={"read_only": True}, ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) auth_options = cls._schema_on_200_201.properties.auth_options auth_options.aad_or_api_key = AAZObjectType( @@ -451,6 +544,9 @@ def _build_schema_on_200_201(cls): serialized_name="aadAuthFailureMode", ) + data_exfiltration_protections = cls._schema_on_200_201.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + encryption_with_cmk = cls._schema_on_200_201.properties.encryption_with_cmk encryption_with_cmk.encryption_compliance_status = AAZStrType( serialized_name="encryptionComplianceStatus", @@ -459,6 +555,7 @@ def _build_schema_on_200_201(cls): encryption_with_cmk.enforcement = AAZStrType() network_rule_set = cls._schema_on_200_201.properties.network_rule_set + network_rule_set.bypass = AAZStrType() network_rule_set.ip_rules = AAZListType( serialized_name="ipRules", ) @@ -480,6 +577,11 @@ def _build_schema_on_200_201(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _CreateHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -519,6 +621,11 @@ def _build_schema_on_200_201(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _CreateHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -555,5 +662,49 @@ def _build_schema_on_200_201(cls): class _CreateHelper: """Helper class for Create""" + _schema_system_data_read = None + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + __all__ = ["Create"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_delete.py index 53b973864b4..b9f4c8c667c 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": "2022-09-01", + "version": "2025-05-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2022-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], ] } @@ -47,9 +47,12 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.search_service_name = AAZStrArg( options=["-n", "--name", "--search-service-name"], - help="The name of the Azure Cognitive Search service associated with the specified resource group.", + help="The name of the Azure AI Search service associated with the specified resource group.", required=True, id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), ) return cls._args_schema @@ -116,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-09-01", + "api-version", "2025-05-01", 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 new file mode 100644 index 00000000000..e01cf1578af --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_list.py @@ -0,0 +1,787 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service list", +) +class List(AAZCommand): + """List a list of all Search services in the given subscription. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/searchservices", "2025-05-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) + if condition_0: + self.ServicesListBySubscription(ctx=self.ctx)() + if condition_1: + self.ServicesListByResourceGroup(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 ServicesListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Microsoft.Search/searchServices", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.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.id = AAZStrType( + flags={"read_only": True}, + ) + _element.identity = AAZIdentityObjectType() + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.sku = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200.value.Element.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.endpoint = AAZStrType() + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) + + auth_options = cls._schema_on_200.value.Element.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200.value.Element.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + data_exfiltration_protections = cls._schema_on_200.value.Element.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + + encryption_with_cmk = cls._schema_on_200.value.Element.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200.value.Element.properties.network_rule_set + network_rule_set.bypass = AAZStrType() + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200.value.Element.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200.value.Element.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200.value.Element.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200.value.Element.sku + sku.name = AAZStrType() + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + class ServicesListByResourceGroup(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.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.id = AAZStrType( + flags={"read_only": True}, + ) + _element.identity = AAZIdentityObjectType() + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.sku = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200.value.Element.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.endpoint = AAZStrType() + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) + + auth_options = cls._schema_on_200.value.Element.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200.value.Element.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + data_exfiltration_protections = cls._schema_on_200.value.Element.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + + encryption_with_cmk = cls._schema_on_200.value.Element.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200.value.Element.properties.network_rule_set + network_rule_set.bypass = AAZStrType() + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200.value.Element.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200.value.Element.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.value.Element.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200.value.Element.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ListHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200.value.Element.sku + sku.name = AAZStrType() + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + _schema_system_data_read = None + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + + +__all__ = ["List"] 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 0ce7e08f32a..07c9681e96d 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": "2023-11-01", + "version": "2025-05-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2023-11-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], ] } @@ -46,9 +46,12 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.search_service_name = AAZStrArg( options=["-n", "--name", "--search-service-name"], - help="The name of the Azure Cognitive Search service associated with the specified resource group.", + help="The name of the Azure AI Search service associated with the specified resource group.", required=True, id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), ) return cls._args_schema @@ -117,7 +120,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-11-01", + "api-version", "2025-05-01", required=True, ), } @@ -153,7 +156,7 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZObjectType() + _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.location = AAZStrType( flags={"required": True}, ) @@ -163,9 +166,12 @@ def _build_schema_on_200(cls): _schema_on_200.properties = AAZObjectType( flags={"client_flatten": True}, ) - _schema_on_200.sku = AAZObjectType( - flags={"required": True}, + _schema_on_200.sku = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, ) + _ShowHelper._build_schema_system_data_read(_schema_on_200.system_data) _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, @@ -183,18 +189,45 @@ def _build_schema_on_200(cls): identity.type = AAZStrType( flags={"required": True}, ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) properties = cls._schema_on_200.properties properties.auth_options = AAZObjectType( serialized_name="authOptions", ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", nullable=True, ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) properties.encryption_with_cmk = AAZObjectType( serialized_name="encryptionWithCmk", ) + properties.endpoint = AAZStrType() properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) @@ -222,6 +255,10 @@ def _build_schema_on_200(cls): serialized_name="semanticSearch", nullable=True, ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) properties.shared_private_link_resources = AAZListType( serialized_name="sharedPrivateLinkResources", flags={"read_only": True}, @@ -233,6 +270,9 @@ def _build_schema_on_200(cls): serialized_name="statusDetails", flags={"read_only": True}, ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) auth_options = cls._schema_on_200.properties.auth_options auth_options.aad_or_api_key = AAZObjectType( @@ -247,6 +287,9 @@ def _build_schema_on_200(cls): serialized_name="aadAuthFailureMode", ) + data_exfiltration_protections = cls._schema_on_200.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + encryption_with_cmk = cls._schema_on_200.properties.encryption_with_cmk encryption_with_cmk.encryption_compliance_status = AAZStrType( serialized_name="encryptionComplianceStatus", @@ -255,6 +298,7 @@ def _build_schema_on_200(cls): encryption_with_cmk.enforcement = AAZStrType() network_rule_set = cls._schema_on_200.properties.network_rule_set + network_rule_set.bypass = AAZStrType() network_rule_set.ip_rules = AAZListType( serialized_name="ipRules", ) @@ -276,6 +320,11 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ShowHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -315,6 +364,11 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _ShowHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -338,9 +392,7 @@ def _build_schema_on_200(cls): properties.status = AAZStrType() sku = cls._schema_on_200.sku - sku.name = AAZStrType( - flags={"required": True}, - ) + sku.name = AAZStrType() tags = cls._schema_on_200.tags tags.Element = AAZStrType() @@ -351,5 +403,49 @@ def _build_schema_on_200(cls): class _ShowHelper: """Helper class for Show""" + _schema_system_data_read = None + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + __all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_update.py index eba8ef7fe20..6c296355afc 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 @@ -15,13 +15,13 @@ "search service update", ) class Update(AAZCommand): - """Update a search service in the given resource group. If the search service already exists, all properties will be updated with the given values. + """Update an existing search service in the given resource group. """ _aaz_info = { - "version": "2022-09-01", + "version": "2025-05-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2022-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], ] } @@ -49,7 +49,7 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.search_service_name = AAZStrArg( options=["-n", "--name", "--search-service-name"], - help="The name of the Azure Cognitive Search service associated with the specified resource group.", + help="The name of the Azure AI Search service to update.", required=True, id_part="name", ) @@ -107,12 +107,22 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "Properties" _args_schema = cls._args_schema + _args_schema.data_exfiltration_protections = AAZListArg( + options=["--data-exfiltration-protections", "--data--protections"], + arg_group="Properties", + help="A list of data exfiltration scenarios that are explicitly disallowed for the search service. Currently, the only supported value is 'All' to disable all possible data export scenarios with more fine grained controls planned for the future.", + ) _args_schema.disable_local_auth = AAZBoolArg( options=["--disable-local-auth"], arg_group="Properties", help="When set to true, calls to the search service will not be permitted to utilize API keys for authentication. This cannot be set to true if 'dataPlaneAuthOptions' are defined.", nullable=True, ) + _args_schema.encryption_with_cmk = AAZObjectArg( + options=["--encryption-with-cmk"], + arg_group="Properties", + help="Specifies any policy regarding encryption of resources (such as indexes) using customer manager keys within a search service.", + ) _args_schema.partition_count = AAZIntArg( options=["--partition-count"], arg_group="Properties", @@ -148,9 +158,27 @@ def _build_arguments_schema(cls, *args, **kwargs): enum={"disabled": "disabled", "free": "free", "standard": "standard"}, ) + data_exfiltration_protections = cls._args_schema.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrArg( + enum={"BlockAll": "BlockAll"}, + ) + + encryption_with_cmk = cls._args_schema.encryption_with_cmk + encryption_with_cmk.enforcement = AAZStrArg( + options=["enforcement"], + help="Describes how a search service should enforce compliance if it finds objects that aren't encrypted with the customer-managed key.", + enum={"Disabled": "Disabled", "Enabled": "Enabled", "Unspecified": "Unspecified"}, + ) + # define Arg Group "Service" _args_schema = cls._args_schema + _args_schema.sku = AAZStrArg( + options=["--sku"], + arg_group="Service", + help="The SKU of the search service. Valid values include: 'free': Shared service. 'basic': Dedicated service with up to 3 replicas. 'standard': Dedicated service with up to 12 partitions and 12 replicas. 'standard2': Similar to standard, but with more capacity per search unit. 'standard3': The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity'). 'storage_optimized_l1': Supports 1TB per partition, up to 12 partitions. 'storage_optimized_l2': Supports 2TB per partition, up to 12 partitions.'", + enum={"basic": "basic", "free": "free", "standard": "standard", "standard2": "standard2", "standard3": "standard3", "storage_optimized_l1": "storage_optimized_l1", "storage_optimized_l2": "storage_optimized_l2"}, + ) _args_schema.tags = AAZDictArg( options=["--tags"], arg_group="Service", @@ -244,7 +272,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-09-01", + "api-version", "2025-05-01", required=True, ), } @@ -343,7 +371,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-09-01", + "api-version", "2025-05-01", required=True, ), } @@ -413,7 +441,9 @@ def _update_instance(self, instance): properties = _builder.get(".properties") if properties is not None: properties.set_prop("authOptions", AAZObjectType) + 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("networkRuleSet", AAZObjectType) properties.set_prop("partitionCount", AAZIntType, ".partition_count") properties.set_prop("publicNetworkAccess", AAZStrType, ".public_network_access") @@ -428,6 +458,14 @@ def _update_instance(self, instance): aad_or_api_key = _builder.get(".properties.authOptions.aadOrApiKey") if aad_or_api_key is not None: aad_or_api_key.set_prop("aadAuthFailureMode", AAZStrType, ".aad_auth_failure_mode") + + data_exfiltration_protections = _builder.get(".properties.dataExfiltrationProtections") + if data_exfiltration_protections is not None: + data_exfiltration_protections.set_elements(AAZStrType, ".") + + encryption_with_cmk = _builder.get(".properties.encryptionWithCmk") + if encryption_with_cmk is not None: + encryption_with_cmk.set_prop("enforcement", AAZStrType, ".enforcement") network_rule_set = _builder.get(".properties.networkRuleSet") if network_rule_set is not None: @@ -441,6 +479,10 @@ def _update_instance(self, instance): if _elements is not None: _elements.set_prop("value", AAZStrType, ".value") + sku = _builder.get(".sku") + if sku is not None: + sku.set_prop("name", AAZStrType, ".sku", typ_kwargs={"flags": {"required": True}}) + tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -460,6 +502,7 @@ class _UpdateHelper: """Helper class for Update""" _schema_search_service_read = None + _schema_system_data_read = None @classmethod def _build_schema_search_service_read(cls, _schema): @@ -493,6 +536,11 @@ def _build_schema_search_service_read(cls, _schema): search_service_read.sku = AAZObjectType( flags={"required": True}, ) + search_service_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_system_data_read(search_service_read.system_data) search_service_read.tags = AAZDictType() search_service_read.type = AAZStrType( flags={"read_only": True}, @@ -515,10 +563,17 @@ def _build_schema_search_service_read(cls, _schema): properties.auth_options = AAZObjectType( serialized_name="authOptions", ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", nullable=True, ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) properties.encryption_with_cmk = AAZObjectType( serialized_name="encryptionWithCmk", ) @@ -560,6 +615,9 @@ def _build_schema_search_service_read(cls, _schema): serialized_name="statusDetails", flags={"read_only": True}, ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) auth_options = _schema_search_service_read.properties.auth_options auth_options.aad_or_api_key = AAZObjectType( @@ -574,6 +632,9 @@ def _build_schema_search_service_read(cls, _schema): serialized_name="aadAuthFailureMode", ) + data_exfiltration_protections = _schema_search_service_read.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + encryption_with_cmk = _schema_search_service_read.properties.encryption_with_cmk encryption_with_cmk.encryption_compliance_status = AAZStrType( serialized_name="encryptionComplianceStatus", @@ -603,6 +664,11 @@ def _build_schema_search_service_read(cls, _schema): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -642,6 +708,11 @@ def _build_schema_search_service_read(cls, _schema): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -680,6 +751,49 @@ def _build_schema_search_service_read(cls, _schema): _schema.sku = cls._schema_search_service_read.sku _schema.tags = cls._schema_search_service_read.tags _schema.type = cls._schema_search_service_read.type + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + -__all__ = ["Update"] +__all__ = ["Update"] \ No newline at end of file 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 new file mode 100644 index 00000000000..895bda44a9b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/_upgrade.py @@ -0,0 +1,468 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service upgrade", +) +class Upgrade(AAZCommand): + """Upgrades the Azure AI Search service to the latest version available. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/upgrade", "2025-05-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ServicesUpgrade(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ServicesUpgrade(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/upgrade", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.identity = AAZIdentityObjectType() + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.sku = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpgradeHelper._build_schema_system_data_read(_schema_on_200.system_data) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + identity = cls._schema_on_200.identity + identity.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + identity.tenant_id = AAZStrType( + serialized_name="tenantId", + flags={"read_only": True}, + ) + identity.type = AAZStrType( + flags={"required": True}, + ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.auth_options = AAZObjectType( + serialized_name="authOptions", + ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) + properties.disable_local_auth = AAZBoolType( + serialized_name="disableLocalAuth", + nullable=True, + ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) + properties.encryption_with_cmk = AAZObjectType( + serialized_name="encryptionWithCmk", + ) + properties.endpoint = AAZStrType() + properties.hosting_mode = AAZStrType( + serialized_name="hostingMode", + ) + properties.network_rule_set = AAZObjectType( + serialized_name="networkRuleSet", + ) + properties.partition_count = AAZIntType( + serialized_name="partitionCount", + ) + properties.private_endpoint_connections = AAZListType( + serialized_name="privateEndpointConnections", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.public_network_access = AAZStrType( + serialized_name="publicNetworkAccess", + ) + properties.replica_count = AAZIntType( + serialized_name="replicaCount", + ) + properties.semantic_search = AAZStrType( + serialized_name="semanticSearch", + nullable=True, + ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) + properties.shared_private_link_resources = AAZListType( + serialized_name="sharedPrivateLinkResources", + flags={"read_only": True}, + ) + properties.status = AAZStrType( + flags={"read_only": True}, + ) + properties.status_details = AAZStrType( + serialized_name="statusDetails", + flags={"read_only": True}, + ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) + + auth_options = cls._schema_on_200.properties.auth_options + auth_options.aad_or_api_key = AAZObjectType( + serialized_name="aadOrApiKey", + ) + auth_options.api_key_only = AAZObjectType( + serialized_name="apiKeyOnly", + ) + + aad_or_api_key = cls._schema_on_200.properties.auth_options.aad_or_api_key + aad_or_api_key.aad_auth_failure_mode = AAZStrType( + serialized_name="aadAuthFailureMode", + ) + + data_exfiltration_protections = cls._schema_on_200.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + + encryption_with_cmk = cls._schema_on_200.properties.encryption_with_cmk + encryption_with_cmk.encryption_compliance_status = AAZStrType( + serialized_name="encryptionComplianceStatus", + flags={"read_only": True}, + ) + encryption_with_cmk.enforcement = AAZStrType() + + network_rule_set = cls._schema_on_200.properties.network_rule_set + network_rule_set.bypass = AAZStrType() + network_rule_set.ip_rules = AAZListType( + serialized_name="ipRules", + ) + + ip_rules = cls._schema_on_200.properties.network_rule_set.ip_rules + ip_rules.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.network_rule_set.ip_rules.Element + _element.value = AAZStrType() + + private_endpoint_connections = cls._schema_on_200.properties.private_endpoint_connections + private_endpoint_connections.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.private_endpoint_connections.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpgradeHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.private_endpoint_connections.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.properties.private_endpoint_connections.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + shared_private_link_resources = cls._schema_on_200.properties.shared_private_link_resources + shared_private_link_resources.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.shared_private_link_resources.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _UpgradeHelper._build_schema_system_data_read(_element.system_data) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.shared_private_link_resources.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + sku = cls._schema_on_200.sku + sku.name = AAZStrType() + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _UpgradeHelper: + """Helper class for Upgrade""" + + _schema_system_data_read = None + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + + +__all__ = ["Upgrade"] 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 c1da7fc209f..4dca94f910a 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/{}", "2023-11-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}", "2025-05-01"], ] } @@ -45,9 +45,12 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.search_service_name = AAZStrArg( options=["-n", "--name", "--search-service-name"], - help="The name of the Azure Cognitive Search service associated with the specified resource group.", + help="The name of the Azure AI Search service associated with the specified resource group.", required=True, id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), ) return cls._args_schema @@ -116,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-11-01", + "api-version", "2025-05-01", required=True, ), } @@ -152,7 +155,7 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZObjectType() + _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.location = AAZStrType( flags={"required": True}, ) @@ -162,9 +165,12 @@ def _build_schema_on_200(cls): _schema_on_200.properties = AAZObjectType( flags={"client_flatten": True}, ) - _schema_on_200.sku = AAZObjectType( - flags={"required": True}, + _schema_on_200.sku = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, ) + _WaitHelper._build_schema_system_data_read(_schema_on_200.system_data) _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, @@ -182,18 +188,45 @@ def _build_schema_on_200(cls): identity.type = AAZStrType( flags={"required": True}, ) + identity.user_assigned_identities = AAZDictType( + serialized_name="userAssignedIdentities", + ) + + user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities + user_assigned_identities.Element = AAZObjectType() + + _element = cls._schema_on_200.identity.user_assigned_identities.Element + _element.client_id = AAZStrType( + serialized_name="clientId", + flags={"read_only": True}, + ) + _element.principal_id = AAZStrType( + serialized_name="principalId", + flags={"read_only": True}, + ) properties = cls._schema_on_200.properties properties.auth_options = AAZObjectType( serialized_name="authOptions", ) + properties.compute_type = AAZStrType( + serialized_name="computeType", + ) + properties.data_exfiltration_protections = AAZListType( + serialized_name="dataExfiltrationProtections", + ) properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", nullable=True, ) + properties.e_tag = AAZStrType( + serialized_name="eTag", + flags={"read_only": True}, + ) properties.encryption_with_cmk = AAZObjectType( serialized_name="encryptionWithCmk", ) + properties.endpoint = AAZStrType() properties.hosting_mode = AAZStrType( serialized_name="hostingMode", ) @@ -221,6 +254,10 @@ def _build_schema_on_200(cls): serialized_name="semanticSearch", nullable=True, ) + properties.service_upgraded_at = AAZStrType( + serialized_name="serviceUpgradedAt", + flags={"read_only": True}, + ) properties.shared_private_link_resources = AAZListType( serialized_name="sharedPrivateLinkResources", flags={"read_only": True}, @@ -232,6 +269,9 @@ def _build_schema_on_200(cls): serialized_name="statusDetails", flags={"read_only": True}, ) + properties.upgrade_available = AAZStrType( + serialized_name="upgradeAvailable", + ) auth_options = cls._schema_on_200.properties.auth_options auth_options.aad_or_api_key = AAZObjectType( @@ -246,6 +286,9 @@ def _build_schema_on_200(cls): serialized_name="aadAuthFailureMode", ) + data_exfiltration_protections = cls._schema_on_200.properties.data_exfiltration_protections + data_exfiltration_protections.Element = AAZStrType() + encryption_with_cmk = cls._schema_on_200.properties.encryption_with_cmk encryption_with_cmk.encryption_compliance_status = AAZStrType( serialized_name="encryptionComplianceStatus", @@ -254,6 +297,7 @@ def _build_schema_on_200(cls): encryption_with_cmk.enforcement = AAZStrType() network_rule_set = cls._schema_on_200.properties.network_rule_set + network_rule_set.bypass = AAZStrType() network_rule_set.ip_rules = AAZListType( serialized_name="ipRules", ) @@ -275,6 +319,11 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _WaitHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -314,6 +363,11 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _WaitHelper._build_schema_system_data_read(_element.system_data) _element.type = AAZStrType( flags={"read_only": True}, ) @@ -337,9 +391,7 @@ def _build_schema_on_200(cls): properties.status = AAZStrType() sku = cls._schema_on_200.sku - sku.name = AAZStrType( - flags={"required": True}, - ) + sku.name = AAZStrType() tags = cls._schema_on_200.tags tags.Element = AAZStrType() @@ -350,5 +402,49 @@ def _build_schema_on_200(cls): class _WaitHelper: """Helper class for Wait""" + _schema_system_data_read = None + + @classmethod + def _build_schema_system_data_read(cls, _schema): + if cls._schema_system_data_read is not None: + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + return + + cls._schema_system_data_read = _schema_system_data_read = AAZObjectType( + flags={"read_only": True} + ) + + system_data_read = _schema_system_data_read + system_data_read.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data_read.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data_read.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data_read.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data_read.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data_read.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.created_at = cls._schema_system_data_read.created_at + _schema.created_by = cls._schema_system_data_read.created_by + _schema.created_by_type = cls._schema_system_data_read.created_by_type + _schema.last_modified_at = cls._schema_system_data_read.last_modified_at + _schema.last_modified_by = cls._schema_system_data_read.last_modified_by + _schema.last_modified_by_type = cls._schema_system_data_read.last_modified_by_type + __all__ = ["Wait"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__cmd_group.py new file mode 100644 index 00000000000..4e1d56058d9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service admin-key", +) +class __CMDGroup(AAZCommandGroup): + """Manage Admin Key + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__init__.py new file mode 100644 index 00000000000..3e9ccb8fab5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/__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 * +from ._regenerate import * 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 new file mode 100644 index 00000000000..12dc3563220 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_list.py @@ -0,0 +1,171 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service admin-key list", +) +class List(AAZCommand): + """Gets the primary and secondary admin API keys for the specified Azure AI Search service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listadminkeys", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AdminKeysGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AdminKeysGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/listAdminKeys", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.primary_key = AAZStrType( + serialized_name="primaryKey", + flags={"read_only": True}, + ) + _schema_on_200.secondary_key = AAZStrType( + serialized_name="secondaryKey", + flags={"read_only": True}, + ) + + 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/admin_key/_regenerate.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py new file mode 100644 index 00000000000..26b3b7ce4d6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/admin_key/_regenerate.py @@ -0,0 +1,183 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service admin-key regenerate", +) +class Regenerate(AAZCommand): + """Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/regenerateadminkey/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.key_kind = AAZStrArg( + options=["-n", "--name", "--key-kind"], + help="Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.", + required=True, + id_part="child_name_1", + enum={"primary": "primary", "secondary": "secondary"}, + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AdminKeysRegenerate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AdminKeysRegenerate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/regenerateAdminKey/{keyKind}", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "keyKind", self.ctx.args.key_kind, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.primary_key = AAZStrType( + serialized_name="primaryKey", + flags={"read_only": True}, + ) + _schema_on_200.secondary_key = AAZStrType( + serialized_name="secondaryKey", + flags={"read_only": True}, + ) + + return cls._schema_on_200 + + +class _RegenerateHelper: + """Helper class for Regenerate""" + + +__all__ = ["Regenerate"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__cmd_group.py new file mode 100644 index 00000000000..d9c7a87d9b2 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service network-security-perimeter-configuration", +) +class __CMDGroup(AAZCommandGroup): + """Manage Network Security Perimeter Configuration + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__init__.py new file mode 100644 index 00000000000..1147e219235 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/__init__.py @@ -0,0 +1,14 @@ +# -------------------------------------------------------------------------------------------- +# 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 * +from ._reconcile import * +from ._show import * 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 new file mode 100644 index 00000000000..62be64b9e59 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_list.py @@ -0,0 +1,378 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service network-security-perimeter-configuration list", +) +class List(AAZCommand): + """List a list of network security perimeter configurations for a search service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.NetworkSecurityPerimeterConfigurationsListByService(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 NetworkSecurityPerimeterConfigurationsListByService(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/networkSecurityPerimeterConfigurations", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType() + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.network_security_perimeter = AAZObjectType( + serialized_name="networkSecurityPerimeter", + ) + _ListHelper._build_schema_network_security_perimeter_read(properties.network_security_perimeter) + properties.profile = AAZObjectType() + properties.provisioning_issues = AAZListType( + serialized_name="provisioningIssues", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_association = AAZObjectType( + serialized_name="resourceAssociation", + ) + + profile = cls._schema_on_200.value.Element.properties.profile + profile.access_rules = AAZListType( + serialized_name="accessRules", + ) + profile.access_rules_version = AAZIntType( + serialized_name="accessRulesVersion", + ) + profile.diagnostic_settings_version = AAZIntType( + serialized_name="diagnosticSettingsVersion", + ) + profile.enabled_log_categories = AAZListType( + serialized_name="enabledLogCategories", + ) + profile.name = AAZStrType() + + access_rules = cls._schema_on_200.value.Element.properties.profile.access_rules + access_rules.Element = AAZObjectType() + _ListHelper._build_schema_access_rule_read(access_rules.Element) + + enabled_log_categories = cls._schema_on_200.value.Element.properties.profile.enabled_log_categories + enabled_log_categories.Element = AAZStrType() + + provisioning_issues = cls._schema_on_200.value.Element.properties.provisioning_issues + provisioning_issues.Element = AAZObjectType( + flags={"read_only": True}, + ) + + _element = cls._schema_on_200.value.Element.properties.provisioning_issues.Element + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.provisioning_issues.Element.properties + properties.description = AAZStrType( + flags={"read_only": True}, + ) + properties.issue_type = AAZStrType( + serialized_name="issueType", + flags={"read_only": True}, + ) + properties.severity = AAZStrType( + flags={"read_only": True}, + ) + properties.suggested_access_rules = AAZListType( + serialized_name="suggestedAccessRules", + flags={"read_only": True}, + ) + properties.suggested_resource_ids = AAZListType( + serialized_name="suggestedResourceIds", + flags={"read_only": True}, + ) + + suggested_access_rules = cls._schema_on_200.value.Element.properties.provisioning_issues.Element.properties.suggested_access_rules + suggested_access_rules.Element = AAZObjectType() + _ListHelper._build_schema_access_rule_read(suggested_access_rules.Element) + + suggested_resource_ids = cls._schema_on_200.value.Element.properties.provisioning_issues.Element.properties.suggested_resource_ids + suggested_resource_ids.Element = AAZStrType( + flags={"read_only": True}, + ) + + resource_association = cls._schema_on_200.value.Element.properties.resource_association + resource_association.access_mode = AAZStrType( + serialized_name="accessMode", + ) + resource_association.name = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + _schema_access_rule_read = None + + @classmethod + def _build_schema_access_rule_read(cls, _schema): + if cls._schema_access_rule_read is not None: + _schema.name = cls._schema_access_rule_read.name + _schema.properties = cls._schema_access_rule_read.properties + return + + cls._schema_access_rule_read = _schema_access_rule_read = AAZObjectType() + + access_rule_read = _schema_access_rule_read + access_rule_read.name = AAZStrType() + access_rule_read.properties = AAZObjectType() + + properties = _schema_access_rule_read.properties + properties.address_prefixes = AAZListType( + serialized_name="addressPrefixes", + ) + properties.direction = AAZStrType() + properties.email_addresses = AAZListType( + serialized_name="emailAddresses", + ) + properties.fully_qualified_domain_names = AAZListType( + serialized_name="fullyQualifiedDomainNames", + ) + properties.network_security_perimeters = AAZListType( + serialized_name="networkSecurityPerimeters", + ) + properties.phone_numbers = AAZListType( + serialized_name="phoneNumbers", + ) + properties.subscriptions = AAZListType() + + address_prefixes = _schema_access_rule_read.properties.address_prefixes + address_prefixes.Element = AAZStrType() + + email_addresses = _schema_access_rule_read.properties.email_addresses + email_addresses.Element = AAZStrType() + + fully_qualified_domain_names = _schema_access_rule_read.properties.fully_qualified_domain_names + fully_qualified_domain_names.Element = AAZStrType() + + network_security_perimeters = _schema_access_rule_read.properties.network_security_perimeters + network_security_perimeters.Element = AAZObjectType() + cls._build_schema_network_security_perimeter_read(network_security_perimeters.Element) + + phone_numbers = _schema_access_rule_read.properties.phone_numbers + phone_numbers.Element = AAZStrType() + + subscriptions = _schema_access_rule_read.properties.subscriptions + subscriptions.Element = AAZObjectType() + + _element = _schema_access_rule_read.properties.subscriptions.Element + _element.id = AAZStrType() + + _schema.name = cls._schema_access_rule_read.name + _schema.properties = cls._schema_access_rule_read.properties + + _schema_network_security_perimeter_read = None + + @classmethod + def _build_schema_network_security_perimeter_read(cls, _schema): + if cls._schema_network_security_perimeter_read is not None: + _schema.id = cls._schema_network_security_perimeter_read.id + _schema.location = cls._schema_network_security_perimeter_read.location + _schema.perimeter_guid = cls._schema_network_security_perimeter_read.perimeter_guid + return + + cls._schema_network_security_perimeter_read = _schema_network_security_perimeter_read = AAZObjectType() + + network_security_perimeter_read = _schema_network_security_perimeter_read + network_security_perimeter_read.id = AAZStrType() + network_security_perimeter_read.location = AAZStrType() + network_security_perimeter_read.perimeter_guid = AAZStrType( + serialized_name="perimeterGuid", + ) + + _schema.id = cls._schema_network_security_perimeter_read.id + _schema.location = cls._schema_network_security_perimeter_read.location + _schema.perimeter_guid = cls._schema_network_security_perimeter_read.perimeter_guid + + +__all__ = ["List"] 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 new file mode 100644 index 00000000000..963bf1a9e59 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_reconcile.py @@ -0,0 +1,151 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service network-security-perimeter-configuration reconcile", +) +class Reconcile(AAZCommand): + """Reconcile network security perimeter configuration for the Azure AI Search resource provider. This triggers a manual resync with network security perimeter configurations by ensuring the search service carries the latest configuration. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}/reconcile", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, None) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.nsp_config_name = AAZStrArg( + options=["--nsp-config-name"], + help="The network security perimeter configuration name.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern="^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}\\.[a-z][a-z0-9]*$", + max_length=100, + min_length=38, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.NetworkSecurityPerimeterConfigurationsReconcile(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class NetworkSecurityPerimeterConfigurationsReconcile(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + None, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/networkSecurityPerimeterConfigurations/{nspConfigName}/reconcile", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "nspConfigName", self.ctx.args.nsp_config_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + +class _ReconcileHelper: + """Helper class for Reconcile""" + + +__all__ = ["Reconcile"] 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 new file mode 100644 index 00000000000..4c08aae0f24 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/network_security_perimeter_configuration/_show.py @@ -0,0 +1,383 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service network-security-perimeter-configuration show", +) +class Show(AAZCommand): + """Get a network security perimeter configuration. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/networksecurityperimeterconfigurations/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.nsp_config_name = AAZStrArg( + options=["-n", "--name", "--nsp-config-name"], + help="The network security perimeter configuration name.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern="^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}\\.[a-z][a-z0-9]*$", + max_length=100, + min_length=38, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.NetworkSecurityPerimeterConfigurationsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class NetworkSecurityPerimeterConfigurationsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/networkSecurityPerimeterConfigurations/{nspConfigName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "nspConfigName", self.ctx.args.nsp_config_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.network_security_perimeter = AAZObjectType( + serialized_name="networkSecurityPerimeter", + ) + _ShowHelper._build_schema_network_security_perimeter_read(properties.network_security_perimeter) + properties.profile = AAZObjectType() + properties.provisioning_issues = AAZListType( + serialized_name="provisioningIssues", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_association = AAZObjectType( + serialized_name="resourceAssociation", + ) + + profile = cls._schema_on_200.properties.profile + profile.access_rules = AAZListType( + serialized_name="accessRules", + ) + profile.access_rules_version = AAZIntType( + serialized_name="accessRulesVersion", + ) + profile.diagnostic_settings_version = AAZIntType( + serialized_name="diagnosticSettingsVersion", + ) + profile.enabled_log_categories = AAZListType( + serialized_name="enabledLogCategories", + ) + profile.name = AAZStrType() + + access_rules = cls._schema_on_200.properties.profile.access_rules + access_rules.Element = AAZObjectType() + _ShowHelper._build_schema_access_rule_read(access_rules.Element) + + enabled_log_categories = cls._schema_on_200.properties.profile.enabled_log_categories + enabled_log_categories.Element = AAZStrType() + + provisioning_issues = cls._schema_on_200.properties.provisioning_issues + provisioning_issues.Element = AAZObjectType( + flags={"read_only": True}, + ) + + _element = cls._schema_on_200.properties.provisioning_issues.Element + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties.provisioning_issues.Element.properties + properties.description = AAZStrType( + flags={"read_only": True}, + ) + properties.issue_type = AAZStrType( + serialized_name="issueType", + flags={"read_only": True}, + ) + properties.severity = AAZStrType( + flags={"read_only": True}, + ) + properties.suggested_access_rules = AAZListType( + serialized_name="suggestedAccessRules", + flags={"read_only": True}, + ) + properties.suggested_resource_ids = AAZListType( + serialized_name="suggestedResourceIds", + flags={"read_only": True}, + ) + + suggested_access_rules = cls._schema_on_200.properties.provisioning_issues.Element.properties.suggested_access_rules + suggested_access_rules.Element = AAZObjectType() + _ShowHelper._build_schema_access_rule_read(suggested_access_rules.Element) + + suggested_resource_ids = cls._schema_on_200.properties.provisioning_issues.Element.properties.suggested_resource_ids + suggested_resource_ids.Element = AAZStrType( + flags={"read_only": True}, + ) + + resource_association = cls._schema_on_200.properties.resource_association + resource_association.access_mode = AAZStrType( + serialized_name="accessMode", + ) + resource_association.name = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + _schema_access_rule_read = None + + @classmethod + def _build_schema_access_rule_read(cls, _schema): + if cls._schema_access_rule_read is not None: + _schema.name = cls._schema_access_rule_read.name + _schema.properties = cls._schema_access_rule_read.properties + return + + cls._schema_access_rule_read = _schema_access_rule_read = AAZObjectType() + + access_rule_read = _schema_access_rule_read + access_rule_read.name = AAZStrType() + access_rule_read.properties = AAZObjectType() + + properties = _schema_access_rule_read.properties + properties.address_prefixes = AAZListType( + serialized_name="addressPrefixes", + ) + properties.direction = AAZStrType() + properties.email_addresses = AAZListType( + serialized_name="emailAddresses", + ) + properties.fully_qualified_domain_names = AAZListType( + serialized_name="fullyQualifiedDomainNames", + ) + properties.network_security_perimeters = AAZListType( + serialized_name="networkSecurityPerimeters", + ) + properties.phone_numbers = AAZListType( + serialized_name="phoneNumbers", + ) + properties.subscriptions = AAZListType() + + address_prefixes = _schema_access_rule_read.properties.address_prefixes + address_prefixes.Element = AAZStrType() + + email_addresses = _schema_access_rule_read.properties.email_addresses + email_addresses.Element = AAZStrType() + + fully_qualified_domain_names = _schema_access_rule_read.properties.fully_qualified_domain_names + fully_qualified_domain_names.Element = AAZStrType() + + network_security_perimeters = _schema_access_rule_read.properties.network_security_perimeters + network_security_perimeters.Element = AAZObjectType() + cls._build_schema_network_security_perimeter_read(network_security_perimeters.Element) + + phone_numbers = _schema_access_rule_read.properties.phone_numbers + phone_numbers.Element = AAZStrType() + + subscriptions = _schema_access_rule_read.properties.subscriptions + subscriptions.Element = AAZObjectType() + + _element = _schema_access_rule_read.properties.subscriptions.Element + _element.id = AAZStrType() + + _schema.name = cls._schema_access_rule_read.name + _schema.properties = cls._schema_access_rule_read.properties + + _schema_network_security_perimeter_read = None + + @classmethod + def _build_schema_network_security_perimeter_read(cls, _schema): + if cls._schema_network_security_perimeter_read is not None: + _schema.id = cls._schema_network_security_perimeter_read.id + _schema.location = cls._schema_network_security_perimeter_read.location + _schema.perimeter_guid = cls._schema_network_security_perimeter_read.perimeter_guid + return + + cls._schema_network_security_perimeter_read = _schema_network_security_perimeter_read = AAZObjectType() + + network_security_perimeter_read = _schema_network_security_perimeter_read + network_security_perimeter_read.id = AAZStrType() + network_security_perimeter_read.location = AAZStrType() + network_security_perimeter_read.perimeter_guid = AAZStrType( + serialized_name="perimeterGuid", + ) + + _schema.id = cls._schema_network_security_perimeter_read.id + _schema.location = cls._schema_network_security_perimeter_read.location + _schema.perimeter_guid = cls._schema_network_security_perimeter_read.perimeter_guid + + +__all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__cmd_group.py new file mode 100644 index 00000000000..f0d7342b4dd --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service private-endpoint-connection", +) +class __CMDGroup(AAZCommandGroup): + """Manage Private Endpoint Connection + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__init__.py new file mode 100644 index 00000000000..b61dc1c4844 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/__init__.py @@ -0,0 +1,15 @@ +# -------------------------------------------------------------------------------------------- +# 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 ._delete import * +from ._list import * +from ._show import * +from ._update import * 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 new file mode 100644 index 00000000000..b52c726cf31 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_delete.py @@ -0,0 +1,233 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service private-endpoint-connection delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete the private endpoint connection and deletes it from the search service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.private_endpoint_connection_name = AAZStrArg( + options=["-n", "--name", "--private-endpoint-connection-name"], + help="The name of the private endpoint connection to the Azure AI Search service with the specified resource group.", + required=True, + id_part="child_name_1", + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.PrivateEndpointConnectionsDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class PrivateEndpointConnectionsDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections/{privateEndpointConnectionName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "privateEndpointConnectionName", self.ctx.args.private_endpoint_connection_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] 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 new file mode 100644 index 00000000000..843c81e30fc --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_list.py @@ -0,0 +1,235 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service private-endpoint-connection list", +) +class List(AAZCommand): + """List a list of all private endpoint connections in the given service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.PrivateEndpointConnectionsListByService(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 PrivateEndpointConnectionsListByService(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.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.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.value.Element.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.value.Element.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + 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/private_endpoint_connection/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py new file mode 100644 index 00000000000..a3a6959160f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_show.py @@ -0,0 +1,232 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service private-endpoint-connection show", +) +class Show(AAZCommand): + """Get the details of the private endpoint connection to the search service in the given resource group. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.private_endpoint_connection_name = AAZStrArg( + options=["-n", "--name", "--private-endpoint-connection-name"], + help="The name of the private endpoint connection to the Azure AI Search service with the specified resource group.", + required=True, + id_part="child_name_1", + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.PrivateEndpointConnectionsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class PrivateEndpointConnectionsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections/{privateEndpointConnectionName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "privateEndpointConnectionName", self.ctx.args.private_endpoint_connection_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = cls._schema_on_200.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = cls._schema_on_200.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py new file mode 100644 index 00000000000..5a664a2c798 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_endpoint_connection/_update.py @@ -0,0 +1,461 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service private-endpoint-connection update", +) +class Update(AAZCommand): + """Update a private endpoint connection to the search service in the given resource group. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privateendpointconnections/{}", "2025-05-01"], + ] + } + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.private_endpoint_connection_name = AAZStrArg( + options=["-n", "--name", "--private-endpoint-connection-name"], + help="The name of the private endpoint connection to the Azure AI Search service with the specified resource group.", + required=True, + id_part="child_name_1", + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.group_id = AAZStrArg( + options=["--group-id"], + arg_group="Properties", + help="The group ID of the Azure resource for which the private link service is for.", + nullable=True, + ) + _args_schema.private_endpoint = AAZObjectArg( + options=["--private-endpoint"], + arg_group="Properties", + help="The private endpoint resource from Microsoft.Network provider.", + nullable=True, + ) + _args_schema.private_link_service_connection_state = AAZObjectArg( + options=["--private-link-service-connection-state", "--connection-state"], + arg_group="Properties", + help="Describes the current state of an existing Azure Private Link service connection to the private endpoint.", + nullable=True, + ) + _args_schema.provisioning_state = AAZStrArg( + options=["--provisioning-state"], + arg_group="Properties", + help="The provisioning state of the private link service connection. Valid values are Updating, Deleting, Failed, Succeeded, Incomplete, or Canceled.", + nullable=True, + enum={"Canceled": "Canceled", "Deleting": "Deleting", "Failed": "Failed", "Incomplete": "Incomplete", "Succeeded": "Succeeded", "Updating": "Updating"}, + ) + + private_endpoint = cls._args_schema.private_endpoint + private_endpoint.id = AAZStrArg( + options=["id"], + help="The resource ID of the private endpoint resource from Microsoft.Network provider.", + nullable=True, + ) + + private_link_service_connection_state = cls._args_schema.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrArg( + options=["actions-required"], + help="A description of any extra actions that may be required.", + nullable=True, + ) + private_link_service_connection_state.description = AAZStrArg( + options=["description"], + help="The description for the private link service connection state.", + nullable=True, + ) + private_link_service_connection_state.status = AAZStrArg( + options=["status"], + help="Status of the the private link service connection. Valid values are Pending, Approved, Rejected, or Disconnected.", + nullable=True, + enum={"Approved": "Approved", "Disconnected": "Disconnected", "Pending": "Pending", "Rejected": "Rejected"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.PrivateEndpointConnectionsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + self.PrivateEndpointConnectionsUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class PrivateEndpointConnectionsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections/{privateEndpointConnectionName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "privateEndpointConnectionName", self.ctx.args.private_endpoint_connection_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_private_endpoint_connection_read(cls._schema_on_200) + + return cls._schema_on_200 + + class PrivateEndpointConnectionsUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections/{privateEndpointConnectionName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "privateEndpointConnectionName", self.ctx.args.private_endpoint_connection_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_private_endpoint_connection_read(cls._schema_on_200) + + return cls._schema_on_200 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("groupId", AAZStrType, ".group_id") + properties.set_prop("privateEndpoint", AAZObjectType, ".private_endpoint") + properties.set_prop("privateLinkServiceConnectionState", AAZObjectType, ".private_link_service_connection_state") + properties.set_prop("provisioningState", AAZStrType, ".provisioning_state") + + private_endpoint = _builder.get(".properties.privateEndpoint") + if private_endpoint is not None: + private_endpoint.set_prop("id", AAZStrType, ".id") + + private_link_service_connection_state = _builder.get(".properties.privateLinkServiceConnectionState") + if private_link_service_connection_state is not None: + private_link_service_connection_state.set_prop("actionsRequired", AAZStrType, ".actions_required") + private_link_service_connection_state.set_prop("description", AAZStrType, ".description") + private_link_service_connection_state.set_prop("status", AAZStrType, ".status") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_private_endpoint_connection_read = None + + @classmethod + def _build_schema_private_endpoint_connection_read(cls, _schema): + if cls._schema_private_endpoint_connection_read is not None: + _schema.id = cls._schema_private_endpoint_connection_read.id + _schema.name = cls._schema_private_endpoint_connection_read.name + _schema.properties = cls._schema_private_endpoint_connection_read.properties + _schema.system_data = cls._schema_private_endpoint_connection_read.system_data + _schema.type = cls._schema_private_endpoint_connection_read.type + return + + cls._schema_private_endpoint_connection_read = _schema_private_endpoint_connection_read = AAZObjectType() + + private_endpoint_connection_read = _schema_private_endpoint_connection_read + private_endpoint_connection_read.id = AAZStrType( + flags={"read_only": True}, + ) + private_endpoint_connection_read.name = AAZStrType( + flags={"read_only": True}, + ) + private_endpoint_connection_read.properties = AAZObjectType() + private_endpoint_connection_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + private_endpoint_connection_read.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_private_endpoint_connection_read.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_endpoint = AAZObjectType( + serialized_name="privateEndpoint", + ) + properties.private_link_service_connection_state = AAZObjectType( + serialized_name="privateLinkServiceConnectionState", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + private_endpoint = _schema_private_endpoint_connection_read.properties.private_endpoint + private_endpoint.id = AAZStrType() + + private_link_service_connection_state = _schema_private_endpoint_connection_read.properties.private_link_service_connection_state + private_link_service_connection_state.actions_required = AAZStrType( + serialized_name="actionsRequired", + ) + private_link_service_connection_state.description = AAZStrType() + private_link_service_connection_state.status = AAZStrType() + + system_data = _schema_private_endpoint_connection_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_private_endpoint_connection_read.id + _schema.name = cls._schema_private_endpoint_connection_read.name + _schema.properties = cls._schema_private_endpoint_connection_read.properties + _schema.system_data = cls._schema_private_endpoint_connection_read.system_data + _schema.type = cls._schema_private_endpoint_connection_read.type + + +__all__ = ["Update"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__cmd_group.py new file mode 100644 index 00000000000..b4415fd0803 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service private-link-resource", +) +class __CMDGroup(AAZCommandGroup): + """Manage Private Link Resource + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__init__.py new file mode 100644 index 00000000000..d63ae5a6fc9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/__init__.py @@ -0,0 +1,12 @@ +# -------------------------------------------------------------------------------------------- +# 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/service/private_link_resource/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py new file mode 100644 index 00000000000..6c4125b0148 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/private_link_resource/_list.py @@ -0,0 +1,254 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service private-link-resource list", +) +class List(AAZCommand): + """List a list of all supported private link resource types for the given service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/privatelinkresources", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.PrivateLinkResourcesListSupported(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) + return result + + class PrivateLinkResourcesListSupported(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateLinkResources", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.value = AAZListType( + flags={"read_only": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"read_only": True}, + ) + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + flags={"read_only": True}, + ) + properties.required_members = AAZListType( + serialized_name="requiredMembers", + flags={"read_only": True}, + ) + properties.required_zone_names = AAZListType( + serialized_name="requiredZoneNames", + flags={"read_only": True}, + ) + properties.shareable_private_link_resource_types = AAZListType( + serialized_name="shareablePrivateLinkResourceTypes", + flags={"read_only": True}, + ) + + required_members = cls._schema_on_200.value.Element.properties.required_members + required_members.Element = AAZStrType() + + required_zone_names = cls._schema_on_200.value.Element.properties.required_zone_names + required_zone_names.Element = AAZStrType() + + shareable_private_link_resource_types = cls._schema_on_200.value.Element.properties.shareable_private_link_resource_types + shareable_private_link_resource_types.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.shareable_private_link_resource_types.Element + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties.shareable_private_link_resource_types.Element.properties + properties.description = AAZStrType( + flags={"read_only": True}, + ) + properties.group_id = AAZStrType( + serialized_name="groupId", + flags={"read_only": True}, + ) + properties.type = AAZStrType( + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + 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/query_key/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/__cmd_group.py new file mode 100644 index 00000000000..cb2e10cb4b1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service query-key", +) +class __CMDGroup(AAZCommandGroup): + """Manage Create Query Key + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/__init__.py new file mode 100644 index 00000000000..7fccbe55080 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/__init__.py @@ -0,0 +1,14 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._list import * 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 new file mode 100644 index 00000000000..07423094751 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_create.py @@ -0,0 +1,178 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service query-key create", +) +class Create(AAZCommand): + """Create a new query key for the specified search service. You can create up to 50 query keys per service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/createquerykey/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="The name of the new query API key.", + required=True, + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.QueryKeysCreate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class QueryKeysCreate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/createQueryKey/{name}", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "name", self.ctx.args.name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.key = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + + return cls._schema_on_200 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] 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 new file mode 100644 index 00000000000..d4be5bb9b7f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_delete.py @@ -0,0 +1,149 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service query-key delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete the specified query key. Unlike admin keys, query keys are not regenerated. The process for regenerating a query key is to delete and then recreate it. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/deletequerykey/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return None + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.name = AAZStrArg( + options=["-n", "--key", "--name"], + help="The query key to be deleted. Query keys are identified by value, not by name.", + required=True, + id_part="child_name_1", + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.QueryKeysDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class QueryKeysDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + if session.http_response.status_code in [204]: + return self.on_204(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/deleteQueryKey/{key}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "key", self.ctx.args.name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + def on_200(self, session): + pass + + def on_204(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py new file mode 100644 index 00000000000..9e36fb491e3 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/query_key/_list.py @@ -0,0 +1,183 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service query-key list", +) +class List(AAZCommand): + """Returns the list of query API keys for the given Azure AI Search service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/listquerykeys", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.QueryKeysListBySearchService(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 QueryKeysListBySearchService(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/listQueryKeys", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.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.key = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + + 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/shared_private_link_resource/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/__cmd_group.py new file mode 100644 index 00000000000..14e9f6264e1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search service shared-private-link-resource", +) +class __CMDGroup(AAZCommandGroup): + """Manage Shared Private Link Resource + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/__init__.py new file mode 100644 index 00000000000..db73033039b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/__init__.py @@ -0,0 +1,17 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._list import * +from ._show import * +from ._update import * +from ._wait import * diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/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 new file mode 100644 index 00000000000..405cdf26d12 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_create.py @@ -0,0 +1,300 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource create", +) +class Create(AAZCommand): + """Create the creation or update of a shared private link resource managed by the search service in the given resource group. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + _args_schema.shared_private_link_resource_name = AAZStrArg( + options=["-n", "--name", "--shared-private-link-resource-name"], + help="The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.", + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.group_id = AAZStrArg( + options=["--group-id"], + arg_group="Properties", + help="The group ID from the provider of resource the shared private link resource is for.", + ) + _args_schema.private_link_resource_id = AAZStrArg( + options=["--private-link-resource-id", "--resource-id"], + arg_group="Properties", + help="The resource ID of the resource the shared private link resource is for.", + ) + _args_schema.provisioning_state = AAZStrArg( + options=["--provisioning-state"], + arg_group="Properties", + help="The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.", + enum={"Deleting": "Deleting", "Failed": "Failed", "Incomplete": "Incomplete", "Succeeded": "Succeeded", "Updating": "Updating"}, + ) + _args_schema.request_message = AAZStrArg( + options=["--request-message"], + arg_group="Properties", + help="The message for requesting approval of the shared private link resource.", + ) + _args_schema.resource_region = AAZStrArg( + options=["--resource-region"], + arg_group="Properties", + help="Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).", + ) + _args_schema.status = AAZStrArg( + options=["--status"], + arg_group="Properties", + help="Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.", + enum={"Approved": "Approved", "Disconnected": "Disconnected", "Pending": "Pending", "Rejected": "Rejected"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.SharedPrivateLinkResourcesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SharedPrivateLinkResourcesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("properties", AAZObjectType) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("groupId", AAZStrType, ".group_id") + properties.set_prop("privateLinkResourceId", AAZStrType, ".private_link_resource_id") + properties.set_prop("provisioningState", AAZStrType, ".provisioning_state") + properties.set_prop("requestMessage", AAZStrType, ".request_message") + properties.set_prop("resourceRegion", AAZStrType, ".resource_region") + properties.set_prop("status", AAZStrType, ".status") + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] 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 new file mode 100644 index 00000000000..8848fe8e516 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_delete.py @@ -0,0 +1,173 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete the deletion of the shared private link resource from the search service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, None) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + _args_schema.shared_private_link_resource_name = AAZStrArg( + options=["-n", "--name", "--shared-private-link-resource-name"], + help="The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.", + required=True, + id_part="child_name_1", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.SharedPrivateLinkResourcesDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class SharedPrivateLinkResourcesDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [204]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_204, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + def on_204(self, session): + pass + + def on_200_201(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/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 new file mode 100644 index 00000000000..f9afec5dd3e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_list.py @@ -0,0 +1,228 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource list", +) +class List(AAZCommand): + """List a list of all shared private link resources managed by the given service. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SharedPrivateLinkResourcesListByService(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 SharedPrivateLinkResourcesListByService(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _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.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + 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/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 new file mode 100644 index 00000000000..24efb5bb41a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_show.py @@ -0,0 +1,226 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource show", +) +class Show(AAZCommand): + """Get the details of the shared private link resource managed by the search service in the given resource group. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + _args_schema.shared_private_link_resource_name = AAZStrArg( + options=["-n", "--name", "--shared-private-link-resource-name"], + help="The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.", + required=True, + id_part="child_name_1", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SharedPrivateLinkResourcesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SharedPrivateLinkResourcesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/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 new file mode 100644 index 00000000000..1eaccafceee --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_update.py @@ -0,0 +1,452 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource update", +) +class Update(AAZCommand): + """Update the creation or update of a shared private link resource managed by the search service in the given resource group. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + _args_schema.shared_private_link_resource_name = AAZStrArg( + options=["-n", "--name", "--shared-private-link-resource-name"], + help="The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.", + required=True, + id_part="child_name_1", + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.group_id = AAZStrArg( + options=["--group-id"], + arg_group="Properties", + help="The group ID from the provider of resource the shared private link resource is for.", + nullable=True, + ) + _args_schema.private_link_resource_id = AAZStrArg( + options=["--private-link-resource-id", "--resource-id"], + arg_group="Properties", + help="The resource ID of the resource the shared private link resource is for.", + nullable=True, + ) + _args_schema.provisioning_state = AAZStrArg( + options=["--provisioning-state"], + arg_group="Properties", + help="The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.", + nullable=True, + enum={"Deleting": "Deleting", "Failed": "Failed", "Incomplete": "Incomplete", "Succeeded": "Succeeded", "Updating": "Updating"}, + ) + _args_schema.request_message = AAZStrArg( + options=["--request-message"], + arg_group="Properties", + help="The message for requesting approval of the shared private link resource.", + nullable=True, + ) + _args_schema.resource_region = AAZStrArg( + options=["--resource-region"], + arg_group="Properties", + help="Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).", + nullable=True, + ) + _args_schema.status = AAZStrArg( + options=["--status"], + arg_group="Properties", + help="Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.", + nullable=True, + enum={"Approved": "Approved", "Disconnected": "Disconnected", "Pending": "Pending", "Rejected": "Rejected"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SharedPrivateLinkResourcesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.SharedPrivateLinkResourcesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SharedPrivateLinkResourcesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_shared_private_link_resource_read(cls._schema_on_200) + + return cls._schema_on_200 + + class SharedPrivateLinkResourcesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_shared_private_link_resource_read(cls._schema_on_200) + + return cls._schema_on_200 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("groupId", AAZStrType, ".group_id") + properties.set_prop("privateLinkResourceId", AAZStrType, ".private_link_resource_id") + properties.set_prop("provisioningState", AAZStrType, ".provisioning_state") + properties.set_prop("requestMessage", AAZStrType, ".request_message") + properties.set_prop("resourceRegion", AAZStrType, ".resource_region") + properties.set_prop("status", AAZStrType, ".status") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_shared_private_link_resource_read = None + + @classmethod + def _build_schema_shared_private_link_resource_read(cls, _schema): + if cls._schema_shared_private_link_resource_read is not None: + _schema.id = cls._schema_shared_private_link_resource_read.id + _schema.name = cls._schema_shared_private_link_resource_read.name + _schema.properties = cls._schema_shared_private_link_resource_read.properties + _schema.system_data = cls._schema_shared_private_link_resource_read.system_data + _schema.type = cls._schema_shared_private_link_resource_read.type + return + + cls._schema_shared_private_link_resource_read = _schema_shared_private_link_resource_read = AAZObjectType() + + shared_private_link_resource_read = _schema_shared_private_link_resource_read + shared_private_link_resource_read.id = AAZStrType( + flags={"read_only": True}, + ) + shared_private_link_resource_read.name = AAZStrType( + flags={"read_only": True}, + ) + shared_private_link_resource_read.properties = AAZObjectType() + shared_private_link_resource_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + shared_private_link_resource_read.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_shared_private_link_resource_read.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + system_data = _schema_shared_private_link_resource_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_shared_private_link_resource_read.id + _schema.name = cls._schema_shared_private_link_resource_read.name + _schema.properties = cls._schema_shared_private_link_resource_read.properties + _schema.system_data = cls._schema_shared_private_link_resource_read.system_data + _schema.type = cls._schema_shared_private_link_resource_read.type + + +__all__ = ["Update"] 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 new file mode 100644 index 00000000000..a92da21cab0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/service/shared_private_link_resource/_wait.py @@ -0,0 +1,225 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "search service shared-private-link-resource wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.search/searchservices/{}/sharedprivatelinkresources/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.search_service_name = AAZStrArg( + options=["--search-service-name"], + help="The name of the Azure AI Search service associated with the specified resource group.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^(?=.{2,60}$)[a-z0-9][a-z0-9]+(-[a-z0-9]+)*$", + ), + ) + _args_schema.shared_private_link_resource_name = AAZStrArg( + options=["-n", "--name", "--shared-private-link-resource-name"], + help="The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.", + required=True, + id_part="child_name_1", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SharedPrivateLinkResourcesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class SharedPrivateLinkResourcesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "searchServiceName", self.ctx.args.search_service_name, + required=True, + ), + **self.serialize_url_param( + "sharedPrivateLinkResourceName", self.ctx.args.shared_private_link_resource_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.group_id = AAZStrType( + serialized_name="groupId", + ) + properties.private_link_resource_id = AAZStrType( + serialized_name="privateLinkResourceId", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + properties.request_message = AAZStrType( + serialized_name="requestMessage", + ) + properties.resource_region = AAZStrType( + serialized_name="resourceRegion", + ) + properties.status = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + +__all__ = ["Wait"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__cmd_group.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__cmd_group.py new file mode 100644 index 00000000000..27cfaedc065 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "search usage", +) +class __CMDGroup(AAZCommandGroup): + """Manage Usage + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__init__.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__init__.py new file mode 100644 index 00000000000..2df85698253 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/__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 * +from ._show import * 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 new file mode 100644 index 00000000000..c6f57deef72 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_list.py @@ -0,0 +1,180 @@ +# -------------------------------------------------------------------------------------------- +# 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 usage list", +) +class List(AAZCommand): + """List a list of all Azure AI Search quota usages across the subscription. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages", "2025-05-01"], + ] + } + + 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) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.UsagesListBySubscription(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 UsagesListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.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.current_value = AAZIntType( + serialized_name="currentValue", + ) + _element.id = AAZStrType() + _element.limit = AAZIntType() + _element.name = AAZObjectType( + flags={"read_only": True}, + ) + _element.unit = AAZStrType() + + name = cls._schema_on_200.value.Element.name + name.localized_value = AAZStrType( + serialized_name="localizedValue", + ) + name.value = 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/usage/_show.py b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py new file mode 100644 index 00000000000..0cfdf642680 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/aaz/latest/search/usage/_show.py @@ -0,0 +1,177 @@ +# -------------------------------------------------------------------------------------------- +# 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 usage show", +) +class Show(AAZCommand): + """Get the quota usage for a search SKU in the given subscription. + """ + + _aaz_info = { + "version": "2025-05-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.search/locations/{}/usages/{}", "2025-05-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + _args_schema.sku_name = AAZStrArg( + options=["-n", "--name", "--sku-name"], + help="The unique SKU name that identifies a billable tier.", + required=True, + id_part="child_name_1", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.UsageBySubscriptionSku(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class UsageBySubscriptionSku(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Microsoft.Search/locations/{location}/usages/{skuName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "ODataV4Format" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "skuName", self.ctx.args.sku_name, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-05-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.current_value = AAZIntType( + serialized_name="currentValue", + ) + _schema_on_200.id = AAZStrType() + _schema_on_200.limit = AAZIntType() + _schema_on_200.name = AAZObjectType( + flags={"read_only": True}, + ) + _schema_on_200.unit = AAZStrType() + + name = cls._schema_on_200.name + name.localized_value = AAZStrType( + serialized_name="localizedValue", + ) + name.value = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/azure-cli/azure/cli/command_modules/search/custom.py b/src/azure-cli/azure/cli/command_modules/search/custom.py index 4b279328e55..f6a3f9e18d9 100644 --- a/src/azure-cli/azure/cli/command_modules/search/custom.py +++ b/src/azure-cli/azure/cli/command_modules/search/custom.py @@ -26,19 +26,26 @@ class SearchServiceCreate(_SearchServiceCreate): def _build_arguments_schema(cls, *args, **kwargs): from azure.cli.core.aaz import AAZStrArg args_schema = super()._build_arguments_schema(*args, **kwargs) + args_schema.ip_rules = AAZStrArg( - arg_group="Properties", + arg_group="NetworkRuleSet", options=['--ip-rules'], - help="Some help" + help="A list of IP defineing the inbound network(s) allowed to access to the search service endpoint.", ) + args_schema.auth_options = AAZStrArg( arg_group="Properties", options=['--auth-options'], help="Some Help", enum=["aadOrApiKey", "apiKeyOnly"], ) + args_schema.ip_rules_internal._registered = False args_schema.api_key_only._registered = False + + args_schema.upgrade_available._registered = False + args_schema.endpoint._registered = False + return args_schema def pre_operations(self): @@ -81,20 +88,21 @@ def _build_arguments_schema(cls, *args, **kwargs): from azure.cli.core.aaz import AAZStrArg args_schema = super()._build_arguments_schema(*args, **kwargs) args_schema.ip_rules = AAZStrArg( - arg_group="Properties", + arg_group="NetworkRuleSet", options=['--ip-rules'], - help="Some help", + help="A list of IP defineing the inbound network(s) allowed to access to the search service endpoint.", nullable=True, # allow to remove all the value when it's assigned by null ) + args_schema.auth_options = AAZStrArg( arg_group="Properties", options=['--auth-options'], help="Some Help", enum=["aadOrApiKey", "apiKeyOnly"], ) - args_schema.ip_rules_internal._registered = False args_schema.api_key_only._registered = False + return args_schema def pre_operations(self): @@ -102,6 +110,14 @@ def pre_operations(self): import re args = self.ctx.args + if has_value(args.disable_local_auth) and args.disable_local_auth.to_serialized_data() is True: + if has_value(args.auth_options): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AuthOptions parameters " + "can't be given at the same time") + if has_value(args.aad_auth_failure_mode): + raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AadAuthFailureMode parameters " + "can't be given at the same time") + if has_value(args.ip_rules): if args.ip_rules.to_serialized_data() is None or args.ip_rules in [';', ',']: # cleanup all ip_rules @@ -110,13 +126,6 @@ def pre_operations(self): ip_rules = re.split(';|,', args.ip_rules.to_serialized_data()) args.ip_rules_internal = [{"value": ip_rule} for ip_rule in ip_rules] - if has_value(args.disable_local_auth) and args.disable_local_auth.to_serialized_data() is True: - if has_value(args.auth_options): - raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AuthOptions parameters " - "can't be given at the same time") - if has_value(args.aad_auth_failure_mode): - raise MutuallyExclusiveArgumentError("Both the DisableLocalAuth and AadAuthFailureMode parameters " - "can't be given at the same time") if has_value(args.auth_options): if args.auth_options == "apiKeyOnly": if has_value(args.aad_auth_failure_mode): diff --git a/src/azure-cli/azure/cli/command_modules/search/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/search/linter_exclusions.yml new file mode 100644 index 00000000000..cc03c7d90f8 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/linter_exclusions.yml @@ -0,0 +1,24 @@ +search service admin-key regenerate: + rule_exclusions: + - missing_command_example +search service check-name-availability: + rule_exclusions: + - missing_command_example +search service network-security-perimeter-configuration reconcile: + rule_exclusions: + - missing_command_example +search service private-endpoint-connection update: + rule_exclusions: + - missing_command_example +search service query-key create: + rule_exclusions: + - missing_command_example +search service shared-private-link-resource create: + rule_exclusions: + - missing_command_example +search service shared-private-link-resource update: + rule_exclusions: + - missing_command_example +search service upgrade: + rule_exclusions: + - missing_command_example \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recording_processors.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recording_processors.py new file mode 100644 index 00000000000..5d97cc2d00e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recording_processors.py @@ -0,0 +1,69 @@ +# -------------------------------------------------------------------------------------------- +# 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.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests.utilities import is_text_payload + +MOCK_GUID = '00000000-0000-0000-0000-000000000001' +MOCK_SECRET = 'fake-secret' + + +class KeyReplacer(RecordingProcessor): + + def process_request(self, request): + if is_text_payload(request) and isinstance(request.body, bytes): + request.body = self._replace_byte_keys(request.body) + elif is_text_payload(request) and isinstance(request.body, str): + request.body = self._replace_string_keys(request.body) + return request + + def process_response(self, response): + if is_text_payload(response) and response['body']['string']: + response['body']['string'] = self._replace_string_keys(response['body']['string']) + return response + + # pylint: disable=no-self-use + def _replace_string_keys(self, val): + import re + if 'primaryKey' in val: + val = re.sub(r'"primaryKey":( ?)"([^"]+)"', r'"primaryKey":"{}"' + .format(MOCK_SECRET), val, flags=re.IGNORECASE) + if 'secondaryKey' in val: + val = re.sub(r'"secondaryKey":( ?)"([^"]+)"', r'"secondaryKey":"{}"' + .format(MOCK_SECRET), val, flags=re.IGNORECASE) + if 'clientId' in val: + val = re.sub(r'"clientId":( ?)"([^"]+)"', r'"clientId":"{}"' + .format(MOCK_GUID), val, flags=re.IGNORECASE) + if 'objectId' in val: + val = re.sub(r'"objectId":( ?)"([^"]+)"', r'"objectId":"{}"' + .format(MOCK_GUID), val, flags=re.IGNORECASE) + if 'principalId' in val: + val = re.sub(r'"principalId":( ?)"([^"]+)"', r'"principalId":"{}"' + .format(MOCK_GUID), val, flags=re.IGNORECASE) + if 'key' in val: + val = re.sub(r'"key":( ?)"([^"]+)"', r'"key":"{}"' + .format(MOCK_SECRET), val, flags=re.IGNORECASE) + return val + + # pylint: disable=no-self-use + def _replace_byte_keys(self, val): + import re + if b'secret' in val: + val = re.sub(b'"secret":( ?)"([^"]+)"', + ('"secret":"{}"'.format(MOCK_SECRET)).encode('utf-8'), + val, flags=re.IGNORECASE) + if b'clientId' in val: + val = re.sub(b'"clientId":( ?)"([^"]+)"', + ('"clientId":"{}"'.format(MOCK_GUID)).encode('utf-8'), + val, flags=re.IGNORECASE) + if b'objectId' in val: + val = re.sub(b'"objectId":( ?)"([^"]+)"', + ('"objectId":"{}"'.format(MOCK_GUID)).encode('utf-8'), + val, flags=re.IGNORECASE) + if b'principalId' in val: + val = re.sub(b'"principalId":( ?)"([^"]+)"', + ('"principalId":"{}"'.format(MOCK_GUID)).encode('utf-8'), + val, flags=re.IGNORECASE) + return val \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml index 2bd72c156d8..99b5f681203 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_admin_key_show_renew.yaml @@ -176,7 +176,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/primary?api-version=2024-11-01 response: body: - string: '{"primaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz","secondaryKey":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}' + string: '{"primaryKey":"{}","secondaryKey":"{}"}' headers: cache-control: - no-cache @@ -228,7 +228,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2024-11-01 response: body: - string: '{"primaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz","secondaryKey":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}' + string: '{"primaryKey":"{}","secondaryKey":"{}"}' headers: cache-control: - no-cache @@ -280,7 +280,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/regenerateAdminKey/secondary?api-version=2024-11-01 response: body: - string: '{"primaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz","secondaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"}' + string: '{"primaryKey":"{}","secondaryKey":"{}"}' headers: cache-control: - no-cache @@ -332,7 +332,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listAdminKeys?api-version=2024-11-01 response: body: - string: '{"primaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz","secondaryKey":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"}' + string: '{"primaryKey":"{}","secondaryKey":"{}"}' headers: cache-control: - no-cache diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml index 79d776f3496..8b54379e76b 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_list_private_link_resources.yaml @@ -11,14 +11,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_list_private_link_resources","date":"2025-05-16T07:42:27Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_list_private_link_resources","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:42:32 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6F9FFF7C188348F0948FF078FFE11029 Ref B: TYO201151001031 Ref C: 2025-05-16T07:42:32Z' + - 'Ref A: D04DBD56F1074606AB00EDDA1060ADDB Ref B: CO6AA3150217011 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -62,33 +62,33 @@ interactions: Content-Type: - application/json ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:42:45 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '6827' + - '7702' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8fb121af-0993-4c90-9276-3126f4199bc3 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/600eaa64-0e30-42f0-94ce-eccb09ab0ead x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: B661847EDFD14E759A8770F441C113C2 Ref B: TYO201100113051 Ref C: 2025-05-16T07:42:35Z' + - 'Ref A: B9259FF275D84D509757C9F32EEA2B7D Ref B: MWH011020806025 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -118,667 +118,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:42:46 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 72925F93FD034C92936583DEDC49886B Ref B: TYO201100113051 Ref C: 2025-05-16T07:42: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:43:17 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ED6E3A4160B4473695449FF4E29BE5A3 Ref B: TYO201100113051 Ref C: 2025-05-16T07:43: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:43:48 GMT - elapsed-time: - - '93' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD562F71040648AAA032DA7A6237D255 Ref B: TYO201100113051 Ref C: 2025-05-16T07:43:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:44:19 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 122474F8E78146EDA0BFC61F768519DA Ref B: TYO201100113051 Ref C: 2025-05-16T07:44:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:44:50 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D34C47EA8C464EFD9A112F7C1F6ED940 Ref B: TYO201100113051 Ref C: 2025-05-16T07:44:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:45:21 GMT - elapsed-time: - - '302' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 158758D1F54C4EF7BFCAD4983EF6039F Ref B: TYO201100113051 Ref C: 2025-05-16T07:45:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:45:53 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 569AEEFB38904B0F9595C773F37A38A4 Ref B: TYO201100113051 Ref C: 2025-05-16T07:45:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:46:24 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EB11EA78F86942B3AF92C3D569A2B624 Ref B: TYO201100113051 Ref C: 2025-05-16T07:46:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:46:55 GMT - elapsed-time: - - '96' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D85DA7DD40F84BECA59D76ACCF03732D Ref B: TYO201100113051 Ref C: 2025-05-16T07:46:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:47:26 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 288794D0B4EF4A4CB4A9A7B7BFD24415 Ref B: TYO201100113051 Ref C: 2025-05-16T07:47:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:47:57 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DEA3EF53BDE04D0FA7C083395F1E5E57 Ref B: TYO201100113051 Ref C: 2025-05-16T07:47:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:48:29 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - '68' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3CAB63B061A04247A4DEFA7D05A80922 Ref B: TYO201100113051 Ref C: 2025-05-16T07:48:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:49:00 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: AFBBC67214484D969D3ABC5A9AF13BFA Ref B: TYO201100113051 Ref C: 2025-05-16T07:49:00Z' + - 'Ref A: 7F71C412C97A4B4994583064039B6FA3 Ref B: MWH011020807029 Ref C: 2025-09-12T01:19:02Z' status: code: 200 message: OK @@ -794,33 +170,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:49:31 GMT + - Fri, 12 Sep 2025 01:19:32 GMT elapsed-time: - - '69' + - '64' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -828,9 +204,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C2A37C3828CB43E3BD37557152FABDE2 Ref B: TYO201100113051 Ref C: 2025-05-16T07:49:31Z' + - 'Ref A: 1219E21AF67D40628AAD0C54018C684D Ref B: CO6AA3150220019 Ref C: 2025-09-12T01:19:33Z' status: code: 200 message: OK @@ -846,43 +222,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:50:02 GMT + - Fri, 12 Sep 2025 01:20:03 GMT elapsed-time: - - '141' + - '85' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F2F73305EE05418487A6B246FC153DAA Ref B: TYO201100113051 Ref C: 2025-05-16T07:50:02Z' + - 'Ref A: F317E0D0FB0841A5BEE3C0CA1C510BF9 Ref B: MWH011020808029 Ref C: 2025-09-12T01:20:03Z' status: code: 200 message: OK @@ -898,43 +274,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:50:33 GMT + - Fri, 12 Sep 2025 01:20:34 GMT elapsed-time: - - '79' + - '66' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F1ACA101D3244BE4935324872D498C6D Ref B: TYO201100113051 Ref C: 2025-05-16T07:50:33Z' + - 'Ref A: B03F7B36B8754969BCA4B3B9C0E5C907 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:20:34Z' status: code: 200 message: OK @@ -950,33 +326,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:51:04 GMT + - Fri, 12 Sep 2025 01:21:04 GMT elapsed-time: - - '69' + - '59' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -984,9 +360,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F1293410E3EE4C1CBE212A5B8AC2DA09 Ref B: TYO201100113051 Ref C: 2025-05-16T07:51:04Z' + - 'Ref A: BB46503D26DB4481AD7019C73829EF2C Ref B: MWH011020808060 Ref C: 2025-09-12T01:21:04Z' status: code: 200 message: OK @@ -1002,33 +378,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:51:36 GMT + - Fri, 12 Sep 2025 01:21:34 GMT elapsed-time: - - '140' + - '60' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1036,9 +412,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 6791E88303BB4341BE0BD37217CEC0B0 Ref B: TYO201100113051 Ref C: 2025-05-16T07:51:35Z' + - 'Ref A: 12A03527A2264731927411A959A39C8D Ref B: CO6AA3150219019 Ref C: 2025-09-12T01:21:34Z' status: code: 200 message: OK @@ -1054,33 +430,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:52:07 GMT + - Fri, 12 Sep 2025 01:22:05 GMT elapsed-time: - - '111' + - '66' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1088,9 +464,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 976D4E9F0821402092CB7E8431B6BBEB Ref B: TYO201100113051 Ref C: 2025-05-16T07:52:07Z' + - 'Ref A: C03BDAB36505495BA200CCB9340AAC8C Ref B: CO6AA3150220011 Ref C: 2025-09-12T01:22:05Z' status: code: 200 message: OK @@ -1106,95 +482,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:52:38 GMT + - Fri, 12 Sep 2025 01:22:35 GMT elapsed-time: - '80' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BE86C2F210444B7688D452B2E886062E Ref B: TYO201100113051 Ref C: 2025-05-16T07:52: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:53:09 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 52778E08C77E4867B1D1A4DD197DBFDB Ref B: TYO201100113051 Ref C: 2025-05-16T07:53:09Z' + - 'Ref A: 85AEB90D3CFE433AAA377B6D31C4604E Ref B: MWH011020807040 Ref C: 2025-09-12T01:22:35Z' status: code: 200 message: OK @@ -1210,43 +534,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:53:41 GMT + - Fri, 12 Sep 2025 01:23:05 GMT elapsed-time: - - '98' + - '59' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 5B99EC30FD394BA487CF4F5C199484D1 Ref B: TYO201100113051 Ref C: 2025-05-16T07:53:41Z' + - 'Ref A: 2C78B26D9B714AFEAA48654F8127ABE9 Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:23:06Z' status: code: 200 message: OK @@ -1262,33 +586,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:54:12 GMT + - Fri, 12 Sep 2025 01:23:36 GMT elapsed-time: - - '79' + - '64' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1296,9 +620,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A4DB7E3DB0A84030A378AB5387008CA4 Ref B: TYO201100113051 Ref C: 2025-05-16T07:54:12Z' + - 'Ref A: 12854799274B4CC09DC4BF9C588196AD Ref B: CO6AA3150217049 Ref C: 2025-09-12T01:23:36Z' status: code: 200 message: OK @@ -1314,33 +638,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:54:43 GMT + - Fri, 12 Sep 2025 01:24:07 GMT elapsed-time: - - '69' + - '70' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1348,9 +672,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 80A79CD43E7B45D4B0D4CA434D0F1477 Ref B: TYO201100113051 Ref C: 2025-05-16T07:54:43Z' + - 'Ref A: BE84F3FCFAA14F7F97DF8274079FC227 Ref B: MWH011020806062 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK @@ -1366,33 +690,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:55:14 GMT + - Fri, 12 Sep 2025 01:24:37 GMT elapsed-time: - - '64' + - '62' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1400,9 +724,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 126E054C16444E0594714BAF496BFC28 Ref B: TYO201100113051 Ref C: 2025-05-16T07:55:14Z' + - 'Ref A: 9DFCAD88A3134F49897FB0C395AF633F Ref B: CO6AA3150220053 Ref C: 2025-09-12T01:24:37Z' status: code: 200 message: OK @@ -1418,95 +742,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:55:46 GMT + - Fri, 12 Sep 2025 01:25:07 GMT elapsed-time: - '63' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B0215D3A2C9543098586E076612D26F0 Ref B: TYO201100113051 Ref C: 2025-05-16T07: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:56:17 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C40EE7AF91F24A7AAB0340E86AC4A53A Ref B: TYO201100113051 Ref C: 2025-05-16T07:56:17Z' + - 'Ref A: 8395B5E8A16D480086D98E3EA11F9869 Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:25:08Z' status: code: 200 message: OK @@ -1522,43 +794,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:56:48 GMT + - Fri, 12 Sep 2025 01:25:37 GMT elapsed-time: - - '69' + - '110' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 71C702CD3F914D47B3D4CB443DD48F81 Ref B: TYO201100113051 Ref C: 2025-05-16T07:56:48Z' + - 'Ref A: 15FDD92E833143D9ACFC9D8BF274E6E7 Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:25:38Z' status: code: 200 message: OK @@ -1574,95 +846,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:57:19 GMT + - Fri, 12 Sep 2025 01:26:08 GMT elapsed-time: - '63' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CC92BFA90C6742E5BBFB3F54453A80E5 Ref B: TYO201100113051 Ref C: 2025-05-16T07:57:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:57:51 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 3CA060700AC749319D68C6D88979FBCB Ref B: TYO201100113051 Ref C: 2025-05-16T07:57:51Z' + - 'Ref A: 6759CA434E334FD894F3BA304337BCFD Ref B: CO6AA3150220035 Ref C: 2025-09-12T01:26:08Z' status: code: 200 message: OK @@ -1678,33 +898,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:58:23 GMT + - Fri, 12 Sep 2025 01:26:39 GMT elapsed-time: - '65' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1712,9 +932,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9897534AB6CF4B54B7B57F78A762628D Ref B: TYO201100113051 Ref C: 2025-05-16T07:58:22Z' + - 'Ref A: F8707E1043B042929D98FE3DB0B3F907 Ref B: MWH011020806036 Ref C: 2025-09-12T01:26:39Z' status: code: 200 message: OK @@ -1730,33 +950,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:58:54 GMT + - Fri, 12 Sep 2025 01:27:09 GMT elapsed-time: - - '69' + - '88' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1764,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1D07FC7405DA479D8CC2098934045326 Ref B: TYO201100113051 Ref C: 2025-05-16T07:58:53Z' + - 'Ref A: 2A7C41067AA8486F9DBDBB9B1FF41E91 Ref B: MWH011020809034 Ref C: 2025-09-12T01:27:09Z' status: code: 200 message: OK @@ -1782,33 +1002,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.575Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '740' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:59:25 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '58' + - '66' etag: - - W/"datetime'2025-05-16T07%3A42%3A45.1075008Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.5782111Z'" expires: - '-1' pragma: - no-cache request-id: - - 525620e3-3229-11f0-ad49-644ed7a2823f + - 722f421f-8f76-11f0-8df0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1816,9 +1036,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 509FF74C0EB64D4D991F7468E4A7F550 Ref B: TYO201100113051 Ref C: 2025-05-16T07:59:24Z' + - 'Ref A: 7111085A34BA466B8693FE0A9A144178 Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK @@ -1836,7 +1056,7 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateLinkResources?api-version=2022-09-01 response: @@ -1868,15 +1088,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:59:27 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '50' + - '90' expires: - '-1' pragma: - no-cache request-id: - - af31cd32-322b-11f0-99e5-644ed7a2823f + - 601ae126-8f79-11f0-8ecd-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1884,11 +1104,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/f7b25354-e3ab-44b7-8efa-14e2b7f58fd8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/e4adb896-bb79-4f2f-92c0-c17f6a893d5c + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E26323326AC841ED8BBC8447B0B2C02B Ref B: TYO01EDGE2620 Ref C: 2025-05-16T07:59:27Z' + - 'Ref A: 76D6FD9516444EF492B0E5DAF1615859 Ref B: CO6AA3150220027 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml index ae315956b02..4930b7a4fb6 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_private_endpoint_connection_crud.yaml @@ -11,14 +11,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_private_endpoint_connection_crud","date":"2024-07-12T02:45:36Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:45:42 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E6625F2E728842528F7E5B61D2FE6EB3 Ref B: TYO201151003034 Ref C: 2024-07-12T02:45:42Z' + - 'Ref A: 56BE0BBBE1C14017B23BE7E5E3207FE1 Ref B: CO6AA3150218029 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -62,46 +62,47 @@ interactions: Content-Type: - application/json ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:45:50 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '4261' + - '8116' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/3843271c-db74-479c-aaa1-3f120dced096 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FD5F1DDF903548E49BA17AAAE487EA01 Ref B: TYO201100114019 Ref C: 2024-07-12T02:45:43Z' + - 'Ref A: 2C4DDCBA340C4BDA90C2A72D81693C5C Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -117,34 +118,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:45:52 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '203' + - '65' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -152,9 +152,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 927DC916776F4501893D896EE785E692 Ref B: TYO201100114019 Ref C: 2024-07-12T02:45:50Z' + - 'Ref A: EC992430B0514A86B7D33CBE68C1C22A Ref B: CO6AA3150217047 Ref C: 2025-09-12T01:19:03Z' status: code: 200 message: OK @@ -170,34 +170,137 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:46:23 GMT + - Fri, 12 Sep 2025 01:19:33 GMT elapsed-time: - - '198' + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: AC70D39FF25F4D0EBD269488172C22E8 Ref B: MWH011020806023 Ref C: 2025-09-12T01:19: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 --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:04 GMT + elapsed-time: + - '57' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: DF75C285AC054448986B563D7109CB79 Ref B: MWH011020808060 Ref C: 2025-09-12T01:20: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 --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:34 GMT + elapsed-time: + - '65' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -205,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 58E865BCC8AF4293BAD4B6CD9083F297 Ref B: TYO201100114019 Ref C: 2024-07-12T02:46:22Z' + - 'Ref A: 69F3CB1EF3A2440FB0B180A497A693D5 Ref B: MWH011020808040 Ref C: 2025-09-12T01:20:34Z' status: code: 200 message: OK @@ -223,34 +326,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:46:54 GMT + - Fri, 12 Sep 2025 01:21:05 GMT elapsed-time: - - '203' + - '68' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -258,9 +360,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7DFCAA8D5AA447FDA183D8B1804EF7A7 Ref B: TYO201100114019 Ref C: 2024-07-12T02:46:53Z' + - 'Ref A: C2DFC7E42A1840E2A4A6C75C1F7EEFA3 Ref B: MWH011020808054 Ref C: 2025-09-12T01:21:05Z' status: code: 200 message: OK @@ -276,34 +378,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:47:25 GMT + - Fri, 12 Sep 2025 01:21:36 GMT elapsed-time: - - '205' + - '62' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -311,9 +412,61 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' + x-msedge-ref: + - 'Ref A: 3B2F9A8E67A347429586B879ECE4273C Ref B: MWH011020809034 Ref C: 2025-09-12T01:21: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 --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:05 GMT + elapsed-time: + - '62' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: 0D1D47324DC543E58FEF33A18540851A Ref B: TYO201100114019 Ref C: 2024-07-12T02:47:24Z' + - 'Ref A: FAC61190104B46DF9C6405227BF5F854 Ref B: MWH011020807036 Ref C: 2025-09-12T01:22:06Z' status: code: 200 message: OK @@ -329,34 +482,85 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:47:57 GMT + - Fri, 12 Sep 2025 01:22:36 GMT elapsed-time: - - '201' + - '66' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: B2F19FB7792841CDA1E264A925372C8F Ref B: CO6AA3150218023 Ref C: 2025-09-12T01:22: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 --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:06 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -364,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2034F62157334A7391997F2A84C2D338 Ref B: TYO201100114019 Ref C: 2024-07-12T02:47:55Z' + - 'Ref A: 7FA4B44A2EFD40EFA625A6A199F16069 Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:23:06Z' status: code: 200 message: OK @@ -382,34 +586,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:48:28 GMT + - Fri, 12 Sep 2025 01:23:37 GMT elapsed-time: - - '166' + - '66' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -417,9 +620,61 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' + x-msedge-ref: + - 'Ref A: B35D48730EBA446D9B1F973FCDA93266 Ref B: CO6AA3150219027 Ref C: 2025-09-12T01:23:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:08 GMT + elapsed-time: + - '59' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: B89903F894F9494DA9B6202CC66ADEA5 Ref B: TYO201100114019 Ref C: 2024-07-12T02:48:27Z' + - 'Ref A: CC292D78E5E34145A073ABFDE2C9EA74 Ref B: CO6AA3150217037 Ref C: 2025-09-12T01:24:08Z' status: code: 200 message: OK @@ -435,34 +690,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:48:59 GMT + - Fri, 12 Sep 2025 01:24:38 GMT elapsed-time: - - '161' + - '62' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -470,9 +724,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EABD9C6FB02747BAA4609C00B164311B Ref B: TYO201100114019 Ref C: 2024-07-12T02:48:58Z' + - 'Ref A: CBABA9FC0AF849AB8FD04ADEBD2B4BE8 Ref B: CO6AA3150217019 Ref C: 2025-09-12T01:24:38Z' status: code: 200 message: OK @@ -488,34 +742,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:49:30 GMT + - Fri, 12 Sep 2025 01:25:09 GMT elapsed-time: - - '187' + - '73' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -523,9 +776,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A6C00F899C2B475EBC44037703D1CD40 Ref B: TYO201100114019 Ref C: 2024-07-12T02:49:29Z' + - 'Ref A: 88A0C6CD73F945D4974D3FBE3E39372D Ref B: CO6AA3150218047 Ref C: 2025-09-12T01:25:08Z' status: code: 200 message: OK @@ -541,34 +794,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:50:02 GMT + - Fri, 12 Sep 2025 01:25:39 GMT elapsed-time: - - '195' + - '69' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -576,9 +828,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A297309259D1469EA09740B6A7FE80EA Ref B: TYO201100114019 Ref C: 2024-07-12T02:50:01Z' + - 'Ref A: 9F53C5BC62F642FAA961708C1E0A1BB6 Ref B: MWH011020806036 Ref C: 2025-09-12T01:25:39Z' status: code: 200 message: OK @@ -594,34 +846,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:50:33 GMT + - Fri, 12 Sep 2025 01:26:09 GMT elapsed-time: - - '218' + - '60' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -629,9 +880,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 59CAD651AA8C46D3AE044F53CE48FF7B Ref B: TYO201100114019 Ref C: 2024-07-12T02:50:32Z' + - 'Ref A: 6468E00FD62C40788ECF3F27BF88142E Ref B: CO6AA3150220039 Ref C: 2025-09-12T01:26:10Z' status: code: 200 message: OK @@ -647,34 +898,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:51:04 GMT + - Fri, 12 Sep 2025 01:26:40 GMT elapsed-time: - - '236' + - '70' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -682,9 +932,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0C30D5ABEFA24AC5814E6F6FFFB223DE Ref B: TYO201100114019 Ref C: 2024-07-12T02:51:03Z' + - 'Ref A: 67A499FAE77B42BC9E117DFD24099AB8 Ref B: CO6AA3150219011 Ref C: 2025-09-12T01:26:40Z' status: code: 200 message: OK @@ -700,34 +950,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:51:35 GMT + - Fri, 12 Sep 2025 01:27:10 GMT elapsed-time: - - '190' + - '101' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -735,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 667D944046B84BDC96317C098AE21D1C Ref B: TYO201100114019 Ref C: 2024-07-12T02:51:34Z' + - 'Ref A: 39896770C5B847B78068E9F11DA3BF60 Ref B: CO6AA3150217053 Ref C: 2025-09-12T01:27:11Z' status: code: 200 message: OK @@ -753,34 +1002,85 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '738' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:07 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '207' + - '72' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 + 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: 3658DD7550B242D593489738A820E13C Ref B: MWH011020809052 Ref C: 2025-09-12T01:39:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --public-network-access + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:40:22 GMT + elapsed-time: + - '66' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -788,9 +1088,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 847D34C385C5436BA6D92080CB05BB08 Ref B: TYO201100114019 Ref C: 2024-07-12T02:52:06Z' + - 'Ref A: 17C2041A91524630A2271BBD3F1FF31C Ref B: CO6AA3150217027 Ref C: 2025-09-12T01:40:22Z' status: code: 200 message: OK @@ -806,34 +1106,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '730' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:38 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '188' + - '71' etag: - - W/"datetime'2024-07-12T02%3A45%3A50.1968849Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3769579Z'" expires: - '-1' pragma: - no-cache request-id: - - d515809d-3ff8-11ef-afec-a8b13b7de2fa + - 725dd357-8f76-11f0-a9bf-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -841,9 +1140,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 6747A79DF0744FC9B9BCB161CFDEC3CD Ref B: TYO201100114019 Ref C: 2024-07-12T02:52:37Z' + - 'Ref A: 813FE692848944F49E68CE7F096D9EDA Ref B: CO6AA3150218047 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK @@ -861,21 +1160,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_private_endpoint_connection_crud","date":"2024-07-12T02:45:36Z","module":"search","DateCreated":"2024-07-12T02:46:21Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '477' + - '402' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:40 GMT + - Fri, 12 Sep 2025 06:28:44 GMT expires: - '-1' pragma: @@ -886,10 +1185,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A7FEC1590A844C39806B147C50A8A104 Ref B: TYO201151005040 Ref C: 2024-07-12T02:52:41Z' + - 'Ref A: A28680A4CDCF45F28C4344623DDCCAD1 Ref B: CO6AA3150218049 Ref C: 2025-09-12T06:28:45Z' status: code: 200 message: OK @@ -912,25 +1211,25 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2024-07-01 response: body: - string: '{"name":"vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003","etag":"W/\"d7f7b762-a618-4158-acb8-1f73e5391a35\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","properties":{"provisioningState":"Updating","resourceGuid":"df2b1392-c08d-41ae-99da-40e4caabb3c3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003","etag":"W/\"21c44839-6772-4cd1-b39b-971d70e818cf\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","properties":{"provisioningState":"Updating","resourceGuid":"5538d7e5-9e59-4baf-b525-ff6e47b4d3ec","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/64fa8313-c9fe-48d8-bfa8-377c391e3cf3?api-version=2022-01-01&t=638563495650222472&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=AZxVE898iehcHBYVbejQMIa2H9WSqhJnCrt9sDElYNHiBj4QnsmnJx0P_WyKlgJjeknDSQpLe8nDFyULy--TToKVvNzISVTGfCXUTENQBikle9OFwpjoiRdjBnjuqMXzqodmeZYucnvWB2lnmtAtQBbIwhLVOc9sISAeel6yWsMmAsPLIsYwrPlHCs1Az3805JHipSM9_C9fpCVpi6-S0q1A_jY6Nsre_k7rjLpw9oldQEP7bAHp7gUzWK1BXYL4KDd2pjgVopCIn5Eg-E1ajdwktPaY5vquLst_fnOO9zvIy60lNT3QH_ELJuG-cM37YVHUK1Yi72Qpg76tiW2s8Q&h=CqyA8mq7_wOM93oIGC1sUW2smZM9i_Dc1RsuaWKoXiU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/87795e67-0669-41fd-bfb5-019a57f1b9b7?api-version=2024-07-01&t=638932553277720677&c=MIIIpTCCBo2gAwIBAgITFgGsmnj73LBE7PaBtQABAayaeDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE4MTIwNDI4WhcNMjYwMTE0MTIwNDI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKYwXiklImL5-WfPWj2FX3_Y-JxCd3XXEOuNXx5ggHubZZamujLTqEBSFsFYiH_9NCaqKTiATXu6fBpzW3ghgYhwr0PL071fQT15KnnNUFjd5hFXB7SYti9IwWu1lxSAz-De7HivujKdlsgcmfoV6upRQ0eva9e74EwLV9pCn4WQAhs-6T8p0CytQsi81qHMWybAbNvfom0ox78IEWdS_6g_d4Jl_I4ccYLMyRTOV2NioM96cRECWCZhbpLl1zwoYGSbU5H0MZaiCBjPlhXN40BqagpamZfP98sPYSBfreh6-iMGU5tNTRkh8RiJqzjhzIUpEv3PqLtWTyPUB8JS7aUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTxzPCXgPzIUiTz94us0y0CCMf8BzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAAqNK9Ejzdnb9L4TyakCpJByRYVTN_6nCGbtUd2E2sELjuJGRGiRmujp_jqNyIofO_ghSaP_tqH-3WRTRUbnt5xM8aBYoYJSOgKgTsNrB6clspdhCCmzhJy6EQuOqfUDm3C7hDru1_bN3DwXt3VpDqfuYtM3MAabKg0oCYVWgFwnAKYmZLZMWMQh7k_hZxy1gOCQmE9U08tf_pU21aI0El6n5A5uG2FT0placwchheFmXAtoPjT7nU53HVmRissxUR_vRCDj_ZCFo3K3nZNXCQOKPAMc9-LC0prb9Slg6siKtSHB3iGjNQlT9-nbSnDgifI8zC1cvT8CdaNLOmUywRIB4wvRn1z123NuyfJaIz95igW9P189vBTJEZREF-MgJEboWKdlGNn6bbBtu0waqAmUU7WVLeZKdtUI6EEKF7wRGYuY_BhZx1ipyXnBHZpsufuH4AwgOO289QKmqg8QAy7HFD9c8H8fNCtR7sTZ4YNP2AhEaES0rkMSQUCNVEz42YEBi2GgrSpnI94SPdb3J3PkCMZ4OgFRjztLO7nrgbPtflhSOo_VOE0_7Y74km43WAMQPKL3-44vQrEQ61Hd_24IcFh_ChNXvUDqp39GzYlO3D0zlau4ozll8BeLUZrJwHTQWZS8XR-EifCl4MW5Y3Y1SxOLrIxnukCzQxL7aGmc&s=QpXMySm057qn3G5VVY8bvzutWiku-yRIibAm2-lot2dZuCgM4oVgW6pKO-psJLb0NBxsVBBRpb8T2LVKTZnT7k83We-tp0YcTj1vDAccz0ItdoKJ7MgpR-xXMQ9q_GjGvWVwv8UtyhOhaZ2iJTHf3ePeXMDtHkw8hrUZZRuczHWvkPpvzy90UI3KJwrxHveds_gU-rRIUMk5rVZO8CogNcUTJ-M9kmt2zXNv8mCtVt2Y84gKRlgOcVTYVeuPcrvboxC1X6Q3twrLMZaOrFT_OcXXIYfewu_OTrdEf0SVVuTshy621C_WSmSPx9FIhSqar12Q6SY1094LDWZ_NNoimw&h=RoLeRM8ZDDaI5D1K9jNclyW0crk0-o3Vykd-X50QMKM cache-control: - no-cache content-length: - - '519' + - '560' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:44 GMT + - Fri, 12 Sep 2025 06:28:47 GMT expires: - '-1' pragma: @@ -942,16 +1241,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a587442-e897-45d6-b823-a8bfbef72f89 + - b3dc0021-c510-47dd-bf66-49f875a8c356 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/0ab7dc23-2a77-492a-a810-e831c6c13cef x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 32C324C813F3482D80452B058891D2FF Ref B: TYO201100117009 Ref C: 2024-07-12T02:52:41Z' + - 'Ref A: D1AC6D2B6FEC45619D3C9C197047B624 Ref B: CO6AA3150220051 Ref C: 2025-09-12T06:28:45Z' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -966,9 +1267,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/64fa8313-c9fe-48d8-bfa8-377c391e3cf3?api-version=2022-01-01&t=638563495650222472&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=AZxVE898iehcHBYVbejQMIa2H9WSqhJnCrt9sDElYNHiBj4QnsmnJx0P_WyKlgJjeknDSQpLe8nDFyULy--TToKVvNzISVTGfCXUTENQBikle9OFwpjoiRdjBnjuqMXzqodmeZYucnvWB2lnmtAtQBbIwhLVOc9sISAeel6yWsMmAsPLIsYwrPlHCs1Az3805JHipSM9_C9fpCVpi6-S0q1A_jY6Nsre_k7rjLpw9oldQEP7bAHp7gUzWK1BXYL4KDd2pjgVopCIn5Eg-E1ajdwktPaY5vquLst_fnOO9zvIy60lNT3QH_ELJuG-cM37YVHUK1Yi72Qpg76tiW2s8Q&h=CqyA8mq7_wOM93oIGC1sUW2smZM9i_Dc1RsuaWKoXiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/87795e67-0669-41fd-bfb5-019a57f1b9b7?api-version=2024-07-01&t=638932553277720677&c=MIIIpTCCBo2gAwIBAgITFgGsmnj73LBE7PaBtQABAayaeDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE4MTIwNDI4WhcNMjYwMTE0MTIwNDI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKYwXiklImL5-WfPWj2FX3_Y-JxCd3XXEOuNXx5ggHubZZamujLTqEBSFsFYiH_9NCaqKTiATXu6fBpzW3ghgYhwr0PL071fQT15KnnNUFjd5hFXB7SYti9IwWu1lxSAz-De7HivujKdlsgcmfoV6upRQ0eva9e74EwLV9pCn4WQAhs-6T8p0CytQsi81qHMWybAbNvfom0ox78IEWdS_6g_d4Jl_I4ccYLMyRTOV2NioM96cRECWCZhbpLl1zwoYGSbU5H0MZaiCBjPlhXN40BqagpamZfP98sPYSBfreh6-iMGU5tNTRkh8RiJqzjhzIUpEv3PqLtWTyPUB8JS7aUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTxzPCXgPzIUiTz94us0y0CCMf8BzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAAqNK9Ejzdnb9L4TyakCpJByRYVTN_6nCGbtUd2E2sELjuJGRGiRmujp_jqNyIofO_ghSaP_tqH-3WRTRUbnt5xM8aBYoYJSOgKgTsNrB6clspdhCCmzhJy6EQuOqfUDm3C7hDru1_bN3DwXt3VpDqfuYtM3MAabKg0oCYVWgFwnAKYmZLZMWMQh7k_hZxy1gOCQmE9U08tf_pU21aI0El6n5A5uG2FT0placwchheFmXAtoPjT7nU53HVmRissxUR_vRCDj_ZCFo3K3nZNXCQOKPAMc9-LC0prb9Slg6siKtSHB3iGjNQlT9-nbSnDgifI8zC1cvT8CdaNLOmUywRIB4wvRn1z123NuyfJaIz95igW9P189vBTJEZREF-MgJEboWKdlGNn6bbBtu0waqAmUU7WVLeZKdtUI6EEKF7wRGYuY_BhZx1ipyXnBHZpsufuH4AwgOO289QKmqg8QAy7HFD9c8H8fNCtR7sTZ4YNP2AhEaES0rkMSQUCNVEz42YEBi2GgrSpnI94SPdb3J3PkCMZ4OgFRjztLO7nrgbPtflhSOo_VOE0_7Y74km43WAMQPKL3-44vQrEQ61Hd_24IcFh_ChNXvUDqp39GzYlO3D0zlau4ozll8BeLUZrJwHTQWZS8XR-EifCl4MW5Y3Y1SxOLrIxnukCzQxL7aGmc&s=QpXMySm057qn3G5VVY8bvzutWiku-yRIibAm2-lot2dZuCgM4oVgW6pKO-psJLb0NBxsVBBRpb8T2LVKTZnT7k83We-tp0YcTj1vDAccz0ItdoKJ7MgpR-xXMQ9q_GjGvWVwv8UtyhOhaZ2iJTHf3ePeXMDtHkw8hrUZZRuczHWvkPpvzy90UI3KJwrxHveds_gU-rRIUMk5rVZO8CogNcUTJ-M9kmt2zXNv8mCtVt2Y84gKRlgOcVTYVeuPcrvboxC1X6Q3twrLMZaOrFT_OcXXIYfewu_OTrdEf0SVVuTshy621C_WSmSPx9FIhSqar12Q6SY1094LDWZ_NNoimw&h=RoLeRM8ZDDaI5D1K9jNclyW0crk0-o3Vykd-X50QMKM response: body: string: '{"status":"InProgress"}' @@ -980,7 +1281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:45 GMT + - Fri, 12 Sep 2025 06:28:47 GMT expires: - '-1' pragma: @@ -992,14 +1293,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b0008f5-d580-4134-83ec-f8302bafe574 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 563a2245-72b3-4699-90e4-f8b80467ed3f + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/bfd877df-4c1c-4208-a977-606158a9fe89 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FC519288FA5646F9A3D625E1FAA35213 Ref B: TYO201100117009 Ref C: 2024-07-12T02:52:45Z' + - 'Ref A: EF932E0C92C947C981DA38E694075388 Ref B: CO6AA3150218021 Ref C: 2025-09-12T06:28:48Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1014,9 +1317,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/64fa8313-c9fe-48d8-bfa8-377c391e3cf3?api-version=2022-01-01&t=638563495650222472&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=AZxVE898iehcHBYVbejQMIa2H9WSqhJnCrt9sDElYNHiBj4QnsmnJx0P_WyKlgJjeknDSQpLe8nDFyULy--TToKVvNzISVTGfCXUTENQBikle9OFwpjoiRdjBnjuqMXzqodmeZYucnvWB2lnmtAtQBbIwhLVOc9sISAeel6yWsMmAsPLIsYwrPlHCs1Az3805JHipSM9_C9fpCVpi6-S0q1A_jY6Nsre_k7rjLpw9oldQEP7bAHp7gUzWK1BXYL4KDd2pjgVopCIn5Eg-E1ajdwktPaY5vquLst_fnOO9zvIy60lNT3QH_ELJuG-cM37YVHUK1Yi72Qpg76tiW2s8Q&h=CqyA8mq7_wOM93oIGC1sUW2smZM9i_Dc1RsuaWKoXiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/87795e67-0669-41fd-bfb5-019a57f1b9b7?api-version=2024-07-01&t=638932553277720677&c=MIIIpTCCBo2gAwIBAgITFgGsmnj73LBE7PaBtQABAayaeDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE4MTIwNDI4WhcNMjYwMTE0MTIwNDI4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKYwXiklImL5-WfPWj2FX3_Y-JxCd3XXEOuNXx5ggHubZZamujLTqEBSFsFYiH_9NCaqKTiATXu6fBpzW3ghgYhwr0PL071fQT15KnnNUFjd5hFXB7SYti9IwWu1lxSAz-De7HivujKdlsgcmfoV6upRQ0eva9e74EwLV9pCn4WQAhs-6T8p0CytQsi81qHMWybAbNvfom0ox78IEWdS_6g_d4Jl_I4ccYLMyRTOV2NioM96cRECWCZhbpLl1zwoYGSbU5H0MZaiCBjPlhXN40BqagpamZfP98sPYSBfreh6-iMGU5tNTRkh8RiJqzjhzIUpEv3PqLtWTyPUB8JS7aUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTxzPCXgPzIUiTz94us0y0CCMf8BzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAAqNK9Ejzdnb9L4TyakCpJByRYVTN_6nCGbtUd2E2sELjuJGRGiRmujp_jqNyIofO_ghSaP_tqH-3WRTRUbnt5xM8aBYoYJSOgKgTsNrB6clspdhCCmzhJy6EQuOqfUDm3C7hDru1_bN3DwXt3VpDqfuYtM3MAabKg0oCYVWgFwnAKYmZLZMWMQh7k_hZxy1gOCQmE9U08tf_pU21aI0El6n5A5uG2FT0placwchheFmXAtoPjT7nU53HVmRissxUR_vRCDj_ZCFo3K3nZNXCQOKPAMc9-LC0prb9Slg6siKtSHB3iGjNQlT9-nbSnDgifI8zC1cvT8CdaNLOmUywRIB4wvRn1z123NuyfJaIz95igW9P189vBTJEZREF-MgJEboWKdlGNn6bbBtu0waqAmUU7WVLeZKdtUI6EEKF7wRGYuY_BhZx1ipyXnBHZpsufuH4AwgOO289QKmqg8QAy7HFD9c8H8fNCtR7sTZ4YNP2AhEaES0rkMSQUCNVEz42YEBi2GgrSpnI94SPdb3J3PkCMZ4OgFRjztLO7nrgbPtflhSOo_VOE0_7Y74km43WAMQPKL3-44vQrEQ61Hd_24IcFh_ChNXvUDqp39GzYlO3D0zlau4ozll8BeLUZrJwHTQWZS8XR-EifCl4MW5Y3Y1SxOLrIxnukCzQxL7aGmc&s=QpXMySm057qn3G5VVY8bvzutWiku-yRIibAm2-lot2dZuCgM4oVgW6pKO-psJLb0NBxsVBBRpb8T2LVKTZnT7k83We-tp0YcTj1vDAccz0ItdoKJ7MgpR-xXMQ9q_GjGvWVwv8UtyhOhaZ2iJTHf3ePeXMDtHkw8hrUZZRuczHWvkPpvzy90UI3KJwrxHveds_gU-rRIUMk5rVZO8CogNcUTJ-M9kmt2zXNv8mCtVt2Y84gKRlgOcVTYVeuPcrvboxC1X6Q3twrLMZaOrFT_OcXXIYfewu_OTrdEf0SVVuTshy621C_WSmSPx9FIhSqar12Q6SY1094LDWZ_NNoimw&h=RoLeRM8ZDDaI5D1K9jNclyW0crk0-o3Vykd-X50QMKM response: body: string: '{"status":"Succeeded"}' @@ -1028,7 +1331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:56 GMT + - Fri, 12 Sep 2025 06:28:58 GMT expires: - '-1' pragma: @@ -1040,11 +1343,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2455083-5262-420a-8f55-f873c21969b3 + - 1d68465f-9eff-4fda-bc95-de0bb84f7370 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/a1d4d3e4-d36e-4011-8033-ec658d6a64eb x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F064E41695B44AAD8CB30D64194CF6A2 Ref B: TYO201100117009 Ref C: 2024-07-12T02:52:55Z' + - 'Ref A: D50B63132B4349158B7DA93D3F691313 Ref B: MWH011020808034 Ref C: 2025-09-12T06:28:58Z' status: code: 200 message: OK @@ -1062,23 +1367,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003?api-version=2024-07-01 response: body: - string: '{"name":"vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003","etag":"W/\"0e96edec-4990-4446-9638-6746248a0655\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","properties":{"provisioningState":"Succeeded","resourceGuid":"df2b1392-c08d-41ae-99da-40e4caabb3c3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003","etag":"W/\"4dcb8153-307f-468e-85c3-001080e094dd\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2euap","properties":{"provisioningState":"Succeeded","resourceGuid":"5538d7e5-9e59-4baf-b525-ff6e47b4d3ec","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '520' + - '561' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:57 GMT - etag: - - W/"0e96edec-4990-4446-9638-6746248a0655" + - Fri, 12 Sep 2025 06:28:58 GMT expires: - '-1' pragma: @@ -1090,14 +1393,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d5559dc-8238-4c8c-ae94-aa29d145d83e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 5c175cfd-8d55-47dc-ab5b-e6bfc2335bd9 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 26B320544939463C8BD0BBF44C2873E1 Ref B: TYO201100117009 Ref C: 2024-07-12T02:52:56Z' + - 'Ref A: 7B41119F156742C6A125B8AEE892EA84 Ref B: CO6AA3150217021 Ref C: 2025-09-12T06:28:58Z' status: code: 200 - message: '' + message: OK - request: body: '{"name": "subnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": false, "privateEndpointNetworkPolicies": "Disabled", @@ -1118,25 +1421,25 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefixes --default-outbound User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2024-07-01 response: body: - string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"cf92fc0e-4885-4411-86b9-84405fea26de\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"de7ebb03-1a22-4727-ac8c-830c3e966d57\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/323ea85a-ce9a-4c64-b0d4-ead41bcd86cb?api-version=2024-01-01&t=638563495791195475&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=nqzBCt5XkxL8nPzAjuemQygGGxXM5EE9Rg-nzvF8Uv8InTr37uD0xQoQdu6gB3BEtwVHAq5LqpmS-ANWI5IXEIvJ_05RZtGSsxwBg_jypAdiAUASWYDAU7Q4wQgzW8bXMNbLAVhUEL2dBxwTTOImvCxT7NGDuMaIRNH1XITbvp2BrzSTCrzsGoZRtdt_7ED08__ghCD3KSLlwPlywy-vq8qmPpjGD4QrQ5Zzc9pJyR1iwAeSw4UH8IAugNKmay-vVW-m29pALvRyBKdjzIvsIO4BbJqKZm-zJAdhO-1GuS9Yw06K1sbpJrk8nwH_pfOaPvEtdXlZ-U4kH6yaasSLew&h=aoUALdk2zbjKpS3Yf1F07Q2omP8-G6Veyi_QNDY8qng + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/51950e82-04c1-48c3-add0-dffe83a0f9a2?api-version=2024-07-01&t=638932553402004575&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=i8GioHbgpMBbYQS-VeEuzCUM43FsCTC6bKidRaQo2wvVBcVKnIZdzt7FhJ9S_GPjtp0tZI6X1BRtqMCzL1kNjF6uopAIMOJCJmpr1af0cwlpt4SL9SEe3AV7V4CljrH_uLzFcXyf1X08mLyX_a8OOFbkbctvpUmFMu7LGSTKTfpTPwnotKL2PcxEnbmRD51CyNxZHGP1my5bfrTX1ZsUkJORA6sC7MPXlGfcLK0fvg7NM6AWWJaaS1uwa0p-0vVQFYIougK_8jao6Wh0IptUI2Wj77YEi2hQHcgHZRbU6ncS5EXjNk10OU2HV5tASz0XKpTc-p3jd9nL0IxShauejA&h=g-h_MEks3X1COgFEYXY64M2D2A4I1i3tQZPBTvbRxvI cache-control: - no-cache content-length: - - '548' + - '517' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:58 GMT + - Fri, 12 Sep 2025 06:29:00 GMT expires: - '-1' pragma: @@ -1148,16 +1451,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e6c4abb6-cbd0-4cd5-aa57-22d84f2e2d04 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - c6e8aff9-4d1e-42f6-9280-40cd0df1e61c + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/e254f9ea-fb50-4c06-8a1b-ed0b37b815dc x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 55D1E11FDF39450B8E4F495D4FD9A8A4 Ref B: TYO201151004036 Ref C: 2024-07-12T02:52:58Z' + - 'Ref A: C5D0B1D6D89C4AA99A595ABE4374783E Ref B: MWH011020806054 Ref C: 2025-09-12T06:28:59Z' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -1172,9 +1477,9 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefixes --default-outbound User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/323ea85a-ce9a-4c64-b0d4-ead41bcd86cb?api-version=2024-01-01&t=638563495791195475&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=nqzBCt5XkxL8nPzAjuemQygGGxXM5EE9Rg-nzvF8Uv8InTr37uD0xQoQdu6gB3BEtwVHAq5LqpmS-ANWI5IXEIvJ_05RZtGSsxwBg_jypAdiAUASWYDAU7Q4wQgzW8bXMNbLAVhUEL2dBxwTTOImvCxT7NGDuMaIRNH1XITbvp2BrzSTCrzsGoZRtdt_7ED08__ghCD3KSLlwPlywy-vq8qmPpjGD4QrQ5Zzc9pJyR1iwAeSw4UH8IAugNKmay-vVW-m29pALvRyBKdjzIvsIO4BbJqKZm-zJAdhO-1GuS9Yw06K1sbpJrk8nwH_pfOaPvEtdXlZ-U4kH6yaasSLew&h=aoUALdk2zbjKpS3Yf1F07Q2omP8-G6Veyi_QNDY8qng + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/51950e82-04c1-48c3-add0-dffe83a0f9a2?api-version=2024-07-01&t=638932553402004575&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=i8GioHbgpMBbYQS-VeEuzCUM43FsCTC6bKidRaQo2wvVBcVKnIZdzt7FhJ9S_GPjtp0tZI6X1BRtqMCzL1kNjF6uopAIMOJCJmpr1af0cwlpt4SL9SEe3AV7V4CljrH_uLzFcXyf1X08mLyX_a8OOFbkbctvpUmFMu7LGSTKTfpTPwnotKL2PcxEnbmRD51CyNxZHGP1my5bfrTX1ZsUkJORA6sC7MPXlGfcLK0fvg7NM6AWWJaaS1uwa0p-0vVQFYIougK_8jao6Wh0IptUI2Wj77YEi2hQHcgHZRbU6ncS5EXjNk10OU2HV5tASz0XKpTc-p3jd9nL0IxShauejA&h=g-h_MEks3X1COgFEYXY64M2D2A4I1i3tQZPBTvbRxvI response: body: string: '{"status":"Succeeded"}' @@ -1186,7 +1491,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:52:59 GMT + - Fri, 12 Sep 2025 06:29:00 GMT expires: - '-1' pragma: @@ -1198,14 +1503,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8729d79b-a58a-4ff6-aa5b-5152f98f8d54 + - b4b34601-e5e6-40dd-8530-75eb8fa87173 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/d810e8e2-e6d8-43e4-8cc8-6bbe17e303fd x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 088C24E2D72649188B6A38873D951735 Ref B: TYO201151004036 Ref C: 2024-07-12T02:52:59Z' + - 'Ref A: 7260233D9C8B44C9A05DA693476488CE Ref B: MWH011020808031 Ref C: 2025-09-12T06:29:00Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1220,23 +1527,23 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefixes --default-outbound User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2024-07-01 response: body: - string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"bc83ad20-58c7-418d-8c01-7e81406af163\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"8437aa49-8642-426e-bd47-7f047bcfd21e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '549' + - '518' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:00 GMT + - Fri, 12 Sep 2025 06:29:00 GMT etag: - - W/"bc83ad20-58c7-418d-8c01-7e81406af163" + - W/"8437aa49-8642-426e-bd47-7f047bcfd21e" expires: - '-1' pragma: @@ -1248,14 +1555,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c8ca629-4b5c-45a1-9d81-30e80431ecb7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 101f242f-a30f-4b37-bad1-b9536d083af4 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/69075f13-ce0f-40a9-93a0-942dfb82aec3 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C50BA43B153D4ACB891552A92B87C462 Ref B: TYO201151004036 Ref C: 2024-07-12T02:53:00Z' + - 'Ref A: 12582FE0C73B4AF7AAD2B7AE25A64A6F Ref B: CO6AA3150220047 Ref C: 2025-09-12T06:29:00Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1270,23 +1579,23 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2024-07-01 response: body: - string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"bc83ad20-58c7-418d-8c01-7e81406af163\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"8437aa49-8642-426e-bd47-7f047bcfd21e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '549' + - '518' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:01 GMT + - Fri, 12 Sep 2025 06:29:01 GMT etag: - - W/"bc83ad20-58c7-418d-8c01-7e81406af163" + - W/"8437aa49-8642-426e-bd47-7f047bcfd21e" expires: - '-1' pragma: @@ -1298,14 +1607,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2b53e54-4d70-4467-971a-f71337610541 + - 2d4a4d3f-a814-4bee-aaef-0ba6fe26175e + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/a41bae31-b47d-424a-b80e-468f5e850a2c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7583D1982BCA40428DDD52CA39B3CB43 Ref B: TYO201100115007 Ref C: 2024-07-12T02:53:01Z' + - 'Ref A: 21C69E4519DB4219A65C7C18573CBFEF Ref B: CO6AA3150220011 Ref C: 2025-09-12T06:29:01Z' status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004", "name": "subnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": @@ -1327,25 +1638,25 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2024-07-01 response: body: - string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"eb1471e6-7625-43e9-b28c-19faa0d0b249\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"d9449d31-2041-45fb-8613-a17c0178465f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/9f21cb02-fe05-49ca-b20b-7777c5ab0699?api-version=2024-01-01&t=638563495830968393&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=rN9JAUMp9mIsYy5-9qBWTtPpA-qAOFCyk0n7xfssluMiS1xctpdtbfRkkoIWpmX3hQfo230lnBeLNkhR1EFQLy6sxZouU8M7ySQVLgn1LLtlt4CAl6VLJGVmkROgk2EZuVpUDtXBIRgJUo7HgM948SYBuZIJo9h1ouyuFBz7xczT9tXZEF8kqV9XSsuibctzf3yzf-Q6VXHsejgE0auNdb5PoDh8G4cKK5jfItfopMcWarO21Wmxaw86H2O8eDT0aPrpLYgECcssHFIWapBEuE-P8sVJTcBnwOaRG7KGwFpz4uOwsKKfO4zqLFk93FEww3Fp8LJ5ipOYM2PQD2RjJQ&h=AUgl0vPqMbpcRtii0TdnnkN7G4v7tElPtKnxqS6irRw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/93e39d26-800d-40cd-a889-f9762cedcdf2?api-version=2024-07-01&t=638932553419501871&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=OPBBp_wgLhrl_2oX6JqJx8XnuzuG13ND6uGZ6rdhL-kd7WhDLZtcKG9fw0a-ksZ7wGf7KE9yZj8mb-hgHTrSXUhZxuDUmFC0VgwH1Py1VrWxYYQWafljfahPGfIacRTk6j7_YDUvWE-ryOgn4QdMFu6BWos1uGoJQxXIoVqQMqC8j_nvBiJnuEiJViN7RXJXSw9L0PTgrTsbok-WEuUPwjLGCvJDPUrBp9ekUWxUKe52wxK1EY0ITC1oMn6tnlZBd_iiJgueiJEnLn7Sw7tKbX-6hNWi6csFShir1SrYTPJcUaGbZ5nbfAbgyVHUFCuF9nIzQ3mP9GuHGJGtc-N_CA&h=aVguyPHZusqzrI6BnTwc54UJYTutA3fE3s7EhGIpUN4 cache-control: - no-cache content-length: - - '549' + - '518' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:02 GMT + - Fri, 12 Sep 2025 06:29:01 GMT expires: - '-1' pragma: @@ -1357,16 +1668,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b54387c2-16a3-4991-bd01-4f193b87583f - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 4dd90f9c-03fc-4a14-8c2a-b080e2f59d4a + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/4c373b7a-2567-4de3-9d5b-585fff519736 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9E13615FFAA04B7E96C8A60D23C8C106 Ref B: TYO201100115007 Ref C: 2024-07-12T02:53:02Z' + - 'Ref A: 53D0698F807D42878ECA9C1F7F420E27 Ref B: CO6AA3150219047 Ref C: 2025-09-12T06:29:01Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1381,9 +1694,9 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/9f21cb02-fe05-49ca-b20b-7777c5ab0699?api-version=2024-01-01&t=638563495830968393&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=rN9JAUMp9mIsYy5-9qBWTtPpA-qAOFCyk0n7xfssluMiS1xctpdtbfRkkoIWpmX3hQfo230lnBeLNkhR1EFQLy6sxZouU8M7ySQVLgn1LLtlt4CAl6VLJGVmkROgk2EZuVpUDtXBIRgJUo7HgM948SYBuZIJo9h1ouyuFBz7xczT9tXZEF8kqV9XSsuibctzf3yzf-Q6VXHsejgE0auNdb5PoDh8G4cKK5jfItfopMcWarO21Wmxaw86H2O8eDT0aPrpLYgECcssHFIWapBEuE-P8sVJTcBnwOaRG7KGwFpz4uOwsKKfO4zqLFk93FEww3Fp8LJ5ipOYM2PQD2RjJQ&h=AUgl0vPqMbpcRtii0TdnnkN7G4v7tElPtKnxqS6irRw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/93e39d26-800d-40cd-a889-f9762cedcdf2?api-version=2024-07-01&t=638932553419501871&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=OPBBp_wgLhrl_2oX6JqJx8XnuzuG13ND6uGZ6rdhL-kd7WhDLZtcKG9fw0a-ksZ7wGf7KE9yZj8mb-hgHTrSXUhZxuDUmFC0VgwH1Py1VrWxYYQWafljfahPGfIacRTk6j7_YDUvWE-ryOgn4QdMFu6BWos1uGoJQxXIoVqQMqC8j_nvBiJnuEiJViN7RXJXSw9L0PTgrTsbok-WEuUPwjLGCvJDPUrBp9ekUWxUKe52wxK1EY0ITC1oMn6tnlZBd_iiJgueiJEnLn7Sw7tKbX-6hNWi6csFShir1SrYTPJcUaGbZ5nbfAbgyVHUFCuF9nIzQ3mP9GuHGJGtc-N_CA&h=aVguyPHZusqzrI6BnTwc54UJYTutA3fE3s7EhGIpUN4 response: body: string: '{"status":"Succeeded"}' @@ -1395,7 +1708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:03 GMT + - Fri, 12 Sep 2025 06:29:01 GMT expires: - '-1' pragma: @@ -1407,14 +1720,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e4a39a87-3a96-458f-b80a-16104ecaa5b3 + - 2e13809b-2ab0-4a7d-971b-429b08309c52 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/cdef35e4-212a-4fdf-9d2b-a04ffdeab057 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: B2FF4DEAE0D2476784075FCDA958A089 Ref B: TYO201100115007 Ref C: 2024-07-12T02:53:03Z' + - 'Ref A: 3BD105EF91824A079A8E349292C9F479 Ref B: CO6AA3150218025 Ref C: 2025-09-12T06:29:02Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1429,23 +1744,23 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004?api-version=2024-07-01 response: body: - string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"eb1471e6-7625-43e9-b28c-19faa0d0b249\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004","etag":"W/\"d9449d31-2041-45fb-8613-a17c0178465f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '549' + - '518' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:04 GMT + - Fri, 12 Sep 2025 06:29:01 GMT etag: - - W/"eb1471e6-7625-43e9-b28c-19faa0d0b249" + - W/"d9449d31-2041-45fb-8613-a17c0178465f" expires: - '-1' pragma: @@ -1457,11 +1772,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a3ed2f6-749d-4a28-9407-6d504285facc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - f665aaff-87a8-4373-8d61-52c265604e28 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/e1cae85a-57d3-495a-9a0f-745dc3561aa6 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F6206BEBB64A48C9BD9A92D73D3DAB6A Ref B: TYO201100115007 Ref C: 2024-07-12T02:53:04Z' + - 'Ref A: 876925AE5B114897AFF5D19729EACD5F Ref B: CO6AA3150220037 Ref C: 2025-09-12T06:29:02Z' status: code: 200 message: OK @@ -1480,21 +1797,21 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_private_endpoint_connection_crud","date":"2024-07-12T02:45:36Z","module":"search","DateCreated":"2024-07-12T02:46:21Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_crud","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '477' + - '402' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:05 GMT + - Fri, 12 Sep 2025 06:29:03 GMT expires: - '-1' pragma: @@ -1506,9 +1823,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 66D896E9EDAC449397C64D56E5D14613 Ref B: TYO201100117019 Ref C: 2024-07-12T02:53:05Z' + - 'Ref A: F3E59159B841438AAC60C02B5D25F6B8 Ref B: CO6AA3150217029 Ref C: 2025-09-12T06:29:03Z' status: code: 200 message: OK @@ -1534,18 +1851,18 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 response: body: - string: '{"name":"testpe000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005","etag":"W/\"711f8112-b840-4ba9-ba81-52f5bcc42cb9\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2euap","properties":{"provisioningState":"Updating","resourceGuid":"ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","privateLinkServiceConnections":[{"name":"testpec000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006","etag":"W/\"711f8112-b840-4ba9-ba81-52f5bcc42cb9\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","groupIds":["searchService"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto - Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.46d875ba-3871-47a8-ad53-98a72b1f48b5"}],"customDnsConfigs":[]}}' + string: '{"name":"testpe000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005","etag":"W/\"74210482-07cc-47a5-ba19-11f22d196ce2\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2euap","properties":{"provisioningState":"Updating","resourceGuid":"6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","privateLinkServiceConnections":[{"name":"testpec000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006","etag":"W/\"74210482-07cc-47a5-ba19-11f22d196ce2\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","groupIds":["searchService"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto + Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.f958eadd-37bf-45d3-8a7d-9f64453308c4"}],"customDnsConfigs":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/987ee462-0353-41f2-8146-0d3af298b625?api-version=2022-01-01&t=638563495896895380&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=jUyPUmmHemLDPtIyNAdQkHMton_0eGENtNH3hxPC9eX9xNSD1F0Og8ebC-q1bteMNoa6YK7GrACuq7xVhqRZaxGrgKOJsJA3vytQFMYf3XDw43OZKYwn53CoSBFjFpdrwcFmWVwvvOUw1b5BKP4Sgr2GiNfv0c0EAjRcTvtYIPGo1Syb7W5vjsuep1y84bsZ2veOcUZr63Dt_2QQb5n7m9M3TjWQThqsurSWb3-WLvXru-iKtdIWy18BX4XqiXSW7SEyOInGAgN-KqVcSWtXnF5hxUkmeFwU4WVclzqXRyh0XdL6u6RQZVh08Gu5HY-9Qq58nIdAI0LbnRWE0PlXPw&h=c6bThD5x5uJ31YgYhS9llBI9ZbZVuxf6-IwC4Wef8xk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/de08fdc4-be19-40bb-99b5-66e7956f62e2?api-version=2022-01-01&t=638932553444903072&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=TfgP0_L_wtXrgUOJaX9i3ItumLsTiQnF73pihsa9mwkvE5r-kZXAnqSFSWB6kKPMYYNxHX9b4XdRozmRWhA3uJmQxhPXDy5ZOJRdi_TY5MKaksP9nkzMg2xBGTCW3w27bvjwcHoFNzNChjCzBn5yaroRotVDcBkRWV47kAlTIVm0-cHfnP5ZXK0J_QWlZWL0htZTKd16No5hT4EmGK0useI60Z2QfubGnqor6e4UVXVqRYqUsbZa0tl1Cbuj70hvttYp8K_OAyO8d5QbHH58ja_VFS_kO--OCJa19Sbba1DHBOiTx4EtO2I_c7Rxifz5D2fcdgt1Y-bCjR3ljMvvVA&h=eoN0u9PJjfhQCx-wKwZLXIx2ju-4PDEtS1u8pi3GYeM cache-control: - no-cache content-length: @@ -1553,7 +1870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:09 GMT + - Fri, 12 Sep 2025 06:29:03 GMT expires: - '-1' pragma: @@ -1565,16 +1882,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f9c18741-4b61-4478-b00f-1dc203af3eb5 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - fa10a21c-976a-40d5-81f2-585fbb14c1a0 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/a67c3132-980d-435f-a028-eea9ae1e1d59 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 6196293236794C3DB7732DDC11905E46 Ref B: TYO201100113029 Ref C: 2024-07-12T02:53:06Z' + - 'Ref A: AFB541640230473E82F92E1D25E9DF99 Ref B: CO6AA3150218031 Ref C: 2025-09-12T06:29:03Z' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -1590,9 +1909,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/987ee462-0353-41f2-8146-0d3af298b625?api-version=2022-01-01&t=638563495896895380&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=jUyPUmmHemLDPtIyNAdQkHMton_0eGENtNH3hxPC9eX9xNSD1F0Og8ebC-q1bteMNoa6YK7GrACuq7xVhqRZaxGrgKOJsJA3vytQFMYf3XDw43OZKYwn53CoSBFjFpdrwcFmWVwvvOUw1b5BKP4Sgr2GiNfv0c0EAjRcTvtYIPGo1Syb7W5vjsuep1y84bsZ2veOcUZr63Dt_2QQb5n7m9M3TjWQThqsurSWb3-WLvXru-iKtdIWy18BX4XqiXSW7SEyOInGAgN-KqVcSWtXnF5hxUkmeFwU4WVclzqXRyh0XdL6u6RQZVh08Gu5HY-9Qq58nIdAI0LbnRWE0PlXPw&h=c6bThD5x5uJ31YgYhS9llBI9ZbZVuxf6-IwC4Wef8xk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/de08fdc4-be19-40bb-99b5-66e7956f62e2?api-version=2022-01-01&t=638932553444903072&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=TfgP0_L_wtXrgUOJaX9i3ItumLsTiQnF73pihsa9mwkvE5r-kZXAnqSFSWB6kKPMYYNxHX9b4XdRozmRWhA3uJmQxhPXDy5ZOJRdi_TY5MKaksP9nkzMg2xBGTCW3w27bvjwcHoFNzNChjCzBn5yaroRotVDcBkRWV47kAlTIVm0-cHfnP5ZXK0J_QWlZWL0htZTKd16No5hT4EmGK0useI60Z2QfubGnqor6e4UVXVqRYqUsbZa0tl1Cbuj70hvttYp8K_OAyO8d5QbHH58ja_VFS_kO--OCJa19Sbba1DHBOiTx4EtO2I_c7Rxifz5D2fcdgt1Y-bCjR3ljMvvVA&h=eoN0u9PJjfhQCx-wKwZLXIx2ju-4PDEtS1u8pi3GYeM response: body: string: '{"status":"InProgress"}' @@ -1604,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:09 GMT + - Fri, 12 Sep 2025 06:29:03 GMT expires: - '-1' pragma: @@ -1616,14 +1935,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 20e4e6dd-81d6-4583-8cff-3b8eeb9f4852 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - a17930ea-fc97-4f11-851c-b889f13f1397 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/aba0edbc-723e-47d7-80b7-906416851ef5 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 6EC7CCCFF16B41E3ABC46EAD7BCA2B47 Ref B: TYO201100113029 Ref C: 2024-07-12T02:53:09Z' + - 'Ref A: 739BFE21E0194A3090D0F1A6900FAA79 Ref B: MWH011020807054 Ref C: 2025-09-12T06:29:04Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1639,9 +1960,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/987ee462-0353-41f2-8146-0d3af298b625?api-version=2022-01-01&t=638563495896895380&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=jUyPUmmHemLDPtIyNAdQkHMton_0eGENtNH3hxPC9eX9xNSD1F0Og8ebC-q1bteMNoa6YK7GrACuq7xVhqRZaxGrgKOJsJA3vytQFMYf3XDw43OZKYwn53CoSBFjFpdrwcFmWVwvvOUw1b5BKP4Sgr2GiNfv0c0EAjRcTvtYIPGo1Syb7W5vjsuep1y84bsZ2veOcUZr63Dt_2QQb5n7m9M3TjWQThqsurSWb3-WLvXru-iKtdIWy18BX4XqiXSW7SEyOInGAgN-KqVcSWtXnF5hxUkmeFwU4WVclzqXRyh0XdL6u6RQZVh08Gu5HY-9Qq58nIdAI0LbnRWE0PlXPw&h=c6bThD5x5uJ31YgYhS9llBI9ZbZVuxf6-IwC4Wef8xk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/de08fdc4-be19-40bb-99b5-66e7956f62e2?api-version=2022-01-01&t=638932553444903072&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=TfgP0_L_wtXrgUOJaX9i3ItumLsTiQnF73pihsa9mwkvE5r-kZXAnqSFSWB6kKPMYYNxHX9b4XdRozmRWhA3uJmQxhPXDy5ZOJRdi_TY5MKaksP9nkzMg2xBGTCW3w27bvjwcHoFNzNChjCzBn5yaroRotVDcBkRWV47kAlTIVm0-cHfnP5ZXK0J_QWlZWL0htZTKd16No5hT4EmGK0useI60Z2QfubGnqor6e4UVXVqRYqUsbZa0tl1Cbuj70hvttYp8K_OAyO8d5QbHH58ja_VFS_kO--OCJa19Sbba1DHBOiTx4EtO2I_c7Rxifz5D2fcdgt1Y-bCjR3ljMvvVA&h=eoN0u9PJjfhQCx-wKwZLXIx2ju-4PDEtS1u8pi3GYeM response: body: string: '{"status":"InProgress"}' @@ -1653,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:20 GMT + - Fri, 12 Sep 2025 06:29:15 GMT expires: - '-1' pragma: @@ -1665,14 +1986,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4afc61e-1488-4b35-ae50-a7cf84241634 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - bfeef131-d782-4c14-bed5-65f4cdc6cdce + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/7b4453b1-eab4-483b-ad15-5740f5fbdede + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: DA0E11F01D544BE69F9C37B0A4803C33 Ref B: TYO201100113029 Ref C: 2024-07-12T02:53:20Z' + - 'Ref A: D7C01C1FED5144A19F567245CE580D40 Ref B: CO6AA3150220029 Ref C: 2025-09-12T06:29:15Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1688,9 +2011,9 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/987ee462-0353-41f2-8146-0d3af298b625?api-version=2022-01-01&t=638563495896895380&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=jUyPUmmHemLDPtIyNAdQkHMton_0eGENtNH3hxPC9eX9xNSD1F0Og8ebC-q1bteMNoa6YK7GrACuq7xVhqRZaxGrgKOJsJA3vytQFMYf3XDw43OZKYwn53CoSBFjFpdrwcFmWVwvvOUw1b5BKP4Sgr2GiNfv0c0EAjRcTvtYIPGo1Syb7W5vjsuep1y84bsZ2veOcUZr63Dt_2QQb5n7m9M3TjWQThqsurSWb3-WLvXru-iKtdIWy18BX4XqiXSW7SEyOInGAgN-KqVcSWtXnF5hxUkmeFwU4WVclzqXRyh0XdL6u6RQZVh08Gu5HY-9Qq58nIdAI0LbnRWE0PlXPw&h=c6bThD5x5uJ31YgYhS9llBI9ZbZVuxf6-IwC4Wef8xk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/de08fdc4-be19-40bb-99b5-66e7956f62e2?api-version=2022-01-01&t=638932553444903072&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=TfgP0_L_wtXrgUOJaX9i3ItumLsTiQnF73pihsa9mwkvE5r-kZXAnqSFSWB6kKPMYYNxHX9b4XdRozmRWhA3uJmQxhPXDy5ZOJRdi_TY5MKaksP9nkzMg2xBGTCW3w27bvjwcHoFNzNChjCzBn5yaroRotVDcBkRWV47kAlTIVm0-cHfnP5ZXK0J_QWlZWL0htZTKd16No5hT4EmGK0useI60Z2QfubGnqor6e4UVXVqRYqUsbZa0tl1Cbuj70hvttYp8K_OAyO8d5QbHH58ja_VFS_kO--OCJa19Sbba1DHBOiTx4EtO2I_c7Rxifz5D2fcdgt1Y-bCjR3ljMvvVA&h=eoN0u9PJjfhQCx-wKwZLXIx2ju-4PDEtS1u8pi3GYeM response: body: string: '{"status":"Succeeded"}' @@ -1702,7 +2025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:41 GMT + - Fri, 12 Sep 2025 06:29:35 GMT expires: - '-1' pragma: @@ -1714,14 +2037,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c54ac306-3fda-41f0-a751-1b955eecbe06 + - 2f987e38-47ef-4467-80f7-b986d0964a6c + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/46e881f2-3fc6-41fb-9043-37e9c7279892 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D6466CBC9B61465DBCE005AD1EB58114 Ref B: TYO201100113029 Ref C: 2024-07-12T02:53:41Z' + - 'Ref A: B9A9E71CE505439FA1EF90D3A4A7E754 Ref B: MWH011020808042 Ref C: 2025-09-12T06:29:35Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1737,12 +2062,12 @@ interactions: - --resource-group --name --vnet-name --subnet --private-connection-resource-id --connection-name --group-id User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005?api-version=2022-01-01 response: body: - string: '{"name":"testpe000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005","etag":"W/\"7504da1a-07ce-4bc1-8581-15feafc570f9\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2euap","properties":{"provisioningState":"Succeeded","resourceGuid":"ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","privateLinkServiceConnections":[{"name":"testpec000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006","etag":"W/\"7504da1a-07ce-4bc1-8581-15feafc570f9\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","groupIds":["searchService"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.46d875ba-3871-47a8-ad53-98a72b1f48b5"}],"customDnsConfigs":[{"fqdn":"test000002.search.windows.net","ipAddresses":["10.0.0.4"]}]}}' + string: '{"name":"testpe000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005","etag":"W/\"f9551615-be34-4dc3-86a7-c92307f3e48c\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2euap","properties":{"provisioningState":"Succeeded","resourceGuid":"6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","privateLinkServiceConnections":[{"name":"testpec000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005/privateLinkServiceConnections/testpec000006","etag":"W/\"f9551615-be34-4dc3-86a7-c92307f3e48c\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","groupIds":["searchService"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/virtualNetworks/vnet000003/subnets/subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/networkInterfaces/testpe000005.nic.f958eadd-37bf-45d3-8a7d-9f64453308c4"}],"customDnsConfigs":[{"fqdn":"test000002.search.windows.net","ipAddresses":["10.0.0.4"]}]}}' headers: cache-control: - no-cache @@ -1751,9 +2076,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:42 GMT + - Fri, 12 Sep 2025 06:29:36 GMT etag: - - W/"7504da1a-07ce-4bc1-8581-15feafc570f9" + - W/"f9551615-be34-4dc3-86a7-c92307f3e48c" expires: - '-1' pragma: @@ -1765,14 +2090,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f235437-fd3b-4ebe-8eb3-3847dd06e8ff + - c1e77c7b-34b4-467e-bf55-6f854d8b0e25 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9F9AE181C8A343B18C9136C837916753 Ref B: TYO201100113029 Ref C: 2024-07-12T02:53:42Z' + - 'Ref A: 0AA6B21FBEAF454B9308A2349A09F47C Ref B: MWH011020806036 Ref C: 2025-09-12T06:29:36Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1787,42 +2112,41 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","etag":null,"location":null,"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.374Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '1456' + - '1715' content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:44 GMT + - Fri, 12 Sep 2025 06:29:36 GMT elapsed-time: - - '163' + - '71' etag: - - W/"datetime'2024-07-12T02%3A53%3A22.4246888Z'" + - W/"datetime'2025-09-12T06%3A29%3A16.5364243Z'" expires: - '-1' pragma: - no-cache request-id: - - f3bbc5e4-3ff9-11ef-817f-a8b13b7de2fa + - d9df5637-8fa1-11f0-9ed4-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C2F6B7E0F46C43618F29C58CE29B0637 Ref B: TYO201100117019 Ref C: 2024-07-12T02:53:43Z' + - 'Ref A: 0DE3677454B2442E8FCF5438B0DF0B7C Ref B: CO6AA3150220047 Ref C: 2025-09-12T06:29:36Z' status: code: 200 message: OK @@ -1840,12 +2164,12 @@ interactions: ParameterSetName: - -g --service-name User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections?api-version=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"nextLink":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -1854,25 +2178,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:45 GMT + - Fri, 12 Sep 2025 06:29:36 GMT elapsed-time: - - '70' + - '25' expires: - '-1' pragma: - no-cache request-id: - - f4b64509-3ff9-11ef-9226-a8b13b7de2fa + - da11ca01-8fa1-11f0-ae54-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/7c308583-d6af-497d-a35a-1c1cfc43318a + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D517EF715CA647C6A7F1E3DAB9F88AC3 Ref B: TYO201100116039 Ref C: 2024-07-12T02:53:45Z' + - 'Ref A: 834186295CF149F7883ACC7B198389F9 Ref B: CO6AA3150217035 Ref C: 2025-09-12T06:29:36Z' status: code: 200 message: OK @@ -1890,12 +2216,12 @@ interactions: ParameterSetName: - --name -g --service-name User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-approved","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: - no-cache @@ -1904,25 +2230,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:47 GMT + - Fri, 12 Sep 2025 06:29:36 GMT elapsed-time: - - '62' + - '25' expires: - '-1' pragma: - no-cache request-id: - - f5b2d71d-3ff9-11ef-8423-a8b13b7de2fa + - da4a7310-8fa1-11f0-82b7-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/f502977a-35d0-4288-b3e4-1a3ad04ad407 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A40124AD85244CF88969939C158E014F Ref B: TYO201100113017 Ref C: 2024-07-12T02:53:47Z' + - 'Ref A: 109F75B6C547493A9B26AA5662F95E80 Ref B: MWH011020806023 Ref C: 2025-09-12T06:29:37Z' status: code: 200 message: OK @@ -1945,12 +2273,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -1960,27 +2288,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:50 GMT + - Fri, 12 Sep 2025 06:29:38 GMT elapsed-time: - - '1874' + - '387' expires: - '-1' pragma: - no-cache request-id: - - f69df866-3ff9-11ef-8f9f-a8b13b7de2fa + - da828164-8fa1-11f0-8ee3-683421896a24 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=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/be72938c-3c2f-4c3e-9b3c-1f1a0a2f0187 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 42B5C3C25E5747C5A8BA592BFF7D93E7 Ref B: TYO201151001062 Ref C: 2024-07-12T02:53:48Z' + - 'Ref A: 1EF84D805F14435290F7A049D6E1E7A2 Ref B: MWH011020808031 Ref C: 2025-09-12T06:29:37Z' status: code: 200 message: OK @@ -2003,12 +2333,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Pending + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Pending by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2018,27 +2348,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:53 GMT + - Fri, 12 Sep 2025 06:29:38 GMT elapsed-time: - - '905' + - '460' expires: - '-1' pragma: - no-cache request-id: - - f89f6dee-3ff9-11ef-a43b-a8b13b7de2fa + - db7b9a0b-8fa1-11f0-a55d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/ce57f0e0-d58e-45af-9d0f-3a8f058ef4ed x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 6307D9FA1F0D4D6B9805A2627F4D6225 Ref B: TYO201151004029 Ref C: 2024-07-12T02:53:51Z' + - 'Ref A: 5FC648D70CF646DE850FA4B05880A1EA Ref B: CO6AA3150217031 Ref C: 2025-09-12T06:29:39Z' status: code: 200 message: OK @@ -2061,12 +2393,12 @@ interactions: ParameterSetName: - --service-name -g --name --status --description --actions-required User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved by test","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2076,27 +2408,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:56 GMT + - Fri, 12 Sep 2025 06:29:39 GMT elapsed-time: - - '888' + - '353' expires: - '-1' pragma: - no-cache request-id: - - fa2b2035-3ff9-11ef-84b4-a8b13b7de2fa + - dbf74b6c-8fa1-11f0-9ca9-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/90266a48-db06-4380-a40f-1622c742a2ae x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 41B2691808AA45719CAC0B039CC31D81 Ref B: TYO201151005009 Ref C: 2024-07-12T02:53:54Z' + - 'Ref A: F45A34CD5D444C32A74E097A74A05C4C Ref B: CO6AA3150218035 Ref C: 2025-09-12T06:29:39Z' status: code: 200 message: OK @@ -2116,12 +2450,12 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","name":"testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Disconnected","description":"Remove + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","name":"testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6","type":"Microsoft.Search/searchServices/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Network/privateEndpoints/testpe000005"},"privateLinkServiceConnectionState":{"status":"Disconnected","description":"Remove request from customer.","actionsRequired":"None"},"provisioningState":"Succeeded","groupId":"searchService"}}' headers: cache-control: @@ -2131,27 +2465,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:53:59 GMT + - Fri, 12 Sep 2025 06:29:41 GMT elapsed-time: - - '1617' + - '884' expires: - '-1' pragma: - no-cache request-id: - - fb9c2da9-3ff9-11ef-ab10-a8b13b7de2fa + - dc64f051-8fa1-11f0-897d-683421896a24 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=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/0db08634-e359-4d08-b7e4-edf14c6bec00 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 09C7B43C559941A28C6C5ADA9921266E Ref B: TYO201151003011 Ref C: 2024-07-12T02:53:56Z' + - 'Ref A: 9081E6815D8440898538C625B39366AF Ref B: CO6AA3150220023 Ref C: 2025-09-12T06:29:40Z' status: code: 200 message: OK @@ -2169,16 +2505,16 @@ interactions: ParameterSetName: - --name -g --service-name User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections/testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/privateEndpointConnections/testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6?api-version=2022-09-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"Could not find private - endpoint connection ''testpe000005.ebb0acc0-ad4a-4967-951c-ab5cdede5a2c'' - in subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', resourceGroupName + endpoint connection ''testpe000005.6bdad5b5-8a28-443e-b66b-ba4e8e04adf6'' + in subscription ''a4337210-c6b0-4de4-907a-688f1c120d9a'', resourceGroupName ''azure_search_cli_test000001'', searchService ''test000002''. RequestId: - 5f6d7917-a7ba-4b05-9521-3edd33278a3e","target":null,"details":null}}' + db925640-a117-43f8-a241-f6d30449541a","target":null,"details":null}}' headers: cache-control: - no-store, no-cache @@ -2189,25 +2525,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:54:00 GMT + - Fri, 12 Sep 2025 06:29:42 GMT elapsed-time: - - '103' + - '28' expires: - '-1' pragma: - no-cache request-id: - - fd83ffdb-3ff9-11ef-b799-a8b13b7de2fa + - dd7d0535-8fa1-11f0-8066-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/d41e979a-ea71-487c-bf31-07f6ce165295 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FB83245217254822BECFC84ABC8EF227 Ref B: TYO201100116045 Ref C: 2024-07-12T02:54:00Z' + - 'Ref A: 7E38589DD8FE4D499BA619F3026596F4 Ref B: CO6AA3150219035 Ref C: 2025-09-12T06:29:42Z' status: code: 404 message: Not Found @@ -2225,7 +2563,7 @@ interactions: ParameterSetName: - -g --service-name User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/privateEndpointConnections?api-version=2022-09-01 response: @@ -2239,25 +2577,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 12 Jul 2024 02:54:02 GMT + - Fri, 12 Sep 2025 06:29:43 GMT elapsed-time: - - '72' + - '40' expires: - '-1' pragma: - no-cache request-id: - - fe7dcc72-3ff9-11ef-b5dc-a8b13b7de2fa + - ddb4f748-8fa1-11f0-8026-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/9234da9b-6b50-4685-9c2e-4ea67fb4506f + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9A9820E160E34433BA04AC23A1A2BFA3 Ref B: TYO201100114039 Ref C: 2024-07-12T02:54:01Z' + - 'Ref A: 745027F178754FD68CE7E640F8336261 Ref B: CO6AA3150218017 Ref C: 2025-09-12T06:29:42Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml index 182b943c535..ecb343fb0d8 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_query_key_create_delete_list.yaml @@ -1298,7 +1298,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000003?api-version=2024-11-01 response: body: - string: '{"name":"test000003","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}' + string: '{"name":"test000003","key":"{}"}' headers: cache-control: - no-cache @@ -1350,7 +1350,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2024-11-01 response: body: - string: '{"value":[{"name":null,"key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"},{"name":"test000003","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"{}"},{"name":"test000003","key":"{}"}],"nextLink":null}' headers: cache-control: - no-cache @@ -1402,7 +1402,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/createQueryKey/test000004?api-version=2024-11-01 response: body: - string: '{"name":"test000004","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}' + string: '{"name":"test000004","key":"{}"}' headers: cache-control: - no-cache @@ -1454,7 +1454,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2024-11-01 response: body: - string: '{"value":[{"name":null,"key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"},{"name":"test000003","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"},{"name":"test000004","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"{}"},{"name":"test000003","key":"{}"},{"name":"test000004","key":"{}"}],"nextLink":null}' headers: cache-control: - no-cache @@ -1554,7 +1554,7 @@ interactions: uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002/listQueryKeys?api-version=2024-11-01 response: body: - string: '{"value":[{"name":null,"key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"},{"name":"test000004","key":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}],"nextLink":null}' + string: '{"value":[{"name":null,"key":"{}"},{"name":"test000004","key":"{}"}],"nextLink":null}' headers: cache-control: - no-cache diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml index 5d0a3613970..523c3f052d0 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_auth.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_auth","date":"2025-05-16T05:57:06Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_auth","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 05:57:11 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,1947 +38,75 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5DB45D0E49814A59AA6C6B991B9EA4A5 Ref B: TYO201100114047 Ref C: 2025-05-16T05:57:11Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"disableLocalAuth": true, "hostingMode": - "default", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": - 1}, "sku": {"name": "basic"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '195' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:57:20 GMT - elapsed-time: - - '6154' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/42332d8b-c954-450e-ae0e-196e709f0993 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 519667CD35F0400798D82A1FE0DE0524 Ref B: TYO201100115035 Ref C: 2025-05-16T05:57:12Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:57:21 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B4625DC40BCD4BAF9A4E717F08B7BF07 Ref B: TYO201100115035 Ref C: 2025-05-16T05:57:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:57:53 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81C8E538F04646109433F65765E8C80B Ref B: TYO201100115035 Ref C: 2025-05-16T05:57:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:58:24 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 082CC3C73A7543659DE4364DD506F812 Ref B: TYO201100115035 Ref C: 2025-05-16T05:58:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:58:55 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 3675E3C965E64418930F1112A74E91E2 Ref B: TYO201100115035 Ref C: 2025-05-16T05:58:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:59:26 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2ED02B3B46514CC0947883FE45742A94 Ref B: TYO201100115035 Ref C: 2025-05-16T05:59:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 05:59:57 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD1D14E6E70B4AEA802C8096AAB3ABF0 Ref B: TYO201100115035 Ref C: 2025-05-16T05:59:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:00:28 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8A52CEEF94754CCC8C9BAAE319E422D6 Ref B: TYO201100115035 Ref C: 2025-05-16T06:00:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:01:00 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B86D0B65A0EE4844A518118B7482736D Ref B: TYO201100115035 Ref C: 2025-05-16T06:01: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:01:31 GMT - elapsed-time: - - '95' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B997CC49D16540F8AD1E426131CF446E Ref B: TYO201100115035 Ref C: 2025-05-16T06:01: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:02:02 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ADAA72EBAA6A479699BE2F891B5C8F1B Ref B: TYO201100115035 Ref C: 2025-05-16T06: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:02:33 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 93A727F2C24A4F04B421BC389AC94185 Ref B: TYO201100115035 Ref C: 2025-05-16T06: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:03:05 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E3C3194368154501873D641EC7BD88F9 Ref B: TYO201100115035 Ref C: 2025-05-16T06:03: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:03:37 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3791C470E8E54A69B7A78786014D0F29 Ref B: TYO201100115035 Ref C: 2025-05-16T06:03: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:04:08 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DF447B1B4CFC46198DB5FE926A96686D Ref B: TYO201100115035 Ref C: 2025-05-16T06:04:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:04:39 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 77258CECFF82498FA92C192254F47E1F Ref B: TYO201100115035 Ref C: 2025-05-16T06:04: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:05:11 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5ED85D752DC34B7DBA12468799452916 Ref B: TYO201100115035 Ref C: 2025-05-16T06:05: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:05:42 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 533CECCE81D14E17A328A2981372C933 Ref B: TYO201100115035 Ref C: 2025-05-16T06:05: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:06:13 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 53E1BEB88D324E059A69EC27E424C8AC Ref B: TYO201100115035 Ref C: 2025-05-16T06:06: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:06:45 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AAA020BA5BDD451388107EAF8ACCA220 Ref B: TYO201100115035 Ref C: 2025-05-16T06:06: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:07:16 GMT - elapsed-time: - - '109' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C4194F3891674EEEB2A1885E2E8E7519 Ref B: TYO201100115035 Ref C: 2025-05-16T06:07: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:07:47 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4CAFBD7EB9E84567856C0B4D048DE521 Ref B: TYO201100115035 Ref C: 2025-05-16T06:07: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:08:19 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1A60C78A49E94A13AEA006142049D143 Ref B: TYO201100115035 Ref C: 2025-05-16T06:08:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:08:50 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EE897FB1293A4B2CB47DB9D6C842D282 Ref B: TYO201100115035 Ref C: 2025-05-16T06:08:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:09:21 GMT - elapsed-time: - - '101' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 069612B2BE0A420391EDE447AB1E65C1 Ref B: TYO201100115035 Ref C: 2025-05-16T06:09:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:09:52 GMT - elapsed-time: - - '93' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 73AAE4DCBE4F4158B2B05173DC85FA90 Ref B: TYO201100115035 Ref C: 2025-05-16T06:09:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:10:23 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 31DBBCCF29C34ED9A3566DD4BA29D229 Ref B: TYO201100115035 Ref C: 2025-05-16T06:10:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:10:54 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6F533F0A1040470F854EBFA364671342 Ref B: TYO201100115035 Ref C: 2025-05-16T06:10:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:11:26 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3BC73F21786C482790FEB92A1EB52AF2 Ref B: TYO201100115035 Ref C: 2025-05-16T06:11:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:11:57 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0D9808A9EE76491081B2221F11768C26 Ref B: TYO201100115035 Ref C: 2025-05-16T06:11:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:12:28 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7A4CF86080674AEA819EE224E0C2A696 Ref B: TYO201100115035 Ref C: 2025-05-16T06:12:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:13:00 GMT - elapsed-time: - - '88' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CC9F335348AB48DCA1EAC95C6A74F269 Ref B: TYO201100115035 Ref C: 2025-05-16T06:12: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:13:31 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F5E1B2F0AC4F48E3875A6D4587124C43 Ref B: TYO201100115035 Ref C: 2025-05-16T06:13: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:14:02 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8CC71368B1794A769D90FDD5451B5B70 Ref B: TYO201100115035 Ref C: 2025-05-16T06:14: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:14:33 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 28897AC6A80F4B298FAF0794838A32E4 Ref B: TYO201100115035 Ref C: 2025-05-16T06:14: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 --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:15:05 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8C24D04A80EB432089CD5DDF7F909106 Ref B: TYO201100115035 Ref C: 2025-05-16T06:15:04Z' + - 'Ref A: 56CEE9E7EEB34D6680C958DD76770969 Ref B: CO6AA3150217017 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"disableLocalAuth": true, "hostingMode": + "default", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1}, "sku": {"name": "basic"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive + Content-Length: + - '195' + Content-Type: + - application/json ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:15:36 GMT + - Fri, 12 Sep 2025 01:19:04 GMT elapsed-time: - - '80' + - '8678' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/4c3b37a2-c071-4994-a609-73826b7aee71 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E8DE4EEE7EF344019F4DD101AC5862A6 Ref B: TYO201100115035 Ref C: 2025-05-16T06:15:36Z' + - 'Ref A: 4AA9672AF7A74D559D7F35438D197161 Ref B: MWH011020807029 Ref C: 2025-09-12T01:18:54Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1993,31 +121,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:16:07 GMT + - Fri, 12 Sep 2025 01:19:05 GMT elapsed-time: - - '70' + - '57' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2025,9 +153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 17A719BA24F6453CA1C94E7408BACC45 Ref B: TYO201100115035 Ref C: 2025-05-16T06:16:07Z' + - 'Ref A: 2235789C3A814B278A1782F37E201BE8 Ref B: CO6AA3150217035 Ref C: 2025-09-12T01:19:05Z' status: code: 200 message: OK @@ -2045,31 +173,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:16:39 GMT + - Fri, 12 Sep 2025 01:19:35 GMT elapsed-time: - - '68' + - '72' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2077,9 +205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 980CA677628C4CA28516529DF6452B18 Ref B: TYO201100115035 Ref C: 2025-05-16T06:16:38Z' + - 'Ref A: 49217BE888854DEB9B5A664B31BA29D3 Ref B: CO6AA3150217053 Ref C: 2025-09-12T01:19:35Z' status: code: 200 message: OK @@ -2097,41 +225,41 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:17:10 GMT + - Fri, 12 Sep 2025 01:20:06 GMT elapsed-time: - - '71' + - '72' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 2105832DFF1546969676A8DF2A6F8E6C Ref B: TYO201100115035 Ref C: 2025-05-16T06:17:10Z' + - 'Ref A: CE3EC607C577434B97FC85A8B36FD1B5 Ref B: MWH011020808060 Ref C: 2025-09-12T01:20:05Z' status: code: 200 message: OK @@ -2149,41 +277,41 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:17:41 GMT + - Fri, 12 Sep 2025 01:20:36 GMT elapsed-time: - - '82' + - '60' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 84C2BF2E97E34F32AD81C8D9C1BBA00F Ref B: TYO201100115035 Ref C: 2025-05-16T06:17:41Z' + - 'Ref A: B03369549ED447289F9257D202ABDF81 Ref B: CO6AA3150218029 Ref C: 2025-09-12T01:20:36Z' status: code: 200 message: OK @@ -2201,31 +329,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:18:13 GMT + - Fri, 12 Sep 2025 01:21:07 GMT elapsed-time: - - '78' + - '61' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2233,9 +361,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9A4DA8F324AC4D14B4A324578F630232 Ref B: TYO201100115035 Ref C: 2025-05-16T06:18:12Z' + - 'Ref A: 0E605035667E467B8A4F13873BDAD93F Ref B: MWH011020806062 Ref C: 2025-09-12T01:21:06Z' status: code: 200 message: OK @@ -2253,31 +381,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:18:44 GMT + - Fri, 12 Sep 2025 01:21:37 GMT elapsed-time: - - '89' + - '67' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2285,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6085D010442C4B09A95E0F855F37468E Ref B: TYO201100115035 Ref C: 2025-05-16T06:18:43Z' + - 'Ref A: 96E5E6F098444C56BBC80554E4CE5E68 Ref B: CO6AA3150219027 Ref C: 2025-09-12T01:21:37Z' status: code: 200 message: OK @@ -2305,31 +433,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:19:15 GMT + - Fri, 12 Sep 2025 01:22:07 GMT elapsed-time: - - '71' + - '107' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2337,9 +465,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C02C62DD869341B58977ECEF1F12135E Ref B: TYO201100115035 Ref C: 2025-05-16T06:19:15Z' + - 'Ref A: 64FA2EF438E24AC8BD7B717217F358CB Ref B: MWH011020808040 Ref C: 2025-09-12T01:22:07Z' status: code: 200 message: OK @@ -2357,31 +485,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:19:46 GMT + - Fri, 12 Sep 2025 01:22:38 GMT elapsed-time: - - '82' + - '76' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2389,9 +517,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 530AE1AC080C441482C76BDAD61935F6 Ref B: TYO201100115035 Ref C: 2025-05-16T06:19:46Z' + - 'Ref A: 8B9C0CC96F4F423787CD3804CDE62D9A Ref B: MWH011020809062 Ref C: 2025-09-12T01:22:38Z' status: code: 200 message: OK @@ -2409,31 +537,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:20:17 GMT + - Fri, 12 Sep 2025 01:23:08 GMT elapsed-time: - - '75' + - '59' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2441,9 +569,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3CFB7F6E932343C89DAB4C579666A4E4 Ref B: TYO201100115035 Ref C: 2025-05-16T06:20:17Z' + - 'Ref A: 39C0A04199C440D09BDC9C125685D9A3 Ref B: CO6AA3150218031 Ref C: 2025-09-12T01:23:08Z' status: code: 200 message: OK @@ -2461,145 +589,41 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:20:49 GMT + - Fri, 12 Sep 2025 01:23:38 GMT elapsed-time: - '70' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: D7B9664B1CB444B1B7742BF94641E680 Ref B: TYO201100115035 Ref C: 2025-05-16T06:20:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:21:20 GMT - elapsed-time: - - '102' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 644AE8C237FE479C91CB235D3688B29E Ref B: TYO201100115035 Ref C: 2025-05-16T06:21:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:21:51 GMT - elapsed-time: - - '136' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 354A6C549AB6489696FEBEC7F2F86655 Ref B: TYO201100115035 Ref C: 2025-05-16T06:21:51Z' + - 'Ref A: BB74E19DB87E4064807522C5825BB368 Ref B: MWH011020807023 Ref C: 2025-09-12T01:23:39Z' status: code: 200 message: OK @@ -2617,31 +641,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:22:22 GMT + - Fri, 12 Sep 2025 01:24:09 GMT elapsed-time: - - '72' + - '67' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2649,9 +673,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 511127C209B2418CABF96B611E38AD0C Ref B: TYO201100115035 Ref C: 2025-05-16T06:22:22Z' + - 'Ref A: 836D81B937EB42828558031B0C859EC3 Ref B: MWH011020807042 Ref C: 2025-09-12T01:24:09Z' status: code: 200 message: OK @@ -2669,31 +693,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:22:53 GMT + - Fri, 12 Sep 2025 01:24:39 GMT elapsed-time: - - '76' + - '69' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2701,9 +725,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8B10B67D51604AFBB8B1112B3AAE12F1 Ref B: TYO201100115035 Ref C: 2025-05-16T06:22:53Z' + - 'Ref A: BC10C21C57464AF8BEF1302523B2E983 Ref B: CO6AA3150217053 Ref C: 2025-09-12T01:24:40Z' status: code: 200 message: OK @@ -2721,31 +745,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:23:24 GMT + - Fri, 12 Sep 2025 01:25:11 GMT elapsed-time: - - '78' + - '60' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2753,9 +777,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: D3B4EF37F496446993B2EB178243C3B6 Ref B: TYO201100115035 Ref C: 2025-05-16T06:23:24Z' + - 'Ref A: 356E7388511A4479A753655BEF62743C Ref B: MWH011020809040 Ref C: 2025-09-12T01:25:10Z' status: code: 200 message: OK @@ -2773,31 +797,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:23:56 GMT + - Fri, 12 Sep 2025 01:25:41 GMT elapsed-time: - - '70' + - '63' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2805,9 +829,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6EE41BCC93A94CA68C20216962FE0807 Ref B: TYO201100115035 Ref C: 2025-05-16T06:23:55Z' + - 'Ref A: BD57453E61AD45AD917E19602333A0A4 Ref B: CO6AA3150218035 Ref C: 2025-09-12T01:25:41Z' status: code: 200 message: OK @@ -2825,83 +849,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:24:27 GMT + - Fri, 12 Sep 2025 01:26:11 GMT elapsed-time: - '65' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 27256360AAA64925A67F0038CA298C29 Ref B: TYO201100115035 Ref C: 2025-05-16T06:24:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --disable-local-auth - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:24:58 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2909,9 +881,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 50423029DA2343CBBA75B8E776EED21E Ref B: TYO201100115035 Ref C: 2025-05-16T06:24:58Z' + - 'Ref A: AC15BAF9B0814589A5624C19387CDF1B Ref B: CO6AA3150219045 Ref C: 2025-09-12T01:26:12Z' status: code: 200 message: OK @@ -2929,31 +901,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:25:34 GMT + - Fri, 12 Sep 2025 01:26:42 GMT elapsed-time: - - '75' + - '63' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2961,9 +933,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5FD7080081D44B42A66FE5380C9A8191 Ref B: TYO201100115035 Ref C: 2025-05-16T06:25:34Z' + - 'Ref A: 492006CBE0284C77831182ECAA599D1E Ref B: MWH011020808034 Ref C: 2025-09-12T01:26:42Z' status: code: 200 message: OK @@ -2981,31 +953,31 @@ interactions: ParameterSetName: - -n -g --sku --disable-local-auth User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null,"semanticSearch":"free"},"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":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '725' + - '946' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:08 GMT + - Fri, 12 Sep 2025 01:39:50 GMT elapsed-time: - - '61' + - '69' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - 9b1412a4-321a-11f0-aaab-644ed7a2823f + - 7263e9b8-8f76-11f0-a3d5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3013,9 +985,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: FC92EE7B84D34F5BB6EF3E3CE367DB87 Ref B: TYO201100115035 Ref C: 2025-05-16T06:26:08Z' + - 'Ref A: AEE1B50680E44E729656DC3F61D32417 Ref B: MWH011020809040 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK @@ -3033,51 +1005,51 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":true,"authOptions":null},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":true,"authOptions":null,"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '701' + - '946' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:10 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '85' + - '69' etag: - - W/"datetime'2025-05-16T05%3A57%3A21.1452597Z'" + - W/"datetime'2025-09-12T01%3A19%3A04.8694848Z'" expires: - '-1' pragma: - no-cache request-id: - - a77b47a9-321e-11f0-9e9f-644ed7a2823f + - 5fced239-8f79-11f0-bebe-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 93D6BA33562549849B002A8DD092949B Ref B: TYO201151001036 Ref C: 2025-05-16T06:26:10Z' + - 'Ref A: 481FCB6820AC4A31A47F6A2FF1BA821E Ref B: MWH011020808052 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK - request: body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": - 1, "publicNetworkAccess": "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}, - "tags": {}}' + {}}, "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": + 1, "semanticSearch": "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": + "basic"}, "tags": {}}' headers: Accept: - application/json @@ -3088,38 +1060,37 @@ interactions: Connection: - keep-alive Content-Length: - - '334' + - '431' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '960' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:11 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '205' + - '160' etag: - - W/"datetime'2025-05-16T06%3A26%3A11.7135366Z'" + - W/"datetime'2025-09-12T01%3A39%3A52.8249376Z'" expires: - '-1' pragma: - no-cache request-id: - - a77b47a9-321e-11f0-9e9f-644ed7a2823f + - 5fced239-8f79-11f0-bebe-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3127,13 +1098,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0be558df-9d03-4239-a989-47e80d493ff3 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/ee6c4171-7e65-491c-95e5-76a780353ddd x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 5A551C76A7DA48968F7D8BC097966C27 Ref B: TYO201151001036 Ref C: 2025-05-16T06:26:11Z' + - 'Ref A: 9FF61EE86F2248A7944D0D5603DCDD27 Ref B: MWH011020808060 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK @@ -3151,32 +1122,31 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '960' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:13 GMT + - Fri, 12 Sep 2025 01:39:53 GMT elapsed-time: - - '114' + - '63' etag: - - W/"datetime'2025-05-16T06%3A26%3A11.7135366Z'" + - W/"datetime'2025-09-12T01%3A39%3A52.8249376Z'" expires: - '-1' pragma: - no-cache request-id: - - a91219a2-321e-11f0-88cf-644ed7a2823f + - 60c193dc-8f79-11f0-b045-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3184,18 +1154,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9307F25E82034B95921FD97F73708F6D Ref B: TYO201100115021 Ref C: 2025-05-16T06:26:13Z' + - 'Ref A: C88B1847129A4FF1864F9C7B4053BA3B Ref B: CO6AA3150218019 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK - request: body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"aadOrApiKey": - {"aadAuthFailureMode": "http401WithBearerChallenge"}}, "disableLocalAuth": false, - "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", - "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": - "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}, "tags": {}}' + {"aadAuthFailureMode": "http401WithBearerChallenge"}}, "dataExfiltrationProtections": + [], "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "Enabled", "replicaCount": 1, "semanticSearch": "free", + "upgradeAvailable": "notAvailable"}, "sku": {"name": "basic"}, "tags": {}}' headers: Accept: - application/json @@ -3206,38 +1177,37 @@ interactions: Connection: - keep-alive Content-Length: - - '385' + - '482' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '765' + - '1010' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:14 GMT + - Fri, 12 Sep 2025 01:39:54 GMT elapsed-time: - - '161' + - '157' etag: - - W/"datetime'2025-05-16T06%3A26%3A15.3139471Z'" + - W/"datetime'2025-09-12T01%3A39%3A54.3712584Z'" expires: - '-1' pragma: - no-cache request-id: - - a91219a2-321e-11f0-88cf-644ed7a2823f + - 60c193dc-8f79-11f0-b045-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3245,13 +1215,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8ccf2ea1-aad1-4c04-a61f-8eed82511373 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/a672cce0-e869-4d5c-8589-6b7b3884af29 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E25FE0D867E24B1F890F504117346D38 Ref B: TYO201100115021 Ref C: 2025-05-16T06:26:14Z' + - 'Ref A: C4D9C1068704457A8A8C4A7E15B15B4A Ref B: CO6AA3150218009 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK @@ -3269,51 +1239,51 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}}},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http401WithBearerChallenge"}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '765' + - '1010' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:16 GMT + - Fri, 12 Sep 2025 01:39:54 GMT elapsed-time: - - '65' + - '69' etag: - - W/"datetime'2025-05-16T06%3A26%3A15.3139471Z'" + - W/"datetime'2025-09-12T01%3A39%3A54.3712584Z'" expires: - '-1' pragma: - no-cache request-id: - - ab0a1a14-321e-11f0-af00-644ed7a2823f + - 61ae77d9-8f79-11f0-a9ee-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 66618C2464F64D29BCFBA662AB8DA6AE Ref B: TYO201100113019 Ref C: 2025-05-16T06:26:16Z' + - 'Ref A: 9D3FE2870A3D43438E08E85DA5B44081 Ref B: CO6AA3150220039 Ref C: 2025-09-12T01:39:54Z' status: code: 200 message: OK - request: body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"aadOrApiKey": - {"aadAuthFailureMode": "http403"}}, "disableLocalAuth": false, "encryptionWithCmk": - {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": - {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": - 1}, "sku": {"name": "basic"}, "tags": {}}' + {"aadAuthFailureMode": "http403"}}, "dataExfiltrationProtections": [], "disableLocalAuth": + false, "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", + "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1, "semanticSearch": "free", "upgradeAvailable": + "notAvailable"}, "sku": {"name": "basic"}, "tags": {}}' headers: Accept: - application/json @@ -3324,38 +1294,37 @@ interactions: Connection: - keep-alive Content-Length: - - '366' + - '463' Content-Type: - application/json ParameterSetName: - -n -g --disable-local-auth --auth-options --aad-auth-failure-mode User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http403"}}},"sku":{"name":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"aadOrApiKey":{"aadAuthFailureMode":"http403"}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.866Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '746' + - '991' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:17 GMT + - Fri, 12 Sep 2025 01:39:54 GMT elapsed-time: - - '172' + - '157' etag: - - W/"datetime'2025-05-16T06%3A26%3A18.6964546Z'" + - W/"datetime'2025-09-12T01%3A39%3A55.4537815Z'" expires: - '-1' pragma: - no-cache request-id: - - ab0a1a14-321e-11f0-af00-644ed7a2823f + - 61ae77d9-8f79-11f0-a9ee-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3363,13 +1332,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/fbb3d6c7-025c-44db-ba6d-9e2ea8334630 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/3d4f20c9-3696-4f90-9bf4-817a0436596d x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9C927A24F18941CEB2AB4D4256DBC462 Ref B: TYO201100113019 Ref C: 2025-05-16T06:26:17Z' + - 'Ref A: 0885CB0321564CBAA8B7BC7A1151D4B7 Ref B: CO6AA3150219023 Ref C: 2025-09-12T01:39:55Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_compute_type.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_compute_type.yaml new file mode 100644 index 00000000000..8bb23b9a8ed --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_compute_type.yaml @@ -0,0 +1,1150 @@ +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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_compute_type","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '397' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:18:53 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: 89CB328C0E484160B684C9CDDF15E47B Ref B: CO6AA3150218049 Ref C: 2025-09-12T01:18:54Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"computeType": "default", "hostingMode": + "default", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1}, "sku": {"name": "basic"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '195' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --replica-count --partition-count --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:02 GMT + elapsed-time: + - '7227' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/096dcb08-bdf4-448f-9057-6917095b41e1 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 018D3B1A7EC4404E9BCF265C0F6F4F7F Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:18:54Z' + 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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:03 GMT + elapsed-time: + - '94' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: FB8C79E57E964C3B9FCEC990AE7985A4 Ref B: MWH011020808040 Ref C: 2025-09-12T01:19: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:33 GMT + elapsed-time: + - '61' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 7EA60D2F36684E5BB1D12EC00AF439BA Ref B: CO6AA3150220019 Ref C: 2025-09-12T01:19: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:04 GMT + elapsed-time: + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 428646801BAC44C38A6936CDFCB45258 Ref B: MWH011020806023 Ref C: 2025-09-12T01:20: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:34 GMT + elapsed-time: + - '60' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 6B5FBC4057FA46E382CA3128DAA65705 Ref B: MWH011020806023 Ref C: 2025-09-12T01:20: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:05 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: D2A418B9EE5F4AAF977A9090D37C7F75 Ref B: CO6AA3150220031 Ref C: 2025-09-12T01:21: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:35 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 10C4B6F202794E9A8AA7E3794CCA1B38 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:21: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:05 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: E22BE85DA0CD49B894902C5AB4242426 Ref B: MWH011020807036 Ref C: 2025-09-12T01:22: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:36 GMT + elapsed-time: + - '65' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 8B4D563CE14B44058E043C9078C279D0 Ref B: MWH011020807042 Ref C: 2025-09-12T01:22: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:06 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: BEAF73E66AA449C082F57A313F300DB9 Ref B: CO6AA3150218027 Ref C: 2025-09-12T01:23:07Z' + 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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:37 GMT + elapsed-time: + - '83' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: C4D77A430F814635A458B55AB95328F7 Ref B: CO6AA3150217025 Ref C: 2025-09-12T01:23:37Z' + 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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:08 GMT + elapsed-time: + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 13F318590CC144C3A0D9C208FDEE3B1E Ref B: CO6AA3150220021 Ref C: 2025-09-12T01:24: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:38 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: FF2B68E63B23436EA7634908FD95D371 Ref B: MWH011020807025 Ref C: 2025-09-12T01:24: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:09 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 30BE5FA844304A5883639C0B9DB748D4 Ref B: MWH011020808034 Ref C: 2025-09-12T01:25: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:40 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: AB2CDCD74FDE4CE0A3AB729183B7B5E4 Ref B: CO6AA3150218045 Ref C: 2025-09-12T01:25: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:10 GMT + elapsed-time: + - '60' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 8ED8A8D177584F7B8E624F37CBA4A3FA Ref B: CO6AA3150219047 Ref C: 2025-09-12T01:26: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:40 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 283E619A6CCE4E93BAC82F89E26DD59B Ref B: MWH011020808042 Ref C: 2025-09-12T01:26: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:27:11 GMT + elapsed-time: + - '85' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 7F6ABD3F43ED426ABDA9057B0C3011D8 Ref B: CO6AA3150218023 Ref C: 2025-09-12T01:27: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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:39:51 GMT + elapsed-time: + - '65' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: 1D149870F0934AF19CCFB4BB2AACD00A Ref B: MWH011020809042 Ref C: 2025-09-12T01:39:51Z' + 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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:40:22 GMT + elapsed-time: + - '68' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: CA037019563146D8B4909675C534F12E Ref B: CO6AA3150217031 Ref C: 2025-09-12T01:40:22Z' + 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 --compute-type + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.259Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '960' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:28:34 GMT + elapsed-time: + - '85' + etag: + - W/"datetime'2025-09-12T01%3A19%3A03.2654546Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 72796f86-8f76-11f0-868c-683421896a24 + 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: F5B838A25DE14DFE998BAB0FBE4D096B Ref B: CO6AA3150220011 Ref C: 2025-09-12T06:28:34Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_data_exfiltration_protections.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_data_exfiltration_protections.yaml new file mode 100644 index 00000000000..d73ba9d05f6 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_data_exfiltration_protections.yaml @@ -0,0 +1,1046 @@ +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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_data_exfiltration_protections","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '414' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:18:53 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: 71F0D0D09A9045DBBC294316B557C3FD Ref B: CO6AA3150217037 Ref C: 2025-09-12T01:18:54Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"dataExfiltrationProtections": + ["BlockAll"], "hostingMode": "default", "partitionCount": 1, "publicNetworkAccess": + "enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '214' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --replica-count --partition-count --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:02 GMT + elapsed-time: + - '7716' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/d625989b-4df8-494a-aa90-7601fab74b28 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B05C151195034A40904550A4095E9BD9 Ref B: MWH011020808036 Ref C: 2025-09-12T01:18:54Z' + 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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:02 GMT + elapsed-time: + - '62' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 0B2861B7BD33488FB2EA8B31D1036CF8 Ref B: MWH011020808025 Ref C: 2025-09-12T01:19: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:33 GMT + elapsed-time: + - '68' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: B2461A828B344A6A9E2BB8B151D37871 Ref B: CO6AA3150217009 Ref C: 2025-09-12T01:19: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:04 GMT + elapsed-time: + - '87' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 39EBF482FA09492986C77B358423CE22 Ref B: MWH011020807034 Ref C: 2025-09-12T01:20: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:33 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 556022233DD248EBA3DFB5D07EC7F9D4 Ref B: MWH011020806042 Ref C: 2025-09-12T01:20: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:04 GMT + elapsed-time: + - '69' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 910AA0E908744462AF1FEC5DC8367B58 Ref B: CO6AA3150217035 Ref C: 2025-09-12T01:21: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:34 GMT + elapsed-time: + - '72' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: DECA2A78AC25405590F83EF6A4047B16 Ref B: MWH011020809054 Ref C: 2025-09-12T01:21: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:05 GMT + elapsed-time: + - '66' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 662C85219EC34C4FBF0C70FE0FBF3650 Ref B: MWH011020808031 Ref C: 2025-09-12T01:22: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:36 GMT + elapsed-time: + - '66' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: CE327F519AA34E0D8836DCEF1D957B84 Ref B: CO6AA3150219019 Ref C: 2025-09-12T01:22: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:07 GMT + elapsed-time: + - '65' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 98F88675F2CC4300932CECD58533B4E0 Ref B: CO6AA3150218047 Ref C: 2025-09-12T01:23: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:36 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 63C0665F2DD24745808C51A31E6119C0 Ref B: CO6AA3150220027 Ref C: 2025-09-12T01:23:37Z' + 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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:07 GMT + elapsed-time: + - '73' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 3037E9FA80CA4689B8BB095F4DAE4E53 Ref B: MWH011020809023 Ref C: 2025-09-12T01:24:07Z' + 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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:37 GMT + elapsed-time: + - '68' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: BD3B2B38ACEF4DDA915F443F3BDBCB1E Ref B: CO6AA3150219031 Ref C: 2025-09-12T01:24: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:08 GMT + elapsed-time: + - '62' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 368169AA6C834FA7B30C09FF13592B16 Ref B: CO6AA3150220025 Ref C: 2025-09-12T01:25: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:38 GMT + elapsed-time: + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: CE79BD85649641D9A1596D06CEEA8E93 Ref B: CO6AA3150219031 Ref C: 2025-09-12T01:25: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:10 GMT + elapsed-time: + - '84' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 5805139F78A543C0899A76AC1378A4C3 Ref B: CO6AA3150217029 Ref C: 2025-09-12T01:26: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:40 GMT + elapsed-time: + - '216' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: 030DB36A4ED54029B24A4EEBFABE2704 Ref B: MWH011020806036 Ref C: 2025-09-12T01:26: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:27:10 GMT + elapsed-time: + - '61' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + 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: BE74F56346084F55BA8B6F1FE0CBC80A Ref B: CO6AA3150217011 Ref C: 2025-09-12T01:27: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 --data-exfiltration-protections + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":["BlockAll"],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.801Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '970' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:39:51 GMT + elapsed-time: + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A02.8059902Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 723076d7-8f76-11f0-8411-683421896a24 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: C395544A45ED40AFAEFEC3AB9D1639E4 Ref B: CO6AA3150217031 Ref C: 2025-09-12T01:39:50Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml index 455911908a6..fd340ff2d1d 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_list.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 response: @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:26:27 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,1845 +38,18 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1AB87D9D13E941C8B67E1F188B5AB3F1 Ref B: TYO01EDGE1809 Ref C: 2025-05-16T06:26:27Z' - 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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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_create_delete_list","date":"2025-05-16T06:26:23Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:26:28 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: - - '3749' - x-msedge-ref: - - 'Ref A: 2F0D4BBFCBEB441AB5A0425DE60EE1A2 Ref B: TYO01EDGE2214 Ref C: 2025-05-16T06:26:29Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:26:39 GMT - elapsed-time: - - '6276' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/12394beb-f490-48e6-8754-5edfd513403d - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: F4401AF72FF5488B943913A7D40FCAD9 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:26:30Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:26:41 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 85393DDE815C46B2BB586EEE2317CA4D Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:26: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:27:12 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D4B99DA2497D4CFF86E14F8A80E24C87 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:27: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:27:43 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AD39405CDE324C68B9AB91794F0C5027 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:27: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:28:14 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9B659409043D4292AA7BBADDCA76270D Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:28: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:28:45 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6C7DF0FB0B974C228DB25697DA453E28 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:28: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:29:16 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1E70F8D38E3A45FB94B79E5199C8158F Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:29: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:29:47 GMT - elapsed-time: - - '80' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 20F017B19D654040BC44C5C78B6A6C76 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:29: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:30:19 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0D3601584EFD439AB15B5B61CFF1AAC8 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:30:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:30:50 GMT - elapsed-time: - - '86' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41902B597E5E476C95F39759721238EE Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:30:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:31:20 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 83B4BEBC8694445FA6BE9E1DAB24FEEF Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:31:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:31:52 GMT - elapsed-time: - - '108' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7BC52B49494546B1AFB78DF7906CD4F2 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:31:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:32:22 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E23E73AA4DC94781A56B692EE46EE775 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:32:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:32:54 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DC642F743BBA4B4BAA4138CA54AA33A7 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:32:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:33:25 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C4279CE4448F4E3E87A66894C1F02C1A Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:33:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:33:56 GMT - elapsed-time: - - '116' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 0579706F1927469B96E9621FD0B60EAE Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:33:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:34:28 GMT - elapsed-time: - - '86' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: A2688C29C3614BB9A74DB884C1D68362 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:34:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:34:59 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 67997576310F404A83D4AD6460533909 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:34:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:35:30 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3563538AE94C498298F91002AC61441A Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:35: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:36:00 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3E3D8903AD5340F29F60531CB8AE424F Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:36: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:36:32 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0DA8DE45712042BA891168D15296CB6E Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:36: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:37:03 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 876FB4698A174782B1873190CCF089D0 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:37: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:37:34 GMT - elapsed-time: - - '80' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8B9057A12391414B83DB34DBEAB85BCE Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:37: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:38:05 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 0DF186B3270846FBA6940590E8FE923D Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:38: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:38:36 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 821EA8310E794B37BFE705847B6F8883 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:38: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:39:09 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AF3982870E6848C8975CC2875911FA05 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:39: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:39:40 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 71C3EC44A533422BA2FBB641ECC1482E Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:39: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:40:11 GMT - elapsed-time: - - '111' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D79F1207BAF24109B443390434696513 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:40: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:40:42 GMT - elapsed-time: - - '106' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 712A531DA61846869AE227C520357CCD Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:40: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:41:14 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9818CA1E17394E909188373615552D1B Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:41: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:41:45 GMT - elapsed-time: - - '100' - etag: - - W/"datetime'2025-05-16T06%3A26%3A39.8710521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - b2abf1ac-321e-11f0-a93b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 842B8AA3666B459EA7E986E86B226F95 Ref B: TYO01EDGE3316 Ref C: 2025-05-16T06:41:44Z' - 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.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-05-16T06%3A26%3A39.8710521Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '788' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:41:47 GMT - elapsed-time: - - '226' - expires: - - '-1' - pragma: - - no-cache - request-id: - - d58c0c89-3220-11f0-8e46-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C0231A5F0E53488EA0AD0DB2FECAC635 Ref B: TYO01EDGE2110 Ref C: 2025-05-16T06:41:46Z' - 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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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_create_delete_list","date":"2025-05-16T06:26:23Z","module":"search","Creator":"test@example.com","DateCreated":"2025-05-16T06:26:30Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '462' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:41:49 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: - - '3749' - x-msedge-ref: - - 'Ref A: F0E89D44B08B42A0BA337D30D76C28D5 Ref B: TYO01EDGE1515 Ref C: 2025-05-16T06:41:48Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:41:59 GMT - elapsed-time: - - '6536' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/a4f0b17f-eb0d-4d85-81ad-2c21bbeb0689 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 38E06A0C9A864F1C991C5418D7249587 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:41:49Z' + - 'Ref A: C6522D47CE7E4D938E02D9A9BAC732A3 Ref B: CO6AA3150220039 Ref C: 2025-09-12T01:18:54Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1886,96 +59,99 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_list","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '750' + - '396' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:42:00 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A433DA12E2D046E6990B6D93AD1DB09B Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:41:59Z' + - 'Ref A: E359B502A0BA49959A57676407F965E1 Ref B: MWH011020806031 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:42:30 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '76' + - '8109' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/b4748430-7447-4570-b8c1-511b03b0533f + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E0CBCB1FDECB4210AC9B0C1466986213 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:42:30Z' + - 'Ref A: 88F455CFFA454335B7E38A3FEC1B67A6 Ref B: MWH011020806052 Ref C: 2025-09-12T01:18:55Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1990,31 +166,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:43:02 GMT + - Fri, 12 Sep 2025 01:19:04 GMT elapsed-time: - - '66' + - '141' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2022,9 +198,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DC7F77EBB30E40E48F1EDC0929BA76EE Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:43:01Z' + - 'Ref A: 5B8C5E0A921448D9BE55CDF6A1EE5970 Ref B: MWH011020809025 Ref C: 2025-09-12T01:19:03Z' status: code: 200 message: OK @@ -2042,31 +218,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:43:33 GMT + - Fri, 12 Sep 2025 01:19:34 GMT elapsed-time: - - '71' + - '62' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2074,9 +250,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4AAC4522E9D746859CCDF344867BDAD1 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:43:32Z' + - 'Ref A: FF2EE24B25AD407DB5A2D4F7200A4DA0 Ref B: MWH011020809042 Ref C: 2025-09-12T01:19:34Z' status: code: 200 message: OK @@ -2094,31 +270,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:44:04 GMT + - Fri, 12 Sep 2025 01:20:04 GMT elapsed-time: - - '65' + - '60' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2126,9 +302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EC449CA44367436B9D95B722C32F895B Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:44:03Z' + - 'Ref A: B495D5FA5D4F46528B921D3F2894A9F7 Ref B: CO6AA3150218045 Ref C: 2025-09-12T01:20:04Z' status: code: 200 message: OK @@ -2146,31 +322,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:44:35 GMT + - Fri, 12 Sep 2025 01:20:35 GMT elapsed-time: - - '82' + - '74' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2178,9 +354,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 41E47F420CF8427FB1FFD1B63A3976CF Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:44:35Z' + - 'Ref A: 40A23880E69E4E46859E6AE576900B47 Ref B: CO6AA3150220023 Ref C: 2025-09-12T01:20:35Z' status: code: 200 message: OK @@ -2198,31 +374,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:45:07 GMT + - Fri, 12 Sep 2025 01:21:06 GMT elapsed-time: - - '77' + - '66' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2230,9 +406,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5AAC157D96E14B9E876D2936097209AD Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:45:06Z' + - 'Ref A: B5418C6940104717895884C2473F5E5B Ref B: MWH011020809062 Ref C: 2025-09-12T01:21:06Z' status: code: 200 message: OK @@ -2250,31 +426,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:45:38 GMT + - Fri, 12 Sep 2025 01:21:37 GMT elapsed-time: - '68' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2282,9 +458,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C0CBB45D37584E2EB3BDDFF27BFA78F6 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:45:37Z' + - 'Ref A: AA2F641DB0A44151ADC81610F1A693E7 Ref B: MWH011020807031 Ref C: 2025-09-12T01:21:36Z' status: code: 200 message: OK @@ -2302,41 +478,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:46:08 GMT + - Fri, 12 Sep 2025 01:22:06 GMT elapsed-time: - - '90' + - '65' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 957C01DCCD4843A99C7D31D972DE2CED Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:46:08Z' + - 'Ref A: 3230EE063AF84C95A9B55163E410798D Ref B: MWH011020807062 Ref C: 2025-09-12T01:22:07Z' status: code: 200 message: OK @@ -2354,31 +530,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:46:40 GMT + - Fri, 12 Sep 2025 01:22:37 GMT elapsed-time: - - '91' + - '62' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2386,9 +562,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 87AED03AA48D45D5B4DC7DC360A6270F Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:46:39Z' + - 'Ref A: E1D23321B25740CC82B7D3CF72029184 Ref B: MWH011020806036 Ref C: 2025-09-12T01:22:37Z' status: code: 200 message: OK @@ -2406,31 +582,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:47:11 GMT + - Fri, 12 Sep 2025 01:23:07 GMT elapsed-time: - - '105' + - '59' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2438,9 +614,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 201312F9CFC9482797ABB43DB2FEAB3D Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:47:10Z' + - 'Ref A: 1682452F9CED4A8890F4F37F2D1394EE Ref B: MWH011020808040 Ref C: 2025-09-12T01:23:08Z' status: code: 200 message: OK @@ -2458,31 +634,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:47:42 GMT + - Fri, 12 Sep 2025 01:23:39 GMT elapsed-time: - - '78' + - '67' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2490,9 +666,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 40DBA900BD184132BB27C5CDEE31EB53 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:47:42Z' + - 'Ref A: 756E8372E8E54BBCB4BC5C1B3346CC8E Ref B: CO6AA3150219039 Ref C: 2025-09-12T01:23:38Z' status: code: 200 message: OK @@ -2510,31 +686,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:48:13 GMT + - Fri, 12 Sep 2025 01:24:09 GMT elapsed-time: - - '61' + - '66' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2542,9 +718,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 989F54109F3144CA9B1354F73EB9882D Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:48:13Z' + - 'Ref A: A35FBA44CFB44E6696882DF2A3398A09 Ref B: MWH011020806062 Ref C: 2025-09-12T01:24:09Z' status: code: 200 message: OK @@ -2562,41 +738,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:48:44 GMT + - Fri, 12 Sep 2025 01:24:39 GMT elapsed-time: - '72' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: BDB35DE770294108B3AA0BB8A5F224FB Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:48:44Z' + - 'Ref A: D2637F79953444FF8290B1AABA1391A2 Ref B: CO6AA3150220035 Ref C: 2025-09-12T01:24:39Z' status: code: 200 message: OK @@ -2614,41 +790,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:49:16 GMT + - Fri, 12 Sep 2025 01:25:09 GMT elapsed-time: - - '65' + - '69' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FF0106EFDF27424DA185A841A8460F1C Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:49:15Z' + - 'Ref A: 129AAC46B1404E4682CB8C7112794BF7 Ref B: MWH011020806040 Ref C: 2025-09-12T01:25:10Z' status: code: 200 message: OK @@ -2666,187 +842,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:49:47 GMT + - Fri, 12 Sep 2025 01:25:40 GMT elapsed-time: - '67' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B17055B4AD7742F9A985C98AF599B2E9 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:49: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:50:18 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 316802F9F38846CFA74AF8C4F1DC6953 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:50:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:50:50 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0A68A90DC4DC4B2B871195AA430B234B Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:50:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 06:51:21 GMT - elapsed-time: - - '99' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2854,9 +874,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1DF47FFC83FB4272A83D0B546971AA15 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:51:21Z' + - 'Ref A: E26B285744BE45929554D0694DBF468C Ref B: MWH011020806054 Ref C: 2025-09-12T01:25:40Z' status: code: 200 message: OK @@ -2874,31 +894,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:51:52 GMT + - Fri, 12 Sep 2025 01:26:11 GMT elapsed-time: - - '175' + - '66' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2906,9 +926,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E31595B5F4364062BB8F479760BA5061 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:51:52Z' + - 'Ref A: E0C8B76713FC49E2BDC0BCE9EA1BE429 Ref B: CO6AA3150220023 Ref C: 2025-09-12T01:26:11Z' status: code: 200 message: OK @@ -2926,31 +946,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:52:23 GMT + - Fri, 12 Sep 2025 01:26:41 GMT elapsed-time: - - '61' + - '70' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2958,9 +978,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1C6CB3612A78480CBAC2EDDFBA1E9B9B Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:52:23Z' + - 'Ref A: EF2D9BE7F4C149A0986490D037E4E9FA Ref B: CO6AA3150218049 Ref C: 2025-09-12T01:26:41Z' status: code: 200 message: OK @@ -2978,31 +998,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:52:55 GMT + - Fri, 12 Sep 2025 01:27:11 GMT elapsed-time: - - '90' + - '67' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3010,9 +1030,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 49F42F54B1194D87B09E43D143F53DCC Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:52:55Z' + - 'Ref A: 2BB5EBF839014504BC86A849560737A3 Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:27:12Z' status: code: 200 message: OK @@ -3030,31 +1050,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.416Z"},"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: - - '750' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:53:26 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '65' + - '106' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4197976Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 72b3d6be-8f76-11f0-9357-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3062,9 +1082,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F4C107CDEBEF4C0B91993582646F9366 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:53:26Z' + - 'Ref A: 5C68B1B1F89C44339204EEEDDC2286BA Ref B: CO6AA3150217009 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK @@ -3072,51 +1092,52 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service list Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices?api-version=2022-09-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-09-12T01%3A19%3A03.4197976Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' headers: cache-control: - no-cache content-length: - - '750' + - '788' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:53:57 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - '124' expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 5fced239-8f79-11f0-985b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-original-request-ids: + - '' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 417CDF181142486BAC3141C9F38617CF Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:53:57Z' + - 'Ref A: 5A1081983EAC40D59D5DC53D7ACEF87F Ref B: CO6AA3150219049 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK @@ -3124,7 +1145,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3134,96 +1155,99 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_list","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '750' + - '396' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:54:28 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - Fri, 12 Sep 2025 01:39:51 GMT expires: - '-1' pragma: - no-cache - request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: AD5B1E9B202648B9BDCCBDB6E1B337F0 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:54:28Z' + - 'Ref A: 4E3173D1C2C84B9883CEB8AEB00F5AE3 Ref B: MWH011020809042 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:01.473Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:54:59 GMT + - Fri, 12 Sep 2025 01:40:00 GMT elapsed-time: - - '65' + - '8060' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A40%3A01.4792943Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 6055ec25-8f79-11f0-9802-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/adb7b122-bcfd-46e9-9f21-c88d6407f0e3 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 302402B963514FD38C5279BC030D86C1 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:55:00Z' + - 'Ref A: C70E25A72242440C9DCC5ACF8BE123F6 Ref B: CO6AA3150217029 Ref C: 2025-09-12T01:39:52Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3238,41 +1262,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:01.473Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:55:30 GMT + - Fri, 12 Sep 2025 01:40:00 GMT elapsed-time: - - '163' + - '61' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A40%3A01.4792943Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 6055ec25-8f79-11f0-9802-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9474BE9880DA4A5EBF06BD3B58A2351B Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:55:30Z' + - 'Ref A: C38C8D521DBD423497CB68D1CF4DAA6D Ref B: MWH011020809023 Ref C: 2025-09-12T01:40:01Z' status: code: 200 message: OK @@ -3290,31 +1314,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:01.473Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:56:02 GMT + - Fri, 12 Sep 2025 01:40:32 GMT elapsed-time: - - '72' + - '66' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A40%3A01.4792943Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 6055ec25-8f79-11f0-9802-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3322,9 +1346,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3B45BCF7B656489EB2C89A88644A3C6C Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:56:02Z' + - 'Ref A: 5777EC628A0741CCA4BEFED217EF4B6B Ref B: CO6AA3150218017 Ref C: 2025-09-12T01:40:32Z' status: code: 200 message: OK @@ -3342,31 +1366,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:01.473Z"},"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: - - '742' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:56:34 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '62' + - '69' etag: - - W/"datetime'2025-05-16T06%3A41%3A59.0796439Z'" + - W/"datetime'2025-09-12T01%3A40%3A01.4792943Z'" expires: - '-1' pragma: - no-cache request-id: - - d6e5c2dc-3220-11f0-996b-644ed7a2823f + - 6055ec25-8f79-11f0-9802-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3374,9 +1398,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5BD29AAB431543EA8C126782AF9818E6 Ref B: TYO01EDGE3418 Ref C: 2025-05-16T06:56:35Z' + - 'Ref A: 8AC1264FE24C4C4781AB64F089A8DEFF Ref B: CO6AA3150217037 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK @@ -3394,14 +1418,14 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-05-16T06%3A26%3A39.8710521Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-05-16T06%3A41%3A59.0796439Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-09-12T01%3A40%3A01.4792943Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East + US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-09-12T01%3A19%3A03.4197976Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' headers: cache-control: - no-cache @@ -3410,15 +1434,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:56:38 GMT + - Fri, 12 Sep 2025 06:28:35 GMT elapsed-time: - - '298' + - '171' expires: - '-1' pragma: - no-cache request-id: - - e83dc4a0-3222-11f0-a8a7-644ed7a2823f + - b58f0c79-8fa1-11f0-9bd1-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3427,10 +1451,10 @@ interactions: - nosniff x-ms-original-request-ids: - '' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: BF6B231AA8BB47CEA998E82A8BBC5650 Ref B: TYO201151003034 Ref C: 2025-05-16T06:56:37Z' + - 'Ref A: CE7DD83F59E94E6B8B7133A775F36294 Ref B: CO6AA3150218017 Ref C: 2025-09-12T06:28:36Z' status: code: 200 message: OK @@ -3450,9 +1474,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: string: '' @@ -3462,15 +1486,15 @@ interactions: content-length: - '0' date: - - Fri, 16 May 2025 06:56:43 GMT + - Fri, 12 Sep 2025 06:28:39 GMT elapsed-time: - - '1559' + - '1467' expires: - '-1' pragma: - no-cache request-id: - - e9aae0b6-3222-11f0-b628-644ed7a2823f + - b6327f3c-8fa1-11f0-8c65-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3478,13 +1502,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/5e7cbefd-5b29-4ffb-98d9-92d337010bed + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/0f466f88-1b91-48ec-84e4-75f469c3cae6 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: BA8386D33D65450DA4D60A2E7179D64F Ref B: TYO201151006060 Ref C: 2025-05-16T06:56:39Z' + - 'Ref A: 2D201E2576714041BCC39AAEDD40F432 Ref B: MWH011020806023 Ref C: 2025-09-12T06:28:36Z' status: code: 200 message: OK @@ -3502,13 +1526,13 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-05-16T06%3A41%3A59.0796439Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' + US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"eTag":"W/\"datetime''2025-09-12T01%3A40%3A01.4792943Z''\"","encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}]}' headers: cache-control: - no-cache @@ -3517,15 +1541,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:56:46 GMT + - Fri, 12 Sep 2025 06:28:40 GMT elapsed-time: - - '166' + - '138' expires: - '-1' pragma: - no-cache request-id: - - ed3b7e95-3222-11f0-9501-644ed7a2823f + - b888bd11-8fa1-11f0-9242-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3534,10 +1558,10 @@ interactions: - nosniff x-ms-original-request-ids: - '' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 86C0B242FD7B4FB49FE9EC697F396ECA Ref B: TYO201100115047 Ref C: 2025-05-16T06:56:45Z' + - 'Ref A: A64D81D5862E4D28A56D1593F911E188 Ref B: MWH011020807023 Ref C: 2025-09-12T06:28:40Z' status: code: 200 message: OK @@ -3557,9 +1581,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: string: '' @@ -3569,15 +1593,15 @@ interactions: content-length: - '0' date: - - Fri, 16 May 2025 06:56:51 GMT + - Fri, 12 Sep 2025 06:28:44 GMT elapsed-time: - - '1442' + - '1412' expires: - '-1' pragma: - no-cache request-id: - - ee7c81ad-3222-11f0-8aa1-644ed7a2823f + - b8dffc62-8fa1-11f0-a5ce-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3585,13 +1609,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/fa4a9a37-d431-4003-8f91-7ba459c060cb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/ca074bbc-7d87-4214-b161-76e9505f280d x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 8D60750835374860962BB2F438F6DD2C Ref B: TYO201151006060 Ref C: 2025-05-16T06:56:47Z' + - 'Ref A: E196E1BF626A4446838B9A431A1DC731 Ref B: CO6AA3150217045 Ref C: 2025-09-12T06:28:41Z' status: code: 200 message: OK @@ -3609,7 +1633,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 response: @@ -3623,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:56:53 GMT + - Fri, 12 Sep 2025 06:28:45 GMT expires: - '-1' pragma: @@ -3635,9 +1659,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3B8ED28543A1413E89FC8E451C597D7E Ref B: TYO201100116045 Ref C: 2025-05-16T06:56:53Z' + - 'Ref A: 5E21EA4171F04B34887F1E8C39E605E7 Ref B: MWH011020808029 Ref C: 2025-09-12T06:28:44Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml index 836dc046890..022ed4c7bb3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_delete_show.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_delete_show","date":"2025-05-16T06:56:58Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_delete_show","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:57:01 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A4CECE7A5FD04DCC90A2E8D875B0179D Ref B: TYO01EDGE3820 Ref C: 2025-05-16T06:57:02Z' + - 'Ref A: C8ADBE11BE684AC28119143F28B50F90 Ref B: MWH011020807040 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -64,31 +64,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:57:11 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - - '6366' + - '6660' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/87102a85-4fa8-40fe-813a-544bb5b82bc0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/b7c00c07-dd80-48d0-90b9-b29079b03a15 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: FACEF6CCA8D04C2C95DC9E2258BC27D3 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:57:03Z' + - 'Ref A: 56814E39FB894C178E5B88EA63F2364C Ref B: CO6AA3150219045 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -120,41 +120,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:57:13 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '73' + - '64' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 24E39DEE528544BFA21EF80C3583F84B Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:57:13Z' + - 'Ref A: FF21BF9341CE483EB17841D889FE5457 Ref B: MWH011020807062 Ref C: 2025-09-12T01:19:03Z' status: code: 200 message: OK @@ -172,41 +172,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:57:44 GMT + - Fri, 12 Sep 2025 01:19:33 GMT elapsed-time: - - '80' + - '66' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D59AE41B81164DB5BB5D4E06F6F1D109 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:57:45Z' + - 'Ref A: E846C830FB0642BAB776FD4316C28017 Ref B: CO6AA3150218029 Ref C: 2025-09-12T01:19:33Z' status: code: 200 message: OK @@ -224,31 +224,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:58:15 GMT + - Fri, 12 Sep 2025 01:20:04 GMT elapsed-time: - - '63' + - '62' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -256,9 +256,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 414DFD73C5CA432EBD94160747CADE00 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:58:15Z' + - 'Ref A: 60CE95E2DA5C44ABB57DF9296B81B669 Ref B: MWH011020808054 Ref C: 2025-09-12T01:20:04Z' status: code: 200 message: OK @@ -276,31 +276,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:58:46 GMT + - Fri, 12 Sep 2025 01:20:34 GMT elapsed-time: - - '65' + - '76' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -308,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A2DBE5DB17354D94907673453AF0CB38 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:58:46Z' + - 'Ref A: 97310DC82D554FECA0EE88032200FD1D Ref B: CO6AA3150217033 Ref C: 2025-09-12T01:20:34Z' status: code: 200 message: OK @@ -328,31 +328,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:59:18 GMT + - Fri, 12 Sep 2025 01:21:04 GMT elapsed-time: - - '75' + - '63' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -360,9 +360,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C512EC99A85B43F4A217A709CAE79BBD Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:59:18Z' + - 'Ref A: B0F0AAF93919426E8B5D5BD7F0A4A56D Ref B: CO6AA3150217029 Ref C: 2025-09-12T01:21:05Z' status: code: 200 message: OK @@ -380,31 +380,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 06:59:50 GMT + - Fri, 12 Sep 2025 01:21:35 GMT elapsed-time: - - '67' + - '65' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -412,9 +412,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 19576B7EDBC348C6A3CE65B59BF44711 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T06:59:50Z' + - 'Ref A: A260812411A248F7AE29644B8B64C424 Ref B: CO6AA3150217023 Ref C: 2025-09-12T01:21:35Z' status: code: 200 message: OK @@ -432,31 +432,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:00:21 GMT + - Fri, 12 Sep 2025 01:22:06 GMT elapsed-time: - - '74' + - '66' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -464,9 +464,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7849E58C69844CBFB52D1805A1B35002 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:00:21Z' + - 'Ref A: A11332C1EF6B4C508167A82CBB6305FB Ref B: MWH011020808054 Ref C: 2025-09-12T01:22:06Z' status: code: 200 message: OK @@ -484,31 +484,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:00:53 GMT + - Fri, 12 Sep 2025 01:22:36 GMT elapsed-time: - - '61' + - '64' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -516,9 +516,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F9B0851CECCE450399CD67BE649F7705 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:00:52Z' + - 'Ref A: 497794A2168B4981964CAE657D234174 Ref B: MWH011020809054 Ref C: 2025-09-12T01:22:36Z' status: code: 200 message: OK @@ -536,31 +536,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:01:24 GMT + - Fri, 12 Sep 2025 01:23:08 GMT elapsed-time: - - '78' + - '69' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -568,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 61C7824594454CE38483253EA4B115FC Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:01:23Z' + - 'Ref A: 95CC721D3C59483C93595E733FAAFA29 Ref B: CO6AA3150220019 Ref C: 2025-09-12T01:23:07Z' status: code: 200 message: OK @@ -588,41 +588,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:01:55 GMT + - Fri, 12 Sep 2025 01:23:37 GMT elapsed-time: - - '68' + - '62' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 938C42BB30684AA49A324B19D54CA6ED Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:01:54Z' + - 'Ref A: E791361CE0264E2CA2D7E8B11AA308D4 Ref B: CO6AA3150220035 Ref C: 2025-09-12T01:23:38Z' status: code: 200 message: OK @@ -640,291 +640,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:02:26 GMT + - Fri, 12 Sep 2025 01:24:08 GMT elapsed-time: - '68' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6169451C787646A7BE6E195F153135D6 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:02:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:02:57 GMT - elapsed-time: - - '60' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8CAB4F6413A340C5B3A804D80E345F96 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:02:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:03:28 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 49EB50F48DF64DDE96847C6EA46D393B Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:03:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:04:00 GMT - elapsed-time: - - '120' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 84D83345184E4C57B95CF4864EF23F88 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:03:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:04:31 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 68341429F01C457F978934EF03469FE6 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:04: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:05:03 GMT - elapsed-time: - - '713' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -932,9 +672,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A8BC1F431F974FDC9483C33CDDAEBDE9 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:05:02Z' + - 'Ref A: 8C0F10B056684C458F85E212F6115BE0 Ref B: MWH011020806062 Ref C: 2025-09-12T01:24:08Z' status: code: 200 message: OK @@ -952,31 +692,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:05:34 GMT + - Fri, 12 Sep 2025 01:24:38 GMT elapsed-time: - - '64' + - '61' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -984,9 +724,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 663E041EA10F4F3A91A8ACD40C708F3D Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:05:34Z' + - 'Ref A: EC02A3EAA8224DA58B17DAFB7BBD77A5 Ref B: CO6AA3150217023 Ref C: 2025-09-12T01:24:38Z' status: code: 200 message: OK @@ -1004,31 +744,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:06:05 GMT + - Fri, 12 Sep 2025 01:25:09 GMT elapsed-time: - - '91' + - '62' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1036,9 +776,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 83944529A44C418A83FA7D0346CF7309 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:06:04Z' + - 'Ref A: 9D2D27E50797438C9C74884020BFE781 Ref B: CO6AA3150217019 Ref C: 2025-09-12T01:25:09Z' status: code: 200 message: OK @@ -1056,31 +796,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:06:36 GMT + - Fri, 12 Sep 2025 01:25:40 GMT elapsed-time: - - '66' + - '81' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1088,9 +828,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5DF028F88ABE46A69D81CF832D3E2031 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:06:36Z' + - 'Ref A: FBA9FE1F52514C1FB94D09B0F77657D3 Ref B: CO6AA3150219011 Ref C: 2025-09-12T01:25:40Z' status: code: 200 message: OK @@ -1108,31 +848,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:07:07 GMT + - Fri, 12 Sep 2025 01:26:10 GMT elapsed-time: - - '72' + - '117' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1140,9 +880,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B332F68BDF444EB6ACABB1EEC281C2AC Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:07:07Z' + - 'Ref A: DBAF1837B53245579ACB31847D7E428A Ref B: CO6AA3150218035 Ref C: 2025-09-12T01:26:10Z' status: code: 200 message: OK @@ -1160,41 +900,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:07:39 GMT + - Fri, 12 Sep 2025 01:26:41 GMT elapsed-time: - - '78' + - '55' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A7E0A42857EF4D9C99EABA960ADCD669 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:07:38Z' + - 'Ref A: 53AA1276943749F4A9131DB1AC9CCC3A Ref B: MWH011020807023 Ref C: 2025-09-12T01:26:41Z' status: code: 200 message: OK @@ -1212,31 +952,31 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:08:10 GMT + - Fri, 12 Sep 2025 01:27:11 GMT elapsed-time: - '72' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1244,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 54592F8301E54D1BB66DBBC071E0493A Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:08:09Z' + - 'Ref A: 7A3111C1F65D49C79F1A40A1691136A4 Ref B: CO6AA3150218053 Ref C: 2025-09-12T01:27:11Z' status: code: 200 message: OK @@ -1264,41 +1004,41 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:08:41 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '66' + - '60' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 726dc17a-8f76-11f0-938d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A133644A5EBC4632A54751905123295C Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:08:40Z' + - 'Ref A: 038E0C352A5E4F80AC9F7A645BD5DD30 Ref B: CO6AA3150219031 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK @@ -1306,415 +1046,51 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service create + - search service show Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.141Z"},"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: - - '750' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:09:15 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '75' + - '55' etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.1462172Z'" expires: - '-1' pragma: - no-cache request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f + - 60b3f554-8f79-11f0-a6d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 956EE4A8B06244D19AFD8F33E134D22E Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:09: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:09:45 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 83E52298041C4F62ABE981C807BFFA8E Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:09: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:10:17 GMT - elapsed-time: - - '138' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 960CA31250C348D6957606F769C95D50 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:10: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:10:48 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9E8B97C4607D4A84844237C8D4168FC2 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:10: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:11:19 GMT - elapsed-time: - - '99' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4C82B4DA650C4B7785E668A6DFBCFB07 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:11:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:11:51 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1EBB8F2A9BEC485A85DB12B260E7BA61 Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:11:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:12:22 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - f7510ad9-3222-11f0-9f84-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 67AB4426150E4564B7737D87400DF3FE Ref B: TYO01EDGE2822 Ref C: 2025-05-16T07:12:22Z' - 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.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:12:24 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T06%3A57%3A12.431285Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 1cd3d9e5-3225-11f0-9af5-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FAFC1AE61B85405EAEA1F552E65C69D5 Ref B: TYO01EDGE1920 Ref C: 2025-05-16T07:12:24Z' + - 'Ref A: D7065BEA52E54A4EB4F11BEC04542437 Ref B: CO6AA3150219023 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK @@ -1734,9 +1110,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: string: '' @@ -1746,15 +1122,15 @@ interactions: content-length: - '0' date: - - Fri, 16 May 2025 07:12:30 GMT + - Fri, 12 Sep 2025 01:39:55 GMT elapsed-time: - - '1492' + - '1686' expires: - '-1' pragma: - no-cache request-id: - - 1dfdc47a-3225-11f0-be44-644ed7a2823f + - 60e8ad63-8f79-11f0-8f1a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1762,13 +1138,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/f352d4ee-938a-4e44-b43d-7165522566eb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/33cf6839-1183-48d3-83ab-b838761f15fe x-ms-ratelimit-remaining-subscription-deletes: - - '199' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 71D2A6822CA546E1A68E0DA1332B3E11 Ref B: TYO01EDGE2115 Ref C: 2025-05-16T07:12:26Z' + - 'Ref A: 9E2E166C52CD4574B568041B3DF0CD01 Ref B: CO6AA3150219031 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK @@ -1786,9 +1162,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Search/searchServices/test000002'' @@ -1802,7 +1178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:12:31 GMT + - Fri, 12 Sep 2025 01:39:55 GMT expires: - '-1' pragma: @@ -1816,7 +1192,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 8D1E8FF552A140AE946B243AF5953BB0 Ref B: TYO01EDGE2307 Ref C: 2025-05-16T07:12:31Z' + - 'Ref A: 35BB5886C1124420A7AE6761B8BE735A Ref B: MWH011020809023 Ref C: 2025-09-12T01:39:56Z' status: code: 404 message: Not Found diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml index 98d92b6cce8..eaa87626c88 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_ip_rules.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_ip_rules","date":"2025-05-16T07:12:36Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_ip_rules","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:12:40 GMT + - Fri, 12 Sep 2025 01:18:53 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 51E9C8875D524741BB06A7EC6C21362D Ref B: TYO01EDGE3922 Ref C: 2025-05-16T07:12:40Z' + - 'Ref A: 605429B53AAC45C990F35A2769E7B181 Ref B: MWH011020809029 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -66,31 +66,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:12:51 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '7269' + - '6476' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/6fc1f970-1297-4b02-aa0a-04340fd23e22 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/02d73b9a-f123-4d7d-b921-23e77f873b3e x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 46D4CA2011CD448FAD121C97E2CDCE8B Ref B: TYO201100113033 Ref C: 2025-05-16T07:12:41Z' + - 'Ref A: 0EF7EA320016457790FCBAE7893C12EF Ref B: MWH011020808060 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -122,145 +122,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:12:52 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 91112E66ED72465FB9EEC23D93881F91 Ref B: TYO201100113033 Ref C: 2025-05-16T07:12:52Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:13:23 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1B921CF172C545ECB297BA602976C56F Ref B: TYO201100113033 Ref C: 2025-05-16T07:13:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:13:54 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '70' + - '84' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 958E1FE0B68145CB8122EA603BAE2D8F Ref B: TYO201100113033 Ref C: 2025-05-16T07:13:54Z' + - 'Ref A: A8B92FC08CBC498CA5C210B193C661D1 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:19:01Z' status: code: 200 message: OK @@ -278,31 +174,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:14:26 GMT + - Fri, 12 Sep 2025 01:19:31 GMT elapsed-time: - - '94' + - '69' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -310,9 +206,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 653F99B4FC6E4F2EBF66855A89CE2969 Ref B: TYO201100113033 Ref C: 2025-05-16T07:14:25Z' + - 'Ref A: 0B5C90B560BD4D24B800DA21209E0073 Ref B: MWH011020809054 Ref C: 2025-09-12T01:19:32Z' status: code: 200 message: OK @@ -330,31 +226,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:14:58 GMT + - Fri, 12 Sep 2025 01:20:02 GMT elapsed-time: - - '78' + - '66' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -362,9 +258,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 32C0CF4AAFEF459E89A8106EB687486F Ref B: TYO201100113033 Ref C: 2025-05-16T07:14:57Z' + - 'Ref A: ED559F7990004B83A16D0A9BAF569661 Ref B: CO6AA3150217035 Ref C: 2025-09-12T01:20:02Z' status: code: 200 message: OK @@ -382,405 +278,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:15:29 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FD307B7B650244FD8602C42D59EDD9D3 Ref B: TYO201100113033 Ref C: 2025-05-16T07:15: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:16:01 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9CBBECD4E461475C957CCBC1886ACC26 Ref B: TYO201100113033 Ref C: 2025-05-16T07:16: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:16:32 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0BEF8B42770D41578A37D2B5AEE19B34 Ref B: TYO201100113033 Ref C: 2025-05-16T07:16: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:17:03 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 24FDF9EEAAF249F4AD7C68C0AF42C984 Ref B: TYO201100113033 Ref C: 2025-05-16T07:17: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:17:34 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5A7B78F2653A42F0A9921EFCFB89462E Ref B: TYO201100113033 Ref C: 2025-05-16T07:17: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:18:06 GMT + - Fri, 12 Sep 2025 01:20:33 GMT elapsed-time: - '71' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 6A1CE3519D494B978544DCB98EF768C3 Ref B: TYO201100113033 Ref C: 2025-05-16T07:18: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:18:37 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 891B9462B96246AE8617B2CC3A9C92A3 Ref B: TYO201100113033 Ref C: 2025-05-16T07:18:37Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:19:08 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: DE2648B3A44A4E81B401BA5526621D2E Ref B: TYO201100113033 Ref C: 2025-05-16T07:19:08Z' + - 'Ref A: 2B947A2FECEB4F338C67BCDCD77A87EE Ref B: MWH011020807034 Ref C: 2025-09-12T01:20:33Z' status: code: 200 message: OK @@ -798,31 +330,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:19:39 GMT + - Fri, 12 Sep 2025 01:21:03 GMT elapsed-time: - - '119' + - '110' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -830,9 +362,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8CD57D4A4C1E464B8B65CAC01B6B2998 Ref B: TYO201100113033 Ref C: 2025-05-16T07:19:39Z' + - 'Ref A: 387BFF40665C43D4BA27ACBE80CF7042 Ref B: MWH011020809023 Ref C: 2025-09-12T01:21:03Z' status: code: 200 message: OK @@ -850,31 +382,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:20:11 GMT + - Fri, 12 Sep 2025 01:21:34 GMT elapsed-time: - - '65' + - '69' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -882,9 +414,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 55E8033BF97B4D9FA45CFAE58AF0B82A Ref B: TYO201100113033 Ref C: 2025-05-16T07:20:11Z' + - 'Ref A: 8A9611B2E5534B2C9B3A5571E6680F75 Ref B: MWH011020808060 Ref C: 2025-09-12T01:21:34Z' status: code: 200 message: OK @@ -902,31 +434,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:20:42 GMT + - Fri, 12 Sep 2025 01:22:04 GMT elapsed-time: - - '79' + - '64' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -934,9 +466,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E9E1E5AA0FB54068B2D2426AA57D3914 Ref B: TYO201100113033 Ref C: 2025-05-16T07:20:42Z' + - 'Ref A: E37075CAF50D4CA2BABBFD1463C396B2 Ref B: MWH011020808054 Ref C: 2025-09-12T01:22:04Z' status: code: 200 message: OK @@ -954,31 +486,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:21:13 GMT + - Fri, 12 Sep 2025 01:22:34 GMT elapsed-time: - - '72' + - '68' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -986,9 +518,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C4F131488F6B4EE1B55507C88945FCE8 Ref B: TYO201100113033 Ref C: 2025-05-16T07:21:13Z' + - 'Ref A: 477E017B399A4C2FA3B2664A5383B5F4 Ref B: CO6AA3150219023 Ref C: 2025-09-12T01:22:35Z' status: code: 200 message: OK @@ -1006,145 +538,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:21:44 GMT + - Fri, 12 Sep 2025 01:23:05 GMT elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 42B55D9AE31845648380BE0C9B716F65 Ref B: TYO201100113033 Ref C: 2025-05-16T07:21: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:22:16 GMT - elapsed-time: - - '127' - etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 06EFC58AF8404E8E93466853F22A504D Ref B: TYO201100113033 Ref C: 2025-05-16T07:22: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 --ip-rules - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '815' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:22:47 GMT - elapsed-time: - - '83' + - '65' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: EEB502ED01DD4FB3920998D04B304FB5 Ref B: TYO201100113033 Ref C: 2025-05-16T07:22:47Z' + - 'Ref A: EE95F85038204A39B0DAB2835A68B729 Ref B: MWH011020806031 Ref C: 2025-09-12T01:23:05Z' status: code: 200 message: OK @@ -1162,41 +590,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:23:18 GMT + - Fri, 12 Sep 2025 01:23:35 GMT elapsed-time: - - '70' + - '74' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 33C10A2EFA6A4537B8120399147D1392 Ref B: TYO201100113033 Ref C: 2025-05-16T07:23:18Z' + - 'Ref A: C9004C8CC38643F087B9BE2F7EDA5CE2 Ref B: CO6AA3150220035 Ref C: 2025-09-12T01:23:35Z' status: code: 200 message: OK @@ -1214,41 +642,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:23:49 GMT + - Fri, 12 Sep 2025 01:24:05 GMT elapsed-time: - - '119' + - '74' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D2D2AC89C1734344B6E68D150A91872F Ref B: TYO201100113033 Ref C: 2025-05-16T07:23:49Z' + - 'Ref A: 0D4E9B2598994A93B346C84E5FDC335E Ref B: MWH011020806040 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK @@ -1266,31 +694,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:24:21 GMT + - Fri, 12 Sep 2025 01:24:36 GMT elapsed-time: - - '118' + - '94' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1298,9 +726,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4A3F7EC72E8A4FAEACD23FAA36545B9B Ref B: TYO201100113033 Ref C: 2025-05-16T07:24:21Z' + - 'Ref A: C4ADB730160D401F97F3D23C0562D053 Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:24:36Z' status: code: 200 message: OK @@ -1318,31 +746,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:24:52 GMT + - Fri, 12 Sep 2025 01:25:07 GMT elapsed-time: - - '73' + - '65' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1350,9 +778,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E368698B529F469B8983B794F8C8F773 Ref B: TYO201100113033 Ref C: 2025-05-16T07:24:52Z' + - 'Ref A: F6E23E21CDE34CD0BBAADE187E8FB530 Ref B: CO6AA3150219017 Ref C: 2025-09-12T01:25:07Z' status: code: 200 message: OK @@ -1370,41 +798,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:25:24 GMT + - Fri, 12 Sep 2025 01:25:37 GMT elapsed-time: - - '148' + - '68' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 50DDAE808A1D4A7BB6C3432D5BC46CD8 Ref B: TYO201100113033 Ref C: 2025-05-16T07:25:23Z' + - 'Ref A: F7E40E40C5B446B593B1AA5AEF6C8387 Ref B: MWH011020807062 Ref C: 2025-09-12T01:25:37Z' status: code: 200 message: OK @@ -1422,31 +850,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:25:55 GMT + - Fri, 12 Sep 2025 01:26:08 GMT elapsed-time: - - '76' + - '60' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1454,9 +882,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2E5D3952A7BD48D59714C94F791D4CF7 Ref B: TYO201100113033 Ref C: 2025-05-16T07:25:54Z' + - 'Ref A: 1392CE58DE7F40C38C60C89154974E1B Ref B: MWH011020809042 Ref C: 2025-09-12T01:26:07Z' status: code: 200 message: OK @@ -1474,31 +902,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:26:26 GMT + - Fri, 12 Sep 2025 01:26:38 GMT elapsed-time: - - '70' + - '84' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1506,9 +934,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 30AAFDE1D3C5476395EE520737B7618C Ref B: TYO201100113033 Ref C: 2025-05-16T07:26:25Z' + - 'Ref A: 5E21684147CB496EA88F184AD7067797 Ref B: MWH011020806062 Ref C: 2025-09-12T01:26:38Z' status: code: 200 message: OK @@ -1526,41 +954,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '815' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:26:57 GMT + - Fri, 12 Sep 2025 01:27:08 GMT elapsed-time: - - '155' + - '68' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E029317F5F41490681CBD4D813BD61AE Ref B: TYO201100113033 Ref C: 2025-05-16T07:26:56Z' + - 'Ref A: 9B693CD8D3D440619A292B4AEFCEA26F Ref B: MWH011020806060 Ref C: 2025-09-12T01:27:09Z' status: code: 200 message: OK @@ -1578,31 +1006,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.471Z"},"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: - - '807' + - '1028' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:27:29 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '76' + - '59' etag: - - W/"datetime'2025-05-16T07%3A12%3A51.7208944Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.4745613Z'" expires: - '-1' pragma: - no-cache request-id: - - 26adee5e-3225-11f0-bae2-644ed7a2823f + - 722cde0c-8f76-11f0-b17b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1610,9 +1038,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 526D156CE4BE4E19A68424B4C1DBE337 Ref B: TYO201100113033 Ref C: 2025-05-16T07:27:28Z' + - 'Ref A: B8F304ADAC654660A35E6CECB8C2C955 Ref B: CO6AA3150219017 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml index 55ed8d9d184..63238bcb7b9 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_msi.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_msi","date":"2025-05-16T07:27:33Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_msi","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:27:38 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8CA10389572541FFA52F5C449B2B31BA Ref B: TYO01EDGE1720 Ref C: 2025-05-16T07:27:38Z' + - 'Ref A: 8C8236133B154FC2989B0D0D2AE762F3 Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -65,31 +65,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:27:51 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '6822' + - '6346' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -97,13 +97,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/c4809bf4-bd42-4151-b5fe-373921de17ad - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/9f1e9f4f-4fd1-4ac6-b1ff-d3ac6fe504fc x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 84F29A504758441E9173D5D690263C4B Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:27:40Z' + - 'Ref A: A7EE921E7A7F4740814A12AC9204F59D Ref B: CO6AA3150220027 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -121,145 +121,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:27:52 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E8E95A1C24B94515BFD5B2FEDA1C5D4D Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:27:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:28:23 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6336F401E0904921864FF11833B1219C Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:28:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:28:54 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '66' + - '70' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 59C6AC4E7F5B40D7B36F8791CA725C2C Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:28:54Z' + - 'Ref A: 9431B42B4DF44372B793E3B25168840E Ref B: CO6AA3150220027 Ref C: 2025-09-12T01:19:04Z' status: code: 200 message: OK @@ -277,31 +173,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:29:25 GMT + - Fri, 12 Sep 2025 01:19:34 GMT elapsed-time: - - '67' + - '70' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -309,9 +205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 802057E22A304C7197BB8EC7349F8EE7 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:29:25Z' + - 'Ref A: 2EA4D306D7704D7683117458A60EEDFB Ref B: MWH011020808040 Ref C: 2025-09-12T01:19:34Z' status: code: 200 message: OK @@ -329,41 +225,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:29:57 GMT + - Fri, 12 Sep 2025 01:20:04 GMT elapsed-time: - - '86' + - '70' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: EDE43F3AF26E459AA7986B0BB31A34AC Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:29:56Z' + - 'Ref A: C2268C2245A647C1AE6A6ACA5A2566FB Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:20:04Z' status: code: 200 message: OK @@ -381,31 +277,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:30:28 GMT + - Fri, 12 Sep 2025 01:20:35 GMT elapsed-time: - - '76' + - '62' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -413,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C04F1F1621AF4220BB70A44178B80A59 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:30:28Z' + - 'Ref A: C4FCE317FDA243BFA77E4C26B4B1CC90 Ref B: CO6AA3150217031 Ref C: 2025-09-12T01:20:35Z' status: code: 200 message: OK @@ -433,31 +329,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:30:59 GMT + - Fri, 12 Sep 2025 01:21:05 GMT elapsed-time: - - '65' + - '68' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -465,9 +361,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0C3848CDB15F471A921277E0E2960209 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:30:59Z' + - 'Ref A: CA3E65C63BBB44C1BD1472151F8711C2 Ref B: CO6AA3150219017 Ref C: 2025-09-12T01:21:05Z' status: code: 200 message: OK @@ -485,31 +381,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:31:30 GMT + - Fri, 12 Sep 2025 01:21:36 GMT elapsed-time: - - '83' + - '61' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -517,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 40DF1A934B6A4A7DB411DBF1D5C374EA Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:31:30Z' + - 'Ref A: 17EAD74169A84AC583F0F03828A54149 Ref B: MWH011020809052 Ref C: 2025-09-12T01:21:36Z' status: code: 200 message: OK @@ -537,31 +433,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:32:01 GMT + - Fri, 12 Sep 2025 01:22:06 GMT elapsed-time: - '75' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -569,9 +465,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 38C29A79156D4EEBB0110E60DEF50198 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:32:01Z' + - 'Ref A: 7CC3FBAC8FB641C29DB12EB7F4F2563E Ref B: MWH011020806054 Ref C: 2025-09-12T01:22:06Z' status: code: 200 message: OK @@ -589,41 +485,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:32:32 GMT + - Fri, 12 Sep 2025 01:22:36 GMT elapsed-time: - - '74' + - '65' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E0AE876C0C274556ABAEF7CA1C16F84E Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:32:33Z' + - 'Ref A: 7CA05DB0FB084A8EBF010F97279987D6 Ref B: MWH011020806025 Ref C: 2025-09-12T01:22:37Z' status: code: 200 message: OK @@ -641,41 +537,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:33:05 GMT + - Fri, 12 Sep 2025 01:23:07 GMT elapsed-time: - - '253' + - '69' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: DD76DC78A3E8474DA8168CBD9D232714 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:33:03Z' + - 'Ref A: 7859F6375FBC4404A4ADC0C5C771025B Ref B: MWH011020808029 Ref C: 2025-09-12T01:23:07Z' status: code: 200 message: OK @@ -693,31 +589,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:33:36 GMT + - Fri, 12 Sep 2025 01:23:38 GMT elapsed-time: - '82' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -725,9 +621,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EBD86F4C498A4CC58513CC26F0396BE6 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:33:35Z' + - 'Ref A: A145FCABA83040BE979C4C31F62C5D11 Ref B: MWH011020809034 Ref C: 2025-09-12T01:23:37Z' status: code: 200 message: OK @@ -745,31 +641,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:34:11 GMT + - Fri, 12 Sep 2025 01:24:08 GMT elapsed-time: - - '67' + - '70' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -777,9 +673,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 343FA1C45164498ABB777700E0049C84 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:34:10Z' + - 'Ref A: C3D5FB43A1A2489783DB97199F23B9CD Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:24:08Z' status: code: 200 message: OK @@ -797,41 +693,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:34:42 GMT + - Fri, 12 Sep 2025 01:24:38 GMT elapsed-time: - - '79' + - '76' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 0768A1686FE14078B19DF6B8D8038907 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:34:41Z' + - 'Ref A: FD47C77622834AD1BCA0A24FA31415D0 Ref B: MWH011020808023 Ref C: 2025-09-12T01:24:38Z' status: code: 200 message: OK @@ -849,31 +745,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:35:13 GMT + - Fri, 12 Sep 2025 01:25:09 GMT elapsed-time: - - '75' + - '64' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -881,9 +777,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2CF2CEB284F544BCB7693F80575D066D Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:35:12Z' + - 'Ref A: 46B7F14ABBF54FA4A97DB0EA68E53715 Ref B: MWH011020806036 Ref C: 2025-09-12T01:25:09Z' status: code: 200 message: OK @@ -901,31 +797,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:35:45 GMT + - Fri, 12 Sep 2025 01:25:39 GMT elapsed-time: - - '78' + - '66' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -933,9 +829,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8E689C0C1A274E49898D0F9F0532E12D Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:35:44Z' + - 'Ref A: CA514FC6678A4E528FDEF561BA97A363 Ref B: MWH011020808062 Ref C: 2025-09-12T01:25:39Z' status: code: 200 message: OK @@ -953,83 +849,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:36:16 GMT + - Fri, 12 Sep 2025 01:26:10 GMT elapsed-time: - '73' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3EC6D02F39534002838C5B3710B66D69 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:36: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 --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:36:47 GMT - elapsed-time: - - '110' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1037,9 +881,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C7B7867BD8BF41BC9DFAFB97D6F59122 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:36:46Z' + - 'Ref A: 49A5BEDF5DA94628BE15D821ABE796FB Ref B: MWH011020807042 Ref C: 2025-09-12T01:26:10Z' status: code: 200 message: OK @@ -1057,31 +901,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:37:18 GMT + - Fri, 12 Sep 2025 01:26:40 GMT elapsed-time: - - '74' + - '60' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1089,9 +933,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E8A4795F22D24762BF0D7D6C94FE020B Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:37:18Z' + - 'Ref A: A9C60C15D6B34F3AA664F41E664E195C Ref B: MWH011020807036 Ref C: 2025-09-12T01:26:40Z' status: code: 200 message: OK @@ -1109,405 +953,41 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:37:50 GMT + - Fri, 12 Sep 2025 01:27:10 GMT elapsed-time: - '75' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FE3FD843338F43CE8509B9C74F3F5075 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:37:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:38:21 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EF84D22688794CD8A72E0218F3E9B96D Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:38:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:38:52 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D24C645D04014BFF90BA5336B71E7C36 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:38:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:39:23 GMT - elapsed-time: - - '83' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B80B0064F83C491E9F5B476CF1152941 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:39:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:39:54 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D7B44EC8F2DB43ED9ACA9BC9FD18A49D Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:39:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:40:26 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6BD05E108B0F4386B182E68411AEDA9A Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:40:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:40:57 GMT - elapsed-time: - - '94' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BAD0447601DA47AFB73EB332005B78EC Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:40:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:41:28 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 97E5493EE68F4F1790B0D19FBAF2B421 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:41:27Z' + - 'Ref A: 4AA416F24BA04E22BCDC35EFAA67FFE3 Ref B: CO6AA3150220021 Ref C: 2025-09-12T01:27:11Z' status: code: 200 message: OK @@ -1525,31 +1005,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:41:59 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '88' + - '107' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1557,9 +1037,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 74C07B0E152D44E7A6F6044FCC1ED92E Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:41:59Z' + - 'Ref A: E1425826F9874BAA8C891AA220247856 Ref B: MWH011020806025 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK @@ -1577,31 +1057,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1108' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:42:31 GMT + - Fri, 12 Sep 2025 01:40:22 GMT elapsed-time: - - '70' + - '58' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1609,9 +1089,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5C0AF489DE774D519670A8E369954BA2 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:42:30Z' + - 'Ref A: 1BEB7774678B408E9214C42A97AD82A0 Ref B: CO6AA3150219039 Ref C: 2025-09-12T01:40:22Z' status: code: 200 message: OK @@ -1629,83 +1109,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"c1123dea-1094-4b12-851f-9423d3d6a650","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:19:03.884Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1100' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:43:03 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '150' - etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 65D3B6485191452DA57044EB8846F9B2 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:43:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"707d39b5-e537-4ae3-bf71-12229ec2d469","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '879' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:43:34 GMT - elapsed-time: - - '74' + - '77' etag: - - W/"datetime'2025-05-16T07%3A27%3A51.4719174Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.8876506Z'" expires: - '-1' pragma: - no-cache request-id: - - 3dbb39fc-3227-11f0-bc52-644ed7a2823f + - 7266a941-8f76-11f0-8706-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1713,9 +1141,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 751E80F954824642A95B90588F3602D9 Ref B: TYO01EDGE1115 Ref C: 2025-05-16T07:43:34Z' + - 'Ref A: 4EE26A2BC1ED4E4EADDD9A4CA14C53F1 Ref B: MWH011020807029 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml index f02ef551369..73479467045 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_partition.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_multi_partition","date":"2025-05-16T07:43:39Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_multi_partition","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:43:44 GMT + - Fri, 12 Sep 2025 01:18:53 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 42ECD70F9E8A4503B7C7D15F0B33CEC3 Ref B: TYO201151004034 Ref C: 2025-05-16T07:43:44Z' + - 'Ref A: AEF48FE90956471DBCEF92DE55754BF2 Ref B: MWH011020808025 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -64,31 +64,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:43:54 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - - '5933' + - '7223' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/e6716b57-0953-463e-91b0-4dafe6503d52 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/03028334-f24a-4ae7-8146-67fffb1db02e x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 7A716A8E0C0E45B4A5FD0E08C37011F7 Ref B: TYO201151001040 Ref C: 2025-05-16T07:43:45Z' + - 'Ref A: B450B32EDDE64902A8A0CFBCC92FFD79 Ref B: CO6AA3150220025 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -120,145 +120,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:43:55 GMT - elapsed-time: - - '120' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D0FDD65CC6A24442BF7DCD5DC7832FC3 Ref B: TYO201151001040 Ref C: 2025-05-16T07:43:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:44:26 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8D455E8340CB4A558D94DC9F5E8196C0 Ref B: TYO201151001040 Ref C: 2025-05-16T07:44:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:44:57 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - - '74' + - '61' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: B7F538F5FAE44F03A9CC252143BBCECF Ref B: TYO201151001040 Ref C: 2025-05-16T07:44:56Z' + - 'Ref A: 671747A851814D39AC40D507D39B6F7B Ref B: MWH011020806042 Ref C: 2025-09-12T01:19:02Z' status: code: 200 message: OK @@ -276,31 +172,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:45:29 GMT + - Fri, 12 Sep 2025 01:19:32 GMT elapsed-time: - - '91' + - '77' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -308,9 +204,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A3DAEBCCD6EE435D9EF02612B18A1EBC Ref B: TYO201151001040 Ref C: 2025-05-16T07:45:27Z' + - 'Ref A: 218A5F9392024806A74C5B86C9B293D5 Ref B: CO6AA3150219053 Ref C: 2025-09-12T01:19:32Z' status: code: 200 message: OK @@ -328,41 +224,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:46:00 GMT + - Fri, 12 Sep 2025 01:20:03 GMT elapsed-time: - - '71' + - '60' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8A7972969E5A48DCAFFDFC0E3011BD8B Ref B: TYO201151001040 Ref C: 2025-05-16T07:45:59Z' + - 'Ref A: 7079ACE7260A4D409EB9E5B804C49683 Ref B: MWH011020807042 Ref C: 2025-09-12T01:20:03Z' status: code: 200 message: OK @@ -380,41 +276,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:46:31 GMT + - Fri, 12 Sep 2025 01:20:33 GMT elapsed-time: - - '94' + - '67' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 0F786A0AB4AA4FF0AFF1F4889BC26692 Ref B: TYO201151001040 Ref C: 2025-05-16T07:46:30Z' + - 'Ref A: 8C3276CB4E95445BB7631F6D71ED567C Ref B: MWH011020806040 Ref C: 2025-09-12T01:20:33Z' status: code: 200 message: OK @@ -432,41 +328,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:47:02 GMT + - Fri, 12 Sep 2025 01:21:03 GMT elapsed-time: - - '64' + - '96' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 441DC7A7F0394B42B696AA2CBA8D0DA2 Ref B: TYO201151001040 Ref C: 2025-05-16T07:47:01Z' + - 'Ref A: 606D9475A3194C969C6DA7AA24818A00 Ref B: MWH011020807036 Ref C: 2025-09-12T01:21:03Z' status: code: 200 message: OK @@ -484,31 +380,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:47:33 GMT + - Fri, 12 Sep 2025 01:21:34 GMT elapsed-time: - - '85' + - '68' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -516,9 +412,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 798FE496276B4C0DA5D2F8C75B18BB44 Ref B: TYO201151001040 Ref C: 2025-05-16T07:47:33Z' + - 'Ref A: F6D7BC259D994446AAB685F15782E13C Ref B: CO6AA3150219019 Ref C: 2025-09-12T01:21:34Z' status: code: 200 message: OK @@ -536,41 +432,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:48:05 GMT + - Fri, 12 Sep 2025 01:22:04 GMT elapsed-time: - - '71' + - '87' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8EDA9F85687845A18518B5271A8C58BE Ref B: TYO201151001040 Ref C: 2025-05-16T07:48:04Z' + - 'Ref A: 0967C98C43C64395AD30F5E43E21D9B8 Ref B: MWH011020806042 Ref C: 2025-09-12T01:22:04Z' status: code: 200 message: OK @@ -588,31 +484,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:48:36 GMT + - Fri, 12 Sep 2025 01:22:35 GMT elapsed-time: - - '72' + - '63' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -620,9 +516,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2AFCEE8EC81E4C6EBCCABB2B8962E7D0 Ref B: TYO201151001040 Ref C: 2025-05-16T07:48:35Z' + - 'Ref A: 7F749BEA7FEA4A93B738A19B803DED9E Ref B: CO6AA3150217039 Ref C: 2025-09-12T01:22:35Z' status: code: 200 message: OK @@ -640,31 +536,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:49:07 GMT + - Fri, 12 Sep 2025 01:23:05 GMT elapsed-time: - - '117' + - '60' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -672,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 42347F3124ED48A196D80674FCEBCFF7 Ref B: TYO201151001040 Ref C: 2025-05-16T07:49:07Z' + - 'Ref A: 2EA31AD38B484E5EA3BF258D03E25B19 Ref B: CO6AA3150219049 Ref C: 2025-09-12T01:23:05Z' status: code: 200 message: OK @@ -692,41 +588,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:49:39 GMT + - Fri, 12 Sep 2025 01:23:35 GMT elapsed-time: - - '69' + - '63' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: BC2368D104AC4EAFA98460B4E54958A1 Ref B: TYO201151001040 Ref C: 2025-05-16T07:49:38Z' + - 'Ref A: 991ABB78DAB94BBDB1579C76D699E293 Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:23:36Z' status: code: 200 message: OK @@ -744,31 +640,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:50:10 GMT + - Fri, 12 Sep 2025 01:24:06 GMT elapsed-time: - - '71' + - '105' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -776,9 +672,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 30AE6F51BBCA4D6E95D4049919AD0BE6 Ref B: TYO201151001040 Ref C: 2025-05-16T07:50:09Z' + - 'Ref A: 3D090256AFD24BCAB6C636FAC4E6189F Ref B: MWH011020808040 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK @@ -796,31 +692,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:50:41 GMT + - Fri, 12 Sep 2025 01:24:36 GMT elapsed-time: - - '79' + - '93' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -828,9 +724,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C427A21B24C747FF9C7304D05EC3E73B Ref B: TYO201151001040 Ref C: 2025-05-16T07:50:41Z' + - 'Ref A: 2FB1D581A098496A90A4D0925AF53478 Ref B: CO6AA3150218021 Ref C: 2025-09-12T01:24:37Z' status: code: 200 message: OK @@ -848,31 +744,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:51:13 GMT + - Fri, 12 Sep 2025 01:25:07 GMT elapsed-time: - - '67' + - '58' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -880,9 +776,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 59B97D425D2844B09F8BF64B891EC156 Ref B: TYO201151001040 Ref C: 2025-05-16T07:51:12Z' + - 'Ref A: BA67C40E4831490BB4FF23543BCDB4AE Ref B: MWH011020807036 Ref C: 2025-09-12T01:25:07Z' status: code: 200 message: OK @@ -900,31 +796,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:51:44 GMT + - Fri, 12 Sep 2025 01:25:38 GMT elapsed-time: - '72' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -932,9 +828,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 03C42B61B8274D209EBCBB52A6124B64 Ref B: TYO201151001040 Ref C: 2025-05-16T07:51:43Z' + - 'Ref A: 64B05B5DD6574304A0A8355AA5FB3E88 Ref B: CO6AA3150217049 Ref C: 2025-09-12T01:25:38Z' status: code: 200 message: OK @@ -952,187 +848,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:52:15 GMT + - Fri, 12 Sep 2025 01:26:09 GMT elapsed-time: - '70' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 766DA7ADFD474993ADE71DDE985B5D53 Ref B: TYO201151001040 Ref C: 2025-05-16T07:52: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:52:46 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 84487758C8A74F1B908398D18740CEEF Ref B: TYO201151001040 Ref C: 2025-05-16T07:52: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:53:18 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E52FA4031548404ABD7D70A34E8232A8 Ref B: TYO201151001040 Ref C: 2025-05-16T07:53:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:53:49 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1140,9 +880,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9BABE071D7784FE19F7EA52A4270B4D4 Ref B: TYO201151001040 Ref C: 2025-05-16T07:53:48Z' + - 'Ref A: 98848061D3454A6E9932A8CAF73EE510 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:26:08Z' status: code: 200 message: OK @@ -1160,31 +900,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:54:20 GMT + - Fri, 12 Sep 2025 01:26:40 GMT elapsed-time: - - '71' + - '66' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1192,9 +932,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 80B0A7DA8E9C466FB7353F1C8B970E80 Ref B: TYO201151001040 Ref C: 2025-05-16T07:54:20Z' + - 'Ref A: B9C0003B1EBF43588CDD2C5397EE3E33 Ref B: CO6AA3150220019 Ref C: 2025-09-12T01:26:39Z' status: code: 200 message: OK @@ -1212,1123 +952,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 07:54:51 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DC57BC77027E4C8880365F8C764A305A Ref B: TYO201151001040 Ref C: 2025-05-16T07:54:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:55:23 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 569989AC373C4766B565BACCB54B7F5C Ref B: TYO201151001040 Ref C: 2025-05-16T07:55:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:55:54 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B2EB6BBBE0A74C4FBF97AF14F455C8B2 Ref B: TYO201151001040 Ref C: 2025-05-16T07:55:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:56:26 GMT - elapsed-time: - - '84' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F4771DB970AC4F84B6987B433E7BE598 Ref B: TYO201151001040 Ref C: 2025-05-16T07:56:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:56:57 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0039397EEA3A447D8B0692CC99F1ED8C Ref B: TYO201151001040 Ref C: 2025-05-16T07:56:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:57:28 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 99DB46181E164A4F93A728627F138B0D Ref B: TYO201151001040 Ref C: 2025-05-16T07:57:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:58:01 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4BF1100BABAB43B7B75A43354628E2CB Ref B: TYO201151001040 Ref C: 2025-05-16T07:58: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:58:32 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 781D5065D0C64D0D83FA3B30191DF5F1 Ref B: TYO201151001040 Ref C: 2025-05-16T07:58: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:59:03 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6E2CFAD1A64B4B0E9A16F7FF87157E0C Ref B: TYO201151001040 Ref C: 2025-05-16T07:59: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 07:59:34 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4B218B53BA2A436CB09EC57EBD84000F Ref B: TYO201151001040 Ref C: 2025-05-16T07:59: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:00:06 GMT - elapsed-time: - - '128' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7BA0EF187F334F10927027B5CC7FC6A3 Ref B: TYO201151001040 Ref C: 2025-05-16T08:00: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:00:37 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3F39B90BF07E4F7CAA06C2B57B7843B7 Ref B: TYO201151001040 Ref C: 2025-05-16T08:00: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:01:08 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4C5621CD701D44179250DF9E10917266 Ref B: TYO201151001040 Ref C: 2025-05-16T08:01: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:01:39 GMT - elapsed-time: - - '117' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0528DC1CE4CE4367B3A07A6EEA2CD5C6 Ref B: TYO201151001040 Ref C: 2025-05-16T08:01: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:02:11 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 772E20BFD1E447B4A826DADEB11B40DE Ref B: TYO201151001040 Ref C: 2025-05-16T08:02: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:02:42 GMT + - Fri, 12 Sep 2025 01:27:09 GMT elapsed-time: - '63' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FBCD48C96FDD413F9A59A6385BA14F9F Ref B: TYO201151001040 Ref C: 2025-05-16T08:02: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:03:13 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 00204DDAE6CA4D34BFCE4F079BD3D3A5 Ref B: TYO201151001040 Ref C: 2025-05-16T08:03: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:03:44 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 774F5467610F4281930EDA616781785E Ref B: TYO201151001040 Ref C: 2025-05-16T08:03: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:04:16 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DDDC2D7BFD83468480E2F9DB147B4097 Ref B: TYO201151001040 Ref C: 2025-05-16T08:04: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:04:46 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 127B7119C3D64655870085A211A937B7 Ref B: TYO201151001040 Ref C: 2025-05-16T08:04: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:05:17 GMT - elapsed-time: - - '99' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 545F713F1E4C4AE4B9CA8BD9204D9BEC Ref B: TYO201151001040 Ref C: 2025-05-16T08:05:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:05:49 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2336,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0923C1EC66B9478088E00D16413B478E Ref B: TYO201151001040 Ref C: 2025-05-16T08:05:48Z' + - 'Ref A: 2899D92F7B8F45D4891B360F5BA57E21 Ref B: MWH011020808062 Ref C: 2025-09-12T01:27:10Z' status: code: 200 message: OK @@ -2356,31 +1004,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:02.336Z"},"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: - - '742' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:06:20 GMT + - Fri, 12 Sep 2025 01:39:50 GMT elapsed-time: - - '71' + - '58' etag: - - W/"datetime'2025-05-16T07%3A43%3A53.693267Z'" + - W/"datetime'2025-09-12T01%3A19%3A02.3411361Z'" expires: - '-1' pragma: - no-cache request-id: - - 7d2a484c-3229-11f0-bf99-644ed7a2823f + - 7235adaa-8f76-11f0-8f91-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2388,9 +1036,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9AF679B497DB4BA5A3617C76DA5FFCA8 Ref B: TYO201151001040 Ref C: 2025-05-16T08:06:20Z' + - 'Ref A: 6CC5C19B00A24D759F210694E9E80700 Ref B: CO6AA3150220045 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml index 90c9cd1abc5..34685f03498 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_multi_replica.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_multi_replica","date":"2025-05-16T08:06:25Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_multi_replica","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:06:29 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: AD18FC8DA725477A80D6447158502A0E Ref B: TYO01EDGE1017 Ref C: 2025-05-16T08:06:30Z' + - 'Ref A: BC3DF04F007948C796B8AC966F6C6D31 Ref B: MWH011020806042 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -64,31 +64,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:06:39 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - - '5809' + - '8094' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/32959504-d64e-48d2-93f9-83e67dd7f80b - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/5af54fd6-206b-4737-97b2-9f2fe6bb3491 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 4D17D3A882D44B669F4C403408270394 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:06:31Z' + - 'Ref A: 6D4118FD98684E0E92D2E2A126310C9C Ref B: MWH011020806025 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -120,83 +120,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:06:41 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7E30AFA2452C4BD78D04769BF21E8091 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:06: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:07:12 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '73' + - '63' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -204,9 +152,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 83DADC0E6E094E6D949D8CCD98831909 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:07:11Z' + - 'Ref A: 8538243C643D48F2964BBBC918E79E22 Ref B: MWH011020808034 Ref C: 2025-09-12T01:19:03Z' status: code: 200 message: OK @@ -224,31 +172,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:07:43 GMT + - Fri, 12 Sep 2025 01:19:34 GMT elapsed-time: - - '70' + - '59' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -256,9 +204,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AF06A496EEF54F74962C5EE9B9E25F33 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:07:43Z' + - 'Ref A: 337FD1D7B5F6488EACBC7A19CCC61836 Ref B: CO6AA3150217011 Ref C: 2025-09-12T01:19:34Z' status: code: 200 message: OK @@ -276,31 +224,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:08:14 GMT + - Fri, 12 Sep 2025 01:20:04 GMT elapsed-time: - - '73' + - '59' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -308,9 +256,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D22FC6AD061B445E9532E9A15E83C14D Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:08:13Z' + - 'Ref A: 4E188C02B2B849EF8C27545053C548D7 Ref B: CO6AA3150220037 Ref C: 2025-09-12T01:20:04Z' status: code: 200 message: OK @@ -328,31 +276,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:08:45 GMT + - Fri, 12 Sep 2025 01:20:35 GMT elapsed-time: - - '70' + - '63' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -360,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 65079451944541E6B6919E0F49750F96 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:08:45Z' + - 'Ref A: 007070F2B05041108EFA8F0F453F430E Ref B: CO6AA3150219009 Ref C: 2025-09-12T01:20:35Z' status: code: 200 message: OK @@ -380,41 +328,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:09:17 GMT + - Fri, 12 Sep 2025 01:21:05 GMT elapsed-time: - - '264' + - '57' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A617BE3D17BE4BFCBB5AEEEDCAEE48A1 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:09:16Z' + - 'Ref A: 46A4D5EE50824A5FA2ADE9C2FC2F8BAD Ref B: MWH011020806040 Ref C: 2025-09-12T01:21:05Z' status: code: 200 message: OK @@ -432,31 +380,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:09:48 GMT + - Fri, 12 Sep 2025 01:21:36 GMT elapsed-time: - - '65' + - '60' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -464,9 +412,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 651D5297E95145A58ECC59A58FC748C3 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:09:48Z' + - 'Ref A: F5CDA3AEB88540BC92B1F84EBC0DAE97 Ref B: CO6AA3150218037 Ref C: 2025-09-12T01:21:36Z' status: code: 200 message: OK @@ -484,31 +432,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:10:19 GMT + - Fri, 12 Sep 2025 01:22:06 GMT elapsed-time: - - '71' + - '101' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -516,9 +464,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 16A9F0ADF8B24B07A94029A022BEE8AC Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:10:19Z' + - 'Ref A: 47BA5C6858E94B468458CAD885C1F237 Ref B: CO6AA3150219029 Ref C: 2025-09-12T01:22:06Z' status: code: 200 message: OK @@ -536,31 +484,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:10:50 GMT + - Fri, 12 Sep 2025 01:22:37 GMT elapsed-time: - - '74' + - '58' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -568,9 +516,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CC2D002E41574E58AC2864A63513644C Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:10:50Z' + - 'Ref A: D5F07E6EF87F414AAF1957DFA4813E5A Ref B: MWH011020809034 Ref C: 2025-09-12T01:22:37Z' status: code: 200 message: OK @@ -588,31 +536,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:11:21 GMT + - Fri, 12 Sep 2025 01:23:08 GMT elapsed-time: - - '132' + - '61' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -620,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 642D0C17529C497E889913463C363F69 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:11:21Z' + - 'Ref A: 54F8C143448043D19014AEE102580B03 Ref B: CO6AA3150218011 Ref C: 2025-09-12T01:23:07Z' status: code: 200 message: OK @@ -640,41 +588,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:11:53 GMT + - Fri, 12 Sep 2025 01:23:38 GMT elapsed-time: - - '69' + - '58' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F4986F3615DF464DBE8149443C17D012 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:11:53Z' + - 'Ref A: F34B300FB00A4C4ABECCB7F0ED62698F Ref B: MWH011020806031 Ref C: 2025-09-12T01:23:38Z' status: code: 200 message: OK @@ -692,93 +640,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:12:24 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 75F72DAB7D6144D688CEB18ED63048F4 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:12:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:12:56 GMT + - Fri, 12 Sep 2025 01:24:07 GMT elapsed-time: - '65' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: DB9100D1C1464D2385AD0435E3DBBDD3 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:12:55Z' + - 'Ref A: 19593A10B82E497E9A0105DF9D9E29F1 Ref B: CO6AA3150220029 Ref C: 2025-09-12T01:24:08Z' status: code: 200 message: OK @@ -796,457 +692,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:13:27 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9761C42564EB49E3ABF92598A28FCFF7 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:13:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:13:59 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 79CEA37F19844BDABF4F459670B2E4E7 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:13:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:14:33 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B6A2398249644D6BA23914C4139ABE63 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:14: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:15:06 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0F821B7CB2F34BCC89820D446AF88AA5 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:15: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:15:37 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4801C3DEBA4B4583B47F4FEB0523664D Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:15:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --replica-count --partition-count - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:16:09 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A8A72BB7627545318DB12DE1F00B4A4C Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:16: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:16:39 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 68ED4252A744471A814582EEB3F6C2DF Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:16: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:17:11 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 46DF0FE7562C4BF8839482DD5FAFD23A Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:17: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:17:41 GMT + - Fri, 12 Sep 2025 01:24:38 GMT elapsed-time: - '64' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C710DBB28D7E450B956D56677CF90081 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:17:42Z' + - 'Ref A: 5C9B81D0B13F40DEBA0805CB841FE5ED Ref B: MWH011020806052 Ref C: 2025-09-12T01:24:38Z' status: code: 200 message: OK @@ -1264,41 +744,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:18:12 GMT + - Fri, 12 Sep 2025 01:25:08 GMT elapsed-time: - '64' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A25549DD33CE4257B1A71BD7328FD403 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:18:13Z' + - 'Ref A: 3F13F89FCF564B87BDACCE97FD0D7CFC Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:25:09Z' status: code: 200 message: OK @@ -1316,31 +796,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:18:43 GMT + - Fri, 12 Sep 2025 01:25:39 GMT elapsed-time: - - '66' + - '63' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1348,9 +828,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0606620A18A64284B0DB34750CDC7013 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:18:43Z' + - 'Ref A: BF653F6634C34BC694C896959B004BEC Ref B: MWH011020806029 Ref C: 2025-09-12T01:25:39Z' status: code: 200 message: OK @@ -1368,83 +848,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:19:15 GMT - elapsed-time: - - '84' - etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D7D8194219104F759EF58521602A628D Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:19: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 - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:19:46 GMT + - Fri, 12 Sep 2025 01:26:09 GMT elapsed-time: - '67' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1452,9 +880,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E74AC2802388443DA441B92B390469A9 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:19:46Z' + - 'Ref A: 75DE4EA1C4EC4BA69A43FDFB69CAAD56 Ref B: MWH011020809031 Ref C: 2025-09-12T01:26:09Z' status: code: 200 message: OK @@ -1472,31 +900,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:20:17 GMT + - Fri, 12 Sep 2025 01:26:40 GMT elapsed-time: - - '114' + - '74' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1504,9 +932,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 71B3FA67ADBE44EEA1CE39437EF703B7 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:20:17Z' + - 'Ref A: 11FB785100AD419AA27AE43B082A246E Ref B: MWH011020806054 Ref C: 2025-09-12T01:26:40Z' status: code: 200 message: OK @@ -1524,31 +952,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '750' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:20:48 GMT + - Fri, 12 Sep 2025 01:27:10 GMT elapsed-time: - - '69' + - '60' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1556,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1EBBF11B12C04D4E95BD28D966A43CB8 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:20:48Z' + - 'Ref A: 12CFA2451624471598316588BDFA84C0 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:27:11Z' status: code: 200 message: OK @@ -1576,31 +1004,31 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.299Z"},"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: - - '742' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:21:20 GMT + - Fri, 12 Sep 2025 01:39:50 GMT elapsed-time: - - '70' + - '65' etag: - - W/"datetime'2025-05-16T08%3A06%3A39.8534433Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.3029811Z'" expires: - '-1' pragma: - no-cache request-id: - - ab7c2d1e-322c-11f0-b442-644ed7a2823f + - 72427ac2-8f76-11f0-9cef-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1608,9 +1036,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F4AED37BE977467885571792DEE3A928 Ref B: TYO01EDGE3520 Ref C: 2025-05-16T08:21:19Z' + - 'Ref A: FAA29CD4EC904514A770AEDB498BC04B Ref B: CO6AA3150218017 Ref C: 2025-09-12T01:39:50Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml index 5226cfc99d5..35ca1dd0309 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_private_endpoint.yaml @@ -11,14 +11,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_private_endpoint","date":"2025-05-16T08:21:24Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_private_endpoint","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:21:28 GMT + - Fri, 12 Sep 2025 01:18:53 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: EFB15BB01C57445D90C73E03A0BE762F Ref B: TYO201100113017 Ref C: 2025-05-16T08:21:28Z' + - 'Ref A: C833BAC4CC1C4AF0926742A004B55FFF Ref B: MWH011020808023 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -62,33 +62,33 @@ interactions: Content-Type: - application/json ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:21:39 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '6896' + - '8401' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/59b7cc33-dff9-4d9a-a29e-75ec7f60db22 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/4dac317d-3e2f-4d3e-84c8-af849a840f8d x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 065F54263BED4D228C4172244A9291FE Ref B: TYO201100114031 Ref C: 2025-05-16T08:21:29Z' + - 'Ref A: E7D53C473FBF4C85B309171A50230B95 Ref B: MWH011020808029 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -118,303 +118,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:21:40 GMT + - Fri, 12 Sep 2025 01:19:03 GMT elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E87EA9BED47645C98A89F7BC6792228A Ref B: TYO201100114031 Ref C: 2025-05-16T08:21: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:22:11 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 29863E04BC244227A95730470D334E47 Ref B: TYO201100114031 Ref C: 2025-05-16T08:22: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:22:42 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 25FA204860154892A301E7B2C99A4DC5 Ref B: TYO201100114031 Ref C: 2025-05-16T08:22: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:23:13 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 235DE4BC2DC6484B87BFC4667F5C850A Ref B: TYO201100114031 Ref C: 2025-05-16T08:23: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:23:44 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 96F21772DEF74C72ADDEE91D1C1B4F07 Ref B: TYO201100114031 Ref C: 2025-05-16T08:23: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:24:16 GMT - elapsed-time: - - '72' + - '66' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 4660E9D3688742B1AEFFFA6B794B6D63 Ref B: TYO201100114031 Ref C: 2025-05-16T08:24:16Z' + - 'Ref A: 7F3CA3A6C0DD44F587BCA550CA25CCAB Ref B: MWH011020807029 Ref C: 2025-09-12T01:19:03Z' status: code: 200 message: OK @@ -430,33 +170,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:24:47 GMT + - Fri, 12 Sep 2025 01:19:34 GMT elapsed-time: - - '85' + - '59' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -464,9 +204,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2205053F4F584B189E20C1447ECF466E Ref B: TYO201100114031 Ref C: 2025-05-16T08:24:47Z' + - 'Ref A: 8FB74498025C41198130E64A089F0AD4 Ref B: MWH011020809040 Ref C: 2025-09-12T01:19:33Z' status: code: 200 message: OK @@ -482,43 +222,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:25:18 GMT + - Fri, 12 Sep 2025 01:20:04 GMT elapsed-time: - - '72' + - '69' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 98FBC3B237AE448B8B5965541353D9A2 Ref B: TYO201100114031 Ref C: 2025-05-16T08:25:18Z' + - 'Ref A: 20AFA0FFED584D189D3B5D855408D730 Ref B: MWH011020806040 Ref C: 2025-09-12T01:20:04Z' status: code: 200 message: OK @@ -534,33 +274,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:25:49 GMT + - Fri, 12 Sep 2025 01:20:34 GMT elapsed-time: - - '71' + - '66' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -568,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5932FA831EF84CEE9157C26E1C29A2E9 Ref B: TYO201100114031 Ref C: 2025-05-16T08:25:49Z' + - 'Ref A: 0979B31B731C4CBBAA82B0656114FBA0 Ref B: CO6AA3150220053 Ref C: 2025-09-12T01:20:34Z' status: code: 200 message: OK @@ -586,43 +326,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:26:20 GMT + - Fri, 12 Sep 2025 01:21:04 GMT elapsed-time: - - '111' + - '67' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 50FF21A272A84BF399968AF9B68A5D26 Ref B: TYO201100114031 Ref C: 2025-05-16T08:26:20Z' + - 'Ref A: 2601DBEE6F4B4C1AB750350979070070 Ref B: MWH011020807040 Ref C: 2025-09-12T01:21:05Z' status: code: 200 message: OK @@ -638,43 +378,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:26:51 GMT + - Fri, 12 Sep 2025 01:21:34 GMT elapsed-time: - - '76' + - '63' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8905E34374814823849F86FE4C07446E Ref B: TYO201100114031 Ref C: 2025-05-16T08:26:51Z' + - 'Ref A: 001BBCA7F6C240DB8F851369617BB210 Ref B: MWH011020807029 Ref C: 2025-09-12T01:21:35Z' status: code: 200 message: OK @@ -690,43 +430,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:27:23 GMT + - Fri, 12 Sep 2025 01:22:05 GMT elapsed-time: - '64' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 3812565818B14D8995B473D3D3234857 Ref B: TYO201100114031 Ref C: 2025-05-16T08:27:23Z' + - 'Ref A: EEEB5393546D4884A5A08548AD999296 Ref B: CO6AA3150217017 Ref C: 2025-09-12T01:22:05Z' status: code: 200 message: OK @@ -742,33 +482,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:27:54 GMT + - Fri, 12 Sep 2025 01:22:36 GMT elapsed-time: - - '76' + - '59' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -776,9 +516,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E07F5BC96D814ED6A2F07BF8922F65B2 Ref B: TYO201100114031 Ref C: 2025-05-16T08:27:54Z' + - 'Ref A: A64D6FB34BAE4410B53181AE59F61F21 Ref B: CO6AA3150219009 Ref C: 2025-09-12T01:22:37Z' status: code: 200 message: OK @@ -794,293 +534,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:28:25 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CFAACFE6DEB94351B5C33C17EB3C5FF1 Ref B: TYO201100114031 Ref C: 2025-05-16T08:28:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:28:56 GMT - elapsed-time: - - '96' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4B311BA1AAEC4C98905FE9683C96E7A7 Ref B: TYO201100114031 Ref C: 2025-05-16T08:28:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:29:28 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5C19D9199FD240F18E611A78C62FC762 Ref B: TYO201100114031 Ref C: 2025-05-16T08:29:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:30:04 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 255509CCDE9F482AA186FF730B94D2E6 Ref B: TYO201100114031 Ref C: 2025-05-16T08:30: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:30:36 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5EDA961DA8574F6997C5986878E618DE Ref B: TYO201100114031 Ref C: 2025-05-16T08:30: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:31:07 GMT + - Fri, 12 Sep 2025 01:23:07 GMT elapsed-time: - '65' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1088,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C986F4A5D25743DD993DF5FE6124EB91 Ref B: TYO201100114031 Ref C: 2025-05-16T08:31:06Z' + - 'Ref A: BAD3C2DBA2DD432FA74AECC09D483FA4 Ref B: CO6AA3150218035 Ref C: 2025-09-12T01:23:07Z' status: code: 200 message: OK @@ -1106,33 +586,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:31:38 GMT + - Fri, 12 Sep 2025 01:23:37 GMT elapsed-time: - - '65' + - '68' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1140,9 +620,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EC0C17EDDF51483C8E82D39827436473 Ref B: TYO201100114031 Ref C: 2025-05-16T08:31:37Z' + - 'Ref A: 95523B41BD8F41E4A97C9CB8A34FE4ED Ref B: CO6AA3150218035 Ref C: 2025-09-12T01:23:38Z' status: code: 200 message: OK @@ -1158,33 +638,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:32:09 GMT + - Fri, 12 Sep 2025 01:24:08 GMT elapsed-time: - - '67' + - '68' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1192,9 +672,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 99DE2AB76BFF46A3822041DADB8341A4 Ref B: TYO201100114031 Ref C: 2025-05-16T08:32:09Z' + - 'Ref A: B9870E9786144F44A2779773DDB8EBDD Ref B: MWH011020809054 Ref C: 2025-09-12T01:24:08Z' status: code: 200 message: OK @@ -1210,43 +690,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:32:41 GMT + - Fri, 12 Sep 2025 01:24:39 GMT elapsed-time: - - '75' + - '68' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 2FC91040FA9647CB93F3D8EBD7757DEE Ref B: TYO201100114031 Ref C: 2025-05-16T08:32:40Z' + - 'Ref A: 48667ABC31B54B8AAEB46734C6769B5E Ref B: CO6AA3150217037 Ref C: 2025-09-12T01:24:39Z' status: code: 200 message: OK @@ -1262,43 +742,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:33:12 GMT + - Fri, 12 Sep 2025 01:25:08 GMT elapsed-time: - - '67' + - '60' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8CDF465E874C4FE5B2390A748F94FDDD Ref B: TYO201100114031 Ref C: 2025-05-16T08:33:11Z' + - 'Ref A: 44219FA30CE54BD49140A5A4E62AEBDD Ref B: CO6AA3150220027 Ref C: 2025-09-12T01:25:09Z' status: code: 200 message: OK @@ -1314,33 +794,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:33:43 GMT + - Fri, 12 Sep 2025 01:25:39 GMT elapsed-time: - - '73' + - '60' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1348,9 +828,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3BF76966798940E1B5BE3B988979CFF1 Ref B: TYO201100114031 Ref C: 2025-05-16T08:33:42Z' + - 'Ref A: 268AD7907CC6497EB0FAABDBF20068DF Ref B: MWH011020809060 Ref C: 2025-09-12T01:25:39Z' status: code: 200 message: OK @@ -1366,33 +846,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:34:14 GMT + - Fri, 12 Sep 2025 01:26:10 GMT elapsed-time: - - '71' + - '56' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1400,9 +880,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D655B08120E84CAA96AFB148B5C07A15 Ref B: TYO201100114031 Ref C: 2025-05-16T08:34:14Z' + - 'Ref A: 2F08CA9E6BE7465BB2B1492F7DF7A4C8 Ref B: CO6AA3150217031 Ref C: 2025-09-12T01:26:10Z' status: code: 200 message: OK @@ -1418,33 +898,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:34:46 GMT + - Fri, 12 Sep 2025 01:26:40 GMT elapsed-time: - - '84' + - '66' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1452,9 +932,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: DA50E95BF2AA4B749DE9B2AD33EB6B5D Ref B: TYO201100114031 Ref C: 2025-05-16T08:34:45Z' + - 'Ref A: D6CB0218D9B846518CCF48FB5BBFAA00 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:26:41Z' status: code: 200 message: OK @@ -1470,33 +950,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:35:17 GMT + - Fri, 12 Sep 2025 01:27:11 GMT elapsed-time: - - '62' + - '60' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1504,9 +984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1CA12FFEDDF24E0996C29DD5A54D5569 Ref B: TYO201100114031 Ref C: 2025-05-16T08:35:16Z' + - 'Ref A: C4513AF907E244FA9DD28A06BFA875D4 Ref B: CO6AA3150219047 Ref C: 2025-09-12T01:27:11Z' status: code: 200 message: OK @@ -1522,43 +1002,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '969' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:35:48 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '67' + - '59' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: AD8CDE6AA298424EBBD704B0E16436EB Ref B: TYO201100114031 Ref C: 2025-05-16T08:35:48Z' + - 'Ref A: E1159C7689604C019875F611FF11C092 Ref B: MWH011020808031 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK @@ -1574,33 +1054,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + 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":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:03.404Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '740' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:36:20 GMT + - Fri, 12 Sep 2025 01:40:22 GMT elapsed-time: - - '65' + - '66' etag: - - W/"datetime'2025-05-16T08%3A21%3A39.3653002Z'" + - W/"datetime'2025-09-12T01%3A19%3A03.4084089Z'" expires: - '-1' pragma: - no-cache request-id: - - c32fd999-322e-11f0-80e9-644ed7a2823f + - 723f49a8-8f76-11f0-910b-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1608,9 +1088,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 01CF219636D64B938C26CBAF3422B5EC Ref B: TYO201100114031 Ref C: 2025-05-16T08:36:19Z' + - 'Ref A: F5CEC6B522D445E5A945C041CA58D080 Ref B: CO6AA3150219035 Ref C: 2025-09-12T01:40:22Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml index fd1ba0949d1..f73828409ac 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_semantic_search.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_semantic_search","date":"2025-05-16T08:36:27Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:36:37 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,10 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F5077FB969F24557A5AFF95D3F7D1DF4 Ref B: TYO201151005023 Ref C: 2025-05-16T08:36:37Z' + - 'Ref A: 5DF4070F52504BC4BB0D560028D46AFB Ref B: CO6AA3150218023 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK @@ -65,31 +65,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:36:49 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '6777' + - '5801' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -97,13 +97,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/c2791635-d646-4051-a31b-1d3a6222897b - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/49dcc3e9-afee-4a7a-8930-f2fa309caadd x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '798' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 76CE28EF7E9D42C5AA55D24F835FF797 Ref B: TYO201100114023 Ref C: 2025-05-16T08:36:39Z' + - 'Ref A: 6539B81DCE75427683FF08C42D0B27B2 Ref B: MWH011020806060 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -121,499 +121,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:36:50 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6E2C0FF4DBDF4E4F9A989419471C5EA7 Ref B: TYO201100114023 Ref C: 2025-05-16T08:36:49Z' - 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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:37:21 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1B250810C5A04830896DF328BF46F6CD Ref B: TYO201100114023 Ref C: 2025-05-16T08:37:20Z' - 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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:37:53 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '418' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 659979EBC5D4448A8D6FAE7C9CBA9306 Ref B: TYO201100114023 Ref C: 2025-05-16T08:37:52Z' - 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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:38:24 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6B22128CDE8C4D799981CA1B5D2A363B Ref B: TYO201100114023 Ref C: 2025-05-16T08:38:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:38:55 GMT - elapsed-time: - - '102' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9229B78B96644F11A37875AD28865D3F Ref B: TYO201100114023 Ref C: 2025-05-16T08:38:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:39:26 GMT - elapsed-time: - - '89' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E73838B12D374B7984438EA98280D66A Ref B: TYO201100114023 Ref C: 2025-05-16T08:39:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:39:57 GMT - elapsed-time: - - '100' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 233918E8D2524174B13F12EAF4B7FBBB Ref B: TYO201100114023 Ref C: 2025-05-16T08:39:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:40:29 GMT - elapsed-time: - - '107' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EB68277984134A5E8712556A916D3F07 Ref B: TYO201100114023 Ref C: 2025-05-16T08:40:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:41:00 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E0BBD1575A0F491FB808F5FDBEC5272E Ref B: TYO201100114023 Ref C: 2025-05-16T08:40: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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:41:31 GMT - elapsed-time: - - '71' + - '63' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -621,9 +153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ACE277701A0844AD96C682F303D02B68 Ref B: TYO201100114023 Ref C: 2025-05-16T08:41:31Z' + - 'Ref A: F780C723F3A742729FB9B3F11A46CCFB Ref B: CO6AA3150220017 Ref C: 2025-09-12T01:19:01Z' status: code: 200 message: OK @@ -641,31 +173,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:42:02 GMT + - Fri, 12 Sep 2025 01:19:32 GMT elapsed-time: - - '99' + - '76' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -673,9 +205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F137897B135D45BD932EA5F1DDA35A62 Ref B: TYO201100114023 Ref C: 2025-05-16T08:42:02Z' + - 'Ref A: 6579158B3CC347DCA79DBA7F1521174D Ref B: MWH011020806036 Ref C: 2025-09-12T01:19:32Z' status: code: 200 message: OK @@ -693,31 +225,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:42:34 GMT + - Fri, 12 Sep 2025 01:20:03 GMT elapsed-time: - - '72' + - '66' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -725,9 +257,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A8CCF6EA59C54C7C85FB1666209BD797 Ref B: TYO201100114023 Ref C: 2025-05-16T08:42:33Z' + - 'Ref A: B290DC8BB9CD49FF82D4101381BAA4B9 Ref B: CO6AA3150219017 Ref C: 2025-09-12T01:20:02Z' status: code: 200 message: OK @@ -745,31 +277,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:43:05 GMT + - Fri, 12 Sep 2025 01:20:33 GMT elapsed-time: - - '75' + - '120' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -777,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 998A5145D95444E7AB70BA07E2CF8D7D Ref B: TYO201100114023 Ref C: 2025-05-16T08:43:04Z' + - 'Ref A: 1574F2A7A07F4B50BE689EB0BF428157 Ref B: CO6AA3150218033 Ref C: 2025-09-12T01:20:33Z' status: code: 200 message: OK @@ -797,31 +329,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:43:36 GMT + - Fri, 12 Sep 2025 01:21:03 GMT elapsed-time: - - '99' + - '80' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -829,9 +361,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2B108211F79640DF9356E9E73FBBB942 Ref B: TYO201100114023 Ref C: 2025-05-16T08:43:36Z' + - 'Ref A: 08D7AF2DAFB648FAAC897FD61BE11A70 Ref B: CO6AA3150220019 Ref C: 2025-09-12T01:21:04Z' status: code: 200 message: OK @@ -849,31 +381,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:44:07 GMT + - Fri, 12 Sep 2025 01:21:34 GMT elapsed-time: - - '70' + - '63' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -881,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6FE3B9E7077943C79F21B2B3F8349C73 Ref B: TYO201100114023 Ref C: 2025-05-16T08:44:07Z' + - 'Ref A: D62156770EB44C35B0B7CBAE79C2CE70 Ref B: CO6AA3150217023 Ref C: 2025-09-12T01:21:34Z' status: code: 200 message: OK @@ -901,41 +433,41 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:44:38 GMT + - Fri, 12 Sep 2025 01:22:04 GMT elapsed-time: - - '66' + - '63' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 527D0ADF1EF242F09BCAF1B85AA4C755 Ref B: TYO201100114023 Ref C: 2025-05-16T08:44:38Z' + - 'Ref A: E4AF0D86A7BC426BA11F82136F02310A Ref B: MWH011020806042 Ref C: 2025-09-12T01:22:05Z' status: code: 200 message: OK @@ -953,31 +485,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:45:10 GMT + - Fri, 12 Sep 2025 01:22:35 GMT elapsed-time: - - '91' + - '101' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -985,9 +517,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BB0B615EC05D4BA5B58337E9F087A4FC Ref B: TYO201100114023 Ref C: 2025-05-16T08:45:09Z' + - 'Ref A: E883B0AD51974249A69CBB598543F375 Ref B: CO6AA3150219033 Ref C: 2025-09-12T01:22:35Z' status: code: 200 message: OK @@ -1005,31 +537,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:45:41 GMT + - Fri, 12 Sep 2025 01:23:05 GMT elapsed-time: - - '69' + - '83' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1037,9 +569,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 064784F7B461404CAD18684523F18477 Ref B: TYO201100114023 Ref C: 2025-05-16T08:45:40Z' + - 'Ref A: 7D648EED6C8B4DD58CCBE67267BF816C Ref B: CO6AA3150217053 Ref C: 2025-09-12T01:23:06Z' status: code: 200 message: OK @@ -1057,31 +589,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:46:12 GMT + - Fri, 12 Sep 2025 01:23:36 GMT elapsed-time: - - '65' + - '63' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1089,9 +621,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F8D084E042CD4F78A00B178CC1D60B65 Ref B: TYO201100114023 Ref C: 2025-05-16T08:46:12Z' + - 'Ref A: E32DF502D52F43F69DAF9AC1256AFAF0 Ref B: MWH011020809042 Ref C: 2025-09-12T01:23:36Z' status: code: 200 message: OK @@ -1109,31 +641,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:46:43 GMT + - Fri, 12 Sep 2025 01:24:07 GMT elapsed-time: - '66' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1141,9 +673,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A0E7608EA82045A2A0CDC74D7CAB0508 Ref B: TYO201100114023 Ref C: 2025-05-16T08:46:43Z' + - 'Ref A: AC70FFAEB8F348EAB494F3B4AA08EF13 Ref B: CO6AA3150220053 Ref C: 2025-09-12T01:24:07Z' status: code: 200 message: OK @@ -1161,135 +693,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:47:14 GMT + - Fri, 12 Sep 2025 01:24:37 GMT elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8FB56FB55E9A4AECBA0032861404B4A0 Ref B: TYO201100114023 Ref C: 2025-05-16T08:47: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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:47:46 GMT - elapsed-time: - - '80' - etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EB724184E720486E9A88A6263A58033D Ref B: TYO201100114023 Ref C: 2025-05-16T08:47: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 --semantic-search - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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: - - '754' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 08:48:17 GMT - elapsed-time: - - '74' + - '72' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1297,9 +725,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: C5EB1F4343174B8785B24082AAA021A5 Ref B: TYO201100114023 Ref C: 2025-05-16T08:48:16Z' + - 'Ref A: 729A46CC32E74414B4E75C6AA04039B1 Ref B: CO6AA3150218021 Ref C: 2025-09-12T01:24:38Z' status: code: 200 message: OK @@ -1317,31 +745,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:48:48 GMT + - Fri, 12 Sep 2025 01:25:08 GMT elapsed-time: - '63' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1349,9 +777,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DB49221664CA4966B909027AE32ECA42 Ref B: TYO201100114023 Ref C: 2025-05-16T08:48:48Z' + - 'Ref A: CF029E4B5A8540DDA45CDF375A1FE34D Ref B: MWH011020808031 Ref C: 2025-09-12T01:25:08Z' status: code: 200 message: OK @@ -1369,31 +797,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:49:19 GMT + - Fri, 12 Sep 2025 01:25:39 GMT elapsed-time: - - '77' + - '68' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1401,9 +829,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 759DC749ECF346A2A2DF3FA5CBD6C553 Ref B: TYO201100114023 Ref C: 2025-05-16T08:49:19Z' + - 'Ref A: BB8D36E29616409E9DA2E42D90A6FCBA Ref B: MWH011020809040 Ref C: 2025-09-12T01:25:38Z' status: code: 200 message: OK @@ -1421,31 +849,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:49:51 GMT + - Fri, 12 Sep 2025 01:26:09 GMT elapsed-time: - - '64' + - '62' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1453,9 +881,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2CA507FAC1414895998D3C3709C2E3ED Ref B: TYO201100114023 Ref C: 2025-05-16T08:49:50Z' + - 'Ref A: 86A1DF07393E4C7A8D2A98FC1248F912 Ref B: MWH011020806036 Ref C: 2025-09-12T01:26:09Z' status: code: 200 message: OK @@ -1473,41 +901,41 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:50:26 GMT + - Fri, 12 Sep 2025 01:26:39 GMT elapsed-time: - - '1543' + - '60' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C52BE354A62D49BF85C00AFAC326C19A Ref B: TYO201100114023 Ref C: 2025-05-16T08:50:22Z' + - 'Ref A: 73CD907631804F9AAB801E91B6D1176D Ref B: MWH011020808036 Ref C: 2025-09-12T01:26:40Z' status: code: 200 message: OK @@ -1525,31 +953,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '754' + - '975' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:50:58 GMT + - Fri, 12 Sep 2025 01:27:10 GMT elapsed-time: - - '71' + - '64' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1557,9 +985,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F806EF551D7D4DEEA118E6B85DF6E351 Ref B: TYO201100114023 Ref C: 2025-05-16T08:50:57Z' + - 'Ref A: 5E0DB4AB180649D58FDB6E76E1AC977A Ref B: MWH011020806054 Ref C: 2025-09-12T01:27:10Z' status: code: 200 message: OK @@ -1577,31 +1005,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"disabled"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"disabled","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '746' + - '967' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:51:29 GMT + - Fri, 12 Sep 2025 01:39:51 GMT elapsed-time: - - '73' + - '78' etag: - - W/"datetime'2025-05-16T08%3A36%3A48.8462402Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.3795913Z'" expires: - '-1' pragma: - no-cache request-id: - - dfb8382c-3230-11f0-bc51-644ed7a2823f + - 72707a0c-8f76-11f0-bc42-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1609,9 +1037,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5BBA9B58CDA64EE5B7B24935E24631AC Ref B: TYO201100114023 Ref C: 2025-05-16T08:51:29Z' + - 'Ref A: 513E15AFDE6745298883274DFB41F726 Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:39:51Z' status: code: 200 message: OK @@ -1629,21 +1057,21 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_semantic_search","date":"2025-05-16T08:36:27Z","module":"search","DateCreated":"2025-05-16T08:36:50Z","Creator":"test@example.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '400' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:51:31 GMT + - Fri, 12 Sep 2025 01:39:53 GMT expires: - '-1' pragma: @@ -1654,10 +1082,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 84E0452C833B4F5997EC08ACC82810DB Ref B: TYO201151003052 Ref C: 2025-05-16T08:51:31Z' + - 'Ref A: EEFC0B88A67442059EEA372509DF4E8C Ref B: CO6AA3150219017 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK @@ -1681,31 +1109,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '742' + - '963' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:51:32 GMT + - Fri, 12 Sep 2025 01:39:54 GMT elapsed-time: - - '182' + - '155' etag: - - W/"datetime'2025-05-16T08%3A51%3A33.5590071Z'" + - W/"datetime'2025-09-12T01%3A39%3A54.8260581Z'" expires: - '-1' pragma: - no-cache request-id: - - f582b73a-3232-11f0-bb77-644ed7a2823f + - 6067450e-8f79-11f0-b93e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1713,13 +1141,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/cf84f947-47d4-4521-af52-fc78801553fe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/8230ba8a-172a-4175-89ed-aed282f1ae3b x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: E62C35E371C449838AF217D4EF4E40C8 Ref B: TYO201100117049 Ref C: 2025-05-16T08:51:32Z' + - 'Ref A: 10321384D66649A2BA14CB3081AC4AC8 Ref B: MWH011020808031 Ref C: 2025-09-12T01:39:53Z' status: code: 200 message: OK @@ -1737,21 +1165,21 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_semantic_search","date":"2025-05-16T08:36:27Z","module":"search","DateCreated":"2025-05-16T08:36:50Z","Creator":"test@example.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_semantic_search","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '400' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:51:34 GMT + - Fri, 12 Sep 2025 01:39:55 GMT expires: - '-1' pragma: @@ -1763,9 +1191,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BC1CF9C384364B4BB42EE59A54C1DCDF Ref B: TYO201151001060 Ref C: 2025-05-16T08:51:34Z' + - 'Ref A: FBF22D7B51934732A0A99FE835CF9F64 Ref B: CO6AA3150218023 Ref C: 2025-09-12T01:39:55Z' status: code: 200 message: OK @@ -1789,31 +1217,31 @@ interactions: ParameterSetName: - -n -g --sku --semantic-search User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"standard"},"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"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"standard","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.375Z"},"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: - - '746' + - '967' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 08:51:38 GMT + - Fri, 12 Sep 2025 01:39:56 GMT elapsed-time: - - '195' + - '167' etag: - - W/"datetime'2025-05-16T08%3A51%3A39.0465961Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.5592952Z'" expires: - '-1' pragma: - no-cache request-id: - - f7929cfa-3232-11f0-8dd6-644ed7a2823f + - 6209b798-8f79-11f0-92bc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -1821,13 +1249,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/21217dad-b7b5-4e4a-a76b-652ccb519d4e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/127b5fe7-bb36-4b63-a768-55a15549d486 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 42C1F856D62E4347A579CBBC3553E555 Ref B: TYO201151003034 Ref C: 2025-05-16T08:51:38Z' + - 'Ref A: D3C5675D26674CDDB150691BAB370813 Ref B: MWH011020807062 Ref C: 2025-09-12T01:39:55Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml index 8f657c69d39..3f8939f8ad4 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_create_skus.yaml @@ -13,96 +13,1927 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-01 + 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":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '391' + - '389' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:32 GMT + - Fri, 12 Sep 2025 01:18:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F8E027A2E626476B9B51783F8A708892 Ref B: CO6AA3150220029 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"hostingMode": "default", - "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": - {"name": "standard"}}' + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:04 GMT + elapsed-time: + - '9131' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/e00a5605-ecba-4901-b442-3ee5b3eae102 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3FD02BDA0AF94C7AA41EA1AB85935560 Ref B: MWH011020807042 Ref C: 2025-09-12T01:18:54Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:04 GMT + elapsed-time: + - '67' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: DB499650DD2944D48A68B409D818FF72 Ref B: CO6AA3150217035 Ref C: 2025-09-12T01:19: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:19:34 GMT + elapsed-time: + - '61' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 225982F7A0F4485690DADE6094101C0F Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:19: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:05 GMT + elapsed-time: + - '58' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 62D68C8E8C7B4E609D82B1B72C15F944 Ref B: MWH011020807023 Ref C: 2025-09-12T01:20: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:20:35 GMT + elapsed-time: + - '60' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: FB13F26CB3BB49C0B8D1E32F6A0DE4BA Ref B: CO6AA3150217025 Ref C: 2025-09-12T01:20: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:06 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 95BAF300F57540A3AB7AF999F27C0E10 Ref B: CO6AA3150219027 Ref C: 2025-09-12T01:21: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:21:37 GMT + elapsed-time: + - '60' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 7E9D429AD57F43688DB3084D93396921 Ref B: MWH011020806031 Ref C: 2025-09-12T01:21:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:07 GMT + elapsed-time: + - '100' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 3ED38C9C96EE48A78DFFF6AF819E96CC Ref B: MWH011020809052 Ref C: 2025-09-12T01:22:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:22:38 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: BD85CD9155B74E719103144D66F1F512 Ref B: MWH011020809025 Ref C: 2025-09-12T01:22: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:08 GMT + elapsed-time: + - '73' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 8BF3C0B1B3D54024A18C660579EE2926 Ref B: MWH011020807023 Ref C: 2025-09-12T01:23: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:23:39 GMT + elapsed-time: + - '61' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 43BCE62410A64764B7BD52487D2B31F4 Ref B: MWH011020809052 Ref C: 2025-09-12T01:23: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:09 GMT + elapsed-time: + - '69' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 7F052FB66EC347C8884490EDE924E3BE Ref B: MWH011020809023 Ref C: 2025-09-12T01:24: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:24:40 GMT + elapsed-time: + - '70' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 27125EA975534914BF893332475CB0C2 Ref B: MWH011020809031 Ref C: 2025-09-12T01:24: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:10 GMT + elapsed-time: + - '59' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: CA57937B86624C2A9EE917FDFEBF92AE Ref B: CO6AA3150217029 Ref C: 2025-09-12T01:25: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:25:41 GMT + elapsed-time: + - '59' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 4F0BDC16C1444DAE8CABAE604523AA48 Ref B: CO6AA3150219039 Ref C: 2025-09-12T01:25: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:12 GMT + elapsed-time: + - '70' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: F721EC29D5394D96B204C15B2A8EA7B1 Ref B: MWH011020806025 Ref C: 2025-09-12T01:26: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:26:42 GMT + elapsed-time: + - '57' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: DC32ED48E8A94F9091A8ED4E0460A63B Ref B: CO6AA3150220045 Ref C: 2025-09-12T01:26: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:27:12 GMT + elapsed-time: + - '63' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 91BA7B1430B84E189DDDB049DBCB2E00 Ref B: MWH011020806052 Ref C: 2025-09-12T01:27: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:39:51 GMT + elapsed-time: + - '64' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 6DF609FE7B8D4BB3B0396C7A233892E3 Ref B: MWH011020806036 Ref C: 2025-09-12T01:39:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '971' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 01:40:21 GMT + elapsed-time: + - '70' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: E9160F0276AF414380A9CF552E6A99F7 Ref B: MWH011020809042 Ref C: 2025-09-12T01:40:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:04.260Z"},"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: + - '963' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:28:34 GMT + elapsed-time: + - '89' + etag: + - W/"datetime'2025-09-12T01%3A19%3A04.2635326Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 724377a2-8f76-11f0-a794-683421896a24 + 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: 68879D4124F340DABD424F4B1BB9C2A1 Ref B: CO6AA3150217023 Ref C: 2025-09-12T06:28:34Z' + 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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_create_skus","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '389' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:28:35 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: 6B929D5A14F248AEB1B9CB05D0F9199A Ref B: MWH011020808054 Ref C: 2025-09-12T06:28:35Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --replica-count --partition-count + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:28:42 GMT + elapsed-time: + - '6437' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/dec4ed29-6825-43d6-b89b-00962db38179 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F38855C697544E9499E92C0ACD89E483 Ref B: CO6AA3150217021 Ref C: 2025-09-12T06:28:36Z' + 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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:28:43 GMT + elapsed-time: + - '62' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 8904583C0DBF4212B6590929505DFE38 Ref B: MWH011020807031 Ref C: 2025-09-12T06:28: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:29:14 GMT + elapsed-time: + - '68' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: F8A393C5BE264938BEB0B5965F7262CD Ref B: CO6AA3150220025 Ref C: 2025-09-12T06:29: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:29:44 GMT + elapsed-time: + - '57' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 0C0AA302ED6A47839294D6702ADDF753 Ref B: MWH011020809062 Ref C: 2025-09-12T06:29: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:30:15 GMT + elapsed-time: + - '59' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 862D98D48EFE42DB9A35D1FC99419E2B Ref B: CO6AA3150219039 Ref C: 2025-09-12T06:30: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:30:46 GMT + elapsed-time: + - '124' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 888AA77D287C4AB0A018D3764C0AEB11 Ref B: CO6AA3150220017 Ref C: 2025-09-12T06:30: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:31:16 GMT + elapsed-time: + - '68' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: FCFC10EC32CD41FC909CD126BFA16E26 Ref B: CO6AA3150220035 Ref C: 2025-09-12T06:31: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:31:46 GMT + elapsed-time: + - '57' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 369B98C6C5F14061A363C4A35B3826AF Ref B: CO6AA3150219047 Ref C: 2025-09-12T06:31: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:32:16 GMT + elapsed-time: + - '61' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: B3D25AC9A9EE4825BEE1DA5AF066B668 Ref B: MWH011020809040 Ref C: 2025-09-12T06:32:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --replica-count --partition-count + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:32:47 GMT + elapsed-time: + - '69' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 85CA54D8F908494B9B0D98FC0590ED75 Ref B: CO6AA3150219025 Ref C: 2025-09-12T06:32: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 + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:33:17 GMT + elapsed-time: + - '65' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 21A730FAB7564CC8B63DCE4B6D944C86 Ref B: CO6AA3150217049 Ref C: 2025-09-12T06:33:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --replica-count --partition-count + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:33:48 GMT + elapsed-time: + - '69' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 5FEB425EE6134276993CC1324065EB4A Ref B: CO6AA3150220017 Ref C: 2025-09-12T06:33:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - search service create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --replica-count --partition-count + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 06:34:18 GMT + elapsed-time: + - '65' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 56669518CD944583BDA0F1401352F178 Ref B: MWH011020806062 Ref C: 2025-09-12T06:34:18Z' + status: + code: 200 + message: OK +- request: + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive - Content-Length: - - '174' - Content-Type: - - application/json ParameterSetName: - - -n -g --sku + - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '733' + - '968' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:36 GMT + - Fri, 12 Sep 2025 06:34:48 GMT elapsed-time: - - '2549' + - '65' etag: - - W/"datetime'2023-10-20T21%3A05%3A36.911599Z'" + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" expires: - '-1' pragma: - no-cache request-id: - - 682fdf12-6f8c-11ee-a9b2-000d3aff5613 + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 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/ac485997-f0f0-40c8-808d-8903a2fe31f1 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A508490EB83841DE9D53BA028F96EFF8 Ref B: MWH011020806040 Ref C: 2025-09-12T06:34:49Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -112,38 +1943,94 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:28:43.180Z"},"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":"basic"}}' + headers: + cache-control: + - no-cache + content-length: + - '960' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 07:37:51 GMT + elapsed-time: + - '114' + etag: + - W/"datetime'2025-09-12T06%3A28%3A43.18771Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - b58f3dc9-8fa1-11f0-b4f4-683421896a24 + 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: 1EE6A832BB20460797A479C50CC991A1 Ref B: MWH011020806062 Ref C: 2025-09-12T07:37:51Z' + 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 --hosting-mode + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-01 + 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":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '391' + - '389' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:36 GMT + - Fri, 12 Sep 2025 07:37:52 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: ECF30F0B915D472C94FAFC54B9856FF3 Ref B: MWH011020809060 Ref C: 2025-09-12T07:37:52Z' status: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"hostingMode": "default", + body: '{"location": "eastus2euap", "properties": {"hostingMode": "highDensity", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": - {"name": "basic"}}' + {"name": "standard3"}}' headers: Accept: - application/json @@ -154,46 +2041,51 @@ interactions: Connection: - keep-alive Content-Length: - - '171' + - '177' Content-Type: - application/json ParameterSetName: - - -n -g --sku --replica-count --partition-count + - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"basic"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '730' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:41 GMT + - Fri, 12 Sep 2025 07:38:00 GMT elapsed-time: - - '3037' + - '6745' etag: - - W/"datetime'2023-10-20T21%3A05%3A41.9566913Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6ad2a7e5-6f8c-11ee-860c-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 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/9e7fa0e6-9d79-48e1-b177-f79bb08eb71d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/589fd261-b670-4d8f-b737-f6a9966e69e5 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D86A8053219D474BAB1D2FE65ADEA83D Ref B: MWH011020809031 Ref C: 2025-09-12T07:37:53Z' status: code: 201 message: Created @@ -201,7 +2093,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -211,91 +2103,96 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/azure_search_cli_test000001?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-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":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_create_skus","date":"2023-10-20T21:05:29Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '391' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:42 GMT + - Fri, 12 Sep 2025 07:38:01 GMT + elapsed-time: + - '105' + etag: + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache + request-id: + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DB95E755ECC74827A49A956487300C54 Ref B: CO6AA3150220037 Ref C: 2025-09-12T07:38:01Z' status: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"hostingMode": "highDensity", - "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": - {"name": "standard3"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive - Content-Length: - - '179' - Content-Type: - - application/json ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - method: PUT - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:49 GMT + - Fri, 12 Sep 2025 07:38:31 GMT elapsed-time: - - '6380' + - '62' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 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/1f3d7643-2a7e-46d7-b9c5-51162e8a73e0 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D2864EFC1C7F4A6398C7F71C6FCD6229 Ref B: CO6AA3150220029 Ref C: 2025-09-12T07:38:31Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -310,40 +2207,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:05:50 GMT + - Fri, 12 Sep 2025 07:39:01 GMT elapsed-time: - - '201' + - '71' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1E289795E5B44A968EF4F6AE91174855 Ref B: MWH011020806042 Ref C: 2025-09-12T07:39:01Z' status: code: 200 message: OK @@ -361,40 +2259,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:06:21 GMT + - Fri, 12 Sep 2025 07:39:32 GMT elapsed-time: - - '558' + - '63' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4FEED449C6B5477392801FF10D3BC436 Ref B: CO6AA3150220023 Ref C: 2025-09-12T07:39:32Z' status: code: 200 message: OK @@ -412,40 +2311,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:06:51 GMT + - Fri, 12 Sep 2025 07:40:01 GMT elapsed-time: - - '182' + - '71' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DC532D0E007C40FB95D1C777E9F859AE Ref B: CO6AA3150220031 Ref C: 2025-09-12T07:40:02Z' status: code: 200 message: OK @@ -463,40 +2363,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:07:22 GMT + - Fri, 12 Sep 2025 07:40:32 GMT elapsed-time: - - '459' + - '62' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 82413D897AB742DA83D8106E78352557 Ref B: CO6AA3150218049 Ref C: 2025-09-12T07:40:32Z' status: code: 200 message: OK @@ -514,40 +2415,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:07:52 GMT + - Fri, 12 Sep 2025 07:41:03 GMT elapsed-time: - - '183' + - '71' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A981A66B2ECE47DBBC9EC4CE9B72AF07 Ref B: CO6AA3150218039 Ref C: 2025-09-12T07:41:03Z' status: code: 200 message: OK @@ -565,40 +2467,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:08:22 GMT + - Fri, 12 Sep 2025 07:41:33 GMT elapsed-time: - - '500' + - '62' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4590F486B66A422794A6BB8A2F7FD14F Ref B: CO6AA3150220009 Ref C: 2025-09-12T07:41:33Z' status: code: 200 message: OK @@ -616,40 +2519,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:08:53 GMT + - Fri, 12 Sep 2025 07:42:03 GMT elapsed-time: - - '170' + - '59' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 58CC3E70EBDA42C58AC4013AF042A18E Ref B: CO6AA3150217029 Ref C: 2025-09-12T07:42:03Z' status: code: 200 message: OK @@ -667,40 +2571,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:09:24 GMT + - Fri, 12 Sep 2025 07:42:34 GMT elapsed-time: - - '435' + - '108' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6CBC70665C8943918564340870B703E6 Ref B: MWH011020806054 Ref C: 2025-09-12T07:42:34Z' status: code: 200 message: OK @@ -718,40 +2623,249 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:09:54 GMT + - Fri, 12 Sep 2025 07:43:05 GMT elapsed-time: - - '177' + - '77' + etag: + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 637b4a8c-8fab-11f0-b19e-683421896a24 + 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: 78BF2AEAA40B47B591DAE02CD52D6BC0 Ref B: CO6AA3150220021 Ref C: 2025-09-12T07:43: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 --hosting-mode + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/test000004?api-version=2025-05-01 + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 07:43:34 GMT + elapsed-time: + - '75' + etag: + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 637b4a8c-8fab-11f0-b19e-683421896a24 + 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: 1DD59BAB939640B487A7EA14C7E31307 Ref B: CO6AA3150217051 Ref C: 2025-09-12T07:43: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 --hosting-mode + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/test000004?api-version=2025-05-01 + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 07:44:05 GMT + elapsed-time: + - '72' + etag: + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 637b4a8c-8fab-11f0-b19e-683421896a24 + 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: 72F0CC684E974040959A70855B2E3FB1 Ref B: CO6AA3150217009 Ref C: 2025-09-12T07:44: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 --hosting-mode + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/test000004?api-version=2025-05-01 + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 07:44:35 GMT + elapsed-time: + - '243' + etag: + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" + expires: + - '-1' + pragma: + - no-cache + request-id: + - 637b4a8c-8fab-11f0-b19e-683421896a24 + 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: F25C58A842FB458090E5EA604ABC92E7 Ref B: CO6AA3150218023 Ref C: 2025-09-12T07:44: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 --hosting-mode + User-Agent: + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/test000004?api-version=2025-05-01 + response: + body: + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 12 Sep 2025 07:45:06 GMT + elapsed-time: + - '66' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8BC18B10C819498D838AC112D39A034B Ref B: MWH011020808034 Ref C: 2025-09-12T07:45:06Z' status: code: 200 message: OK @@ -769,40 +2883,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:10:25 GMT + - Fri, 12 Sep 2025 07:45:36 GMT elapsed-time: - - '397' + - '70' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F149EAE8B37745A99559831CD46C7FBC Ref B: MWH011020809029 Ref C: 2025-09-12T07:45:36Z' status: code: 200 message: OK @@ -820,40 +2935,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:10:55 GMT + - Fri, 12 Sep 2025 07:46:07 GMT elapsed-time: - - '174' + - '75' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1AC08AF34D404F66B54065D0A9837BA4 Ref B: CO6AA3150220039 Ref C: 2025-09-12T07:46:07Z' status: code: 200 message: OK @@ -871,40 +2987,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:11:26 GMT + - Fri, 12 Sep 2025 07:46:37 GMT elapsed-time: - - '362' + - '80' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AA044E7F09714991A3CFBDFBA6276385 Ref B: MWH011020809025 Ref C: 2025-09-12T07:46:37Z' status: code: 200 message: OK @@ -922,40 +3039,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:11:57 GMT + - Fri, 12 Sep 2025 07:47:07 GMT elapsed-time: - - '324' + - '100' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2902914E642848F2A7A2CA823B57DDE3 Ref B: CO6AA3150219045 Ref C: 2025-09-12T07:47:07Z' status: code: 200 message: OK @@ -973,40 +3091,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:12:27 GMT + - Fri, 12 Sep 2025 07:47:37 GMT elapsed-time: - - '337' + - '66' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4A0DF449B84E41BDB41139E743E1B6EA Ref B: CO6AA3150219051 Ref C: 2025-09-12T07:47:38Z' status: code: 200 message: OK @@ -1024,40 +3143,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:12:57 GMT + - Fri, 12 Sep 2025 07:48:08 GMT elapsed-time: - - '196' + - '67' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 788470B9CD264FEEA85A3CA770208AE3 Ref B: MWH011020808042 Ref C: 2025-09-12T07:48:08Z' status: code: 200 message: OK @@ -1075,40 +3195,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:13:28 GMT + - Fri, 12 Sep 2025 07:48:38 GMT elapsed-time: - - '236' + - '81' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 753F689AED084BFBB549BE06ABA9FACC Ref B: CO6AA3150220039 Ref C: 2025-09-12T07:48:39Z' status: code: 200 message: OK @@ -1126,40 +3247,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '746' + - '976' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:13:58 GMT + - Fri, 12 Sep 2025 07:49:09 GMT elapsed-time: - - '198' + - '116' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D26FCF3B71F84926AB62FEF5B673CB99 Ref B: CO6AA3150217029 Ref C: 2025-09-12T07:49:09Z' status: code: 200 message: OK @@ -1177,40 +3299,41 @@ interactions: ParameterSetName: - -n -g --sku --replica-count --partition-count --hosting-mode User-Agent: - - AZURECLI/2.53.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: GET - uri: https://eastus2euap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","location":"West - Central US","properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"highDensity","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"sku":{"name":"standard3"}}' + string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000004.search.windows.net","status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"highDensity","computeType":"Default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T07:38:01.027Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000004","name":"test000004","type":"Microsoft.Search/searchServices","sku":{"name":"standard3"}}' headers: cache-control: - no-cache content-length: - - '738' + - '968' content-type: - application/json; charset=utf-8 date: - - Fri, 20 Oct 2023 21:14:28 GMT + - Fri, 12 Sep 2025 07:49:39 GMT elapsed-time: - - '357' + - '103' etag: - - W/"datetime'2023-10-20T21%3A05%3A49.9350943Z'" + - W/"datetime'2025-09-12T07%3A38%3A01.0325613Z'" expires: - '-1' pragma: - no-cache request-id: - - 6e17809b-6f8c-11ee-ab0a-000d3aff5613 + - 637b4a8c-8fab-11f0-b19e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C81EAC3920A045E0A84B08FA65B0A16F Ref B: MWH011020808025 Ref C: 2025-09-12T07:49:39Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml index 7c127e11cd2..ef8345d181d 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_update","date":"2025-05-22T03:50:20Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_service_update","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '384' + - '379' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 03:50:31 GMT + - Fri, 12 Sep 2025 01:18:54 GMT expires: - '-1' pragma: @@ -38,12759 +38,79 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 108C199A35674D72BFA683D7FEF41C2C Ref B: TYO201100117047 Ref C: 2025-05-22T03:50:31Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:50:43 GMT - elapsed-time: - - '6858' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/238ea4da-c1b4-470f-a419-d173a5c88e7b - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 130D56439B8542A6AA17A570EC3085D1 Ref B: TYO201151003042 Ref C: 2025-05-22T03:50:32Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:50:44 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 66EF8BD541014B9EB5758B85D6A76064 Ref B: TYO201151003042 Ref C: 2025-05-22T03: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:51:15 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7A8BCA771AD44F57B28458B8086DAACB Ref B: TYO201151003042 Ref C: 2025-05-22T03:51: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:51:48 GMT - elapsed-time: - - '95' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 089A6D4DA4B1411197AF8258F6F2FE96 Ref B: TYO201151003042 Ref C: 2025-05-22T03:51: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:52:20 GMT - elapsed-time: - - '103' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 985FF63D38A843B5AE9880BEE5432FD6 Ref B: TYO201151003042 Ref C: 2025-05-22T03:52:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:52:52 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4EF4BE94CD0B40C49A1AA8FB05FFAD77 Ref B: TYO201151003042 Ref C: 2025-05-22T03:52:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:53:23 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4E2EBE7706244DA7A5A70143CC8B3C34 Ref B: TYO201151003042 Ref C: 2025-05-22T03:53:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:53:54 GMT - elapsed-time: - - '105' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 62C13B789E7745AB9E7B62C4B98F07B5 Ref B: TYO201151003042 Ref C: 2025-05-22T03:53:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:54:25 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D381FE95954D4424B033F36874A94841 Ref B: TYO201151003042 Ref C: 2025-05-22T03:54:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:54:56 GMT - elapsed-time: - - '97' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A7C2DB8BBC1949CFA5E8504C74A01443 Ref B: TYO201151003042 Ref C: 2025-05-22T03:54:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:55:27 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2C12304FEAB14A8CB901C34858A4CBF1 Ref B: TYO201151003042 Ref C: 2025-05-22T03:55:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:55:58 GMT - elapsed-time: - - '182' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AA7194F092C147C38D79D8C473B2760F Ref B: TYO201151003042 Ref C: 2025-05-22T03:55:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:56:30 GMT - elapsed-time: - - '89' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0D02DB12FE834879BF58D81D4EF50B5B Ref B: TYO201151003042 Ref C: 2025-05-22T03:56:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:57:01 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A27C3BE766E84B4B9607F73A2BCAA35A Ref B: TYO201151003042 Ref C: 2025-05-22T03:57:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:57:32 GMT - elapsed-time: - - '90' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 052AD9641128408B8AC95B25A642A51A Ref B: TYO201151003042 Ref C: 2025-05-22T03:57: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:58:08 GMT - elapsed-time: - - '215' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3C98D6AA0C5540A18F0120F2F5120C2B Ref B: TYO201151003042 Ref C: 2025-05-22T03:58:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:58:39 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 60E4B333B3324DDF9BDE3003058CE873 Ref B: TYO201151003042 Ref C: 2025-05-22T03:58: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:59:11 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 304D37A29A8D451DB26132AF126074D4 Ref B: TYO201151003042 Ref C: 2025-05-22T03:59: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 03:59:42 GMT - elapsed-time: - - '81' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BABAE52536FA4CCBBA9B1E9A86C142E6 Ref B: TYO201151003042 Ref C: 2025-05-22T03:59: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:00:13 GMT - elapsed-time: - - '109' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8DE0FAF72B634CEEB12149B0D4A7B549 Ref B: TYO201151003042 Ref C: 2025-05-22T04:00: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:00:44 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2F421E0D486444B0AB95D8B8CD6CE867 Ref B: TYO201151003042 Ref C: 2025-05-22T04:00: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:01:15 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EF21406EA6FB4E3A857D2FFA88F3D5D9 Ref B: TYO201151003042 Ref C: 2025-05-22T04:01: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:01:46 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C70AEE2D3A26449BAB2B837BAE058998 Ref B: TYO201151003042 Ref C: 2025-05-22T04:01: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:02:17 GMT - elapsed-time: - - '99' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E3815CA3143D42939372940D94AD69CD Ref B: TYO201151003042 Ref C: 2025-05-22T04:02:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:02:48 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C05A7796E49C49EBBB1F92E5965F4642 Ref B: TYO201151003042 Ref C: 2025-05-22T04:02:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:03:20 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 38574FE893DC4756A119C20D045FD6F3 Ref B: TYO201151003042 Ref C: 2025-05-22T04:03:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:03:51 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4DDA642921EF4215BC35208576309327 Ref B: TYO201151003042 Ref C: 2025-05-22T04:03:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:04:22 GMT - elapsed-time: - - '132' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 698A65810228402AA39034C164F5F451 Ref B: TYO201151003042 Ref C: 2025-05-22T04:04:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:04:53 GMT - elapsed-time: - - '101' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 65BCC2100D3E4ADA9AD7743CA4AF6882 Ref B: TYO201151003042 Ref C: 2025-05-22T04:04:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:05:24 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 48787BB0309F440F87B66629A9F16E98 Ref B: TYO201151003042 Ref C: 2025-05-22T04:05:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:05:55 GMT - elapsed-time: - - '93' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 83E8070243354641B4C314CC5957753B Ref B: TYO201151003042 Ref C: 2025-05-22T04:05:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:06:27 GMT - elapsed-time: - - '150' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 58ADFACFEE3B4901A0D360D2AF2904DD Ref B: TYO201151003042 Ref C: 2025-05-22T04:06:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:06:58 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 79E22B38800A4C9BA7691BE911F8BFCD Ref B: TYO201151003042 Ref C: 2025-05-22T04:06:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:07:29 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5036D1CF0FAF488E92EB0A27D829DE79 Ref B: TYO201151003042 Ref C: 2025-05-22T04:07:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:08:01 GMT - elapsed-time: - - '93' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A95F8E6066F84C3DAF00D10465C3D0A4 Ref B: TYO201151003042 Ref C: 2025-05-22T04:08:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:08:32 GMT - elapsed-time: - - '96' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FB0D27D20F8141F19B53E7063FC8D60A Ref B: TYO201151003042 Ref C: 2025-05-22T04:08: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:09:03 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9C65E658D29D44CF98CBFCA0818A385D Ref B: TYO201151003042 Ref C: 2025-05-22T04:09: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:09:34 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 65749161FDD64280B78F0A422B621461 Ref B: TYO201151003042 Ref C: 2025-05-22T04:09: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:10:05 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C528165A1CD747BE9710D7C3D6E11792 Ref B: TYO201151003042 Ref C: 2025-05-22T04:10: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:10:36 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 46CC51D3D2EC45C498F67FD5BF4C8CBD Ref B: TYO201151003042 Ref C: 2025-05-22T04:10: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:11:07 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7C1BE66D8905474CB7051963045B11BD Ref B: TYO201151003042 Ref C: 2025-05-22T04:11: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:11:38 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F5014EFB8D34423DBCD3844287D33F1B Ref B: TYO201151003042 Ref C: 2025-05-22T04:11:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:12:09 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 28DD0C244F47429BA35D9AA61354081B Ref B: TYO201151003042 Ref C: 2025-05-22T04:12: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:12:40 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 03DD55BDE9CE49FDB54CCA07B13F36CA Ref B: TYO201151003042 Ref C: 2025-05-22T04:12: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:13:10 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D43C7229491E43188D89FF139D15ED1A Ref B: TYO201151003042 Ref C: 2025-05-22T04:13: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:13:41 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EA8ADF1F253D4A8C967C80FD6928309C Ref B: TYO201151003042 Ref C: 2025-05-22T04:13: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:14:12 GMT - elapsed-time: - - '89' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 45867073E83E41D594543A0BA71D3034 Ref B: TYO201151003042 Ref C: 2025-05-22T04:14: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:14:43 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E3E2CF0126484FFF8955B243ABE022E5 Ref B: TYO201151003042 Ref C: 2025-05-22T04:14: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:15:14 GMT - elapsed-time: - - '120' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5ED0C146B18C4BCE90C6D1746F4E72D3 Ref B: TYO201151003042 Ref C: 2025-05-22T04:15: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:15:46 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A1144C9EB81F43338CBEED5AA35F158B Ref B: TYO201151003042 Ref C: 2025-05-22T04:15: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:16:17 GMT - elapsed-time: - - '138' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8255CA3F15114915A793A0E430CBC774 Ref B: TYO201151003042 Ref C: 2025-05-22T04:16:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:16:48 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DCCFCD45AB954EAFBD7C5BD22B8E3A80 Ref B: TYO201151003042 Ref C: 2025-05-22T04:16:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:17:19 GMT - elapsed-time: - - '100' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0FF143F6AC4E4715BB67A7D03B57F8CD Ref B: TYO201151003042 Ref C: 2025-05-22T04:17:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:17:50 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 65C070CBCD04483FA31727E76EA02319 Ref B: TYO201151003042 Ref C: 2025-05-22T04:17:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:18:21 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5146FA5B6219499C8444346F70C91467 Ref B: TYO201151003042 Ref C: 2025-05-22T04:18:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:18:52 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F8F7CD1E36984C609F6BF864E7B64A87 Ref B: TYO201151003042 Ref C: 2025-05-22T04:18:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:19:23 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8212502D3E0D43A8B23EECA51EC30C6A Ref B: TYO201151003042 Ref C: 2025-05-22T04:19:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:19:54 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EC9986C969DF4DA3AE6CAC69CBB8BF90 Ref B: TYO201151003042 Ref C: 2025-05-22T04:19:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:20:25 GMT - elapsed-time: - - '110' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0672A7A9F3B04619B1E74D4AB9ED155F Ref B: TYO201151003042 Ref C: 2025-05-22T04:20:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:20:56 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DD3F1AC9BC2D49AF9F0BE06D981C1575 Ref B: TYO201151003042 Ref C: 2025-05-22T04:20:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:21:27 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 67A14C9735FC45D18C85CE6671B7C782 Ref B: TYO201151003042 Ref C: 2025-05-22T04:21:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:21:58 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2EEECE3586E74AB99524087EFC6F60AB Ref B: TYO201151003042 Ref C: 2025-05-22T04:21:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:22:29 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D3CAD89C94DA4114BD408D6BD2389FD9 Ref B: TYO201151003042 Ref C: 2025-05-22T04:22:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:23:01 GMT - elapsed-time: - - '105' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6DF3E6CB4D474E39861D4D1316197DC5 Ref B: TYO201151003042 Ref C: 2025-05-22T04:23:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:23:32 GMT - elapsed-time: - - '99' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 32CE6DE499EE4D6D9C5A1C14EAEEB551 Ref B: TYO201151003042 Ref C: 2025-05-22T04:23: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:24:03 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 99FA568FD9934F9197CDA4954669E9CB Ref B: TYO201151003042 Ref C: 2025-05-22T04:24: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:24:35 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD66955678574937935A22A8005BA621 Ref B: TYO201151003042 Ref C: 2025-05-22T04:24: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:25:06 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5B5557DD79644252880E776A41AA39D6 Ref B: TYO201151003042 Ref C: 2025-05-22T04:25: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:25:38 GMT - elapsed-time: - - '129' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - e82127b7-36bf-11f0-8215-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E5DE856391994BAFADF5D92B17854C8B Ref B: TYO201151003042 Ref C: 2025-05-22T04:25:36Z' - 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 --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '718' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:25:39 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T03%3A50%3A43.2596307Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 384A344ED27F44E3AFE4E2FDDFC99165 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:25:39Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": - 1, "publicNetworkAccess": "Enabled", "replicaCount": 2}, "sku": {"name": "standard"}, - "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - Content-Length: - - '337' - Content-Type: - - application/json - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:25:43 GMT - elapsed-time: - - '2549' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/7ede9803-71bc-4f59-a64c-66b2c81f1052 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: C16ABE7CB1EF43F6A64D1192FC67688B Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:25:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:25:44 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41D6A7F534434DD3AD1725F0BC3F1264 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:25:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:26:15 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4D5E012840274200A1F2680A12405041 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:26:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:26:46 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F7893694A1EA419BB4A895D7E911A98E Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:26:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:27:17 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F02FB437F8F74CD3A11E5609C4DCC1F2 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:27:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:27:48 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2587780CB1BE4CE6B9613A4C73D6E5C1 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:27:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:28:19 GMT - elapsed-time: - - '60' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 978D94A489FA4579AC6F2F6BDAD42E31 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:28:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:28:50 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F67A0C9325B046A88AF8E49B85E2AC84 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:28:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:29:22 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BA08FD2118004BCAB7095492BEA78CEA Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:29:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:29:53 GMT - elapsed-time: - - '98' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 44A5AB5BCC764027AC37AF54E4CA6D84 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:29:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:30:24 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 162C3D16185E4FB78076BD21A430AA92 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:30:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:30:56 GMT - elapsed-time: - - '87' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CBB03F4F31E84CB6AE52153754A7DC98 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:30:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:31:27 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 69D9151F81CA479492FF208D7C8F2182 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:31:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:31:58 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 46E204F9C343465F9A0B8E0C57AF7267 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:31:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:32:30 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 280B620FDE3A4EF28515373C356A6C32 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:32:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:33:01 GMT - elapsed-time: - - '91' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E005BA3F1F004ED4A33CD8235752991D Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:33:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:33:32 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AF461E09681E4F9FA8DFA49C6E89A419 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:33:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:34:03 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9ED6C66E8FFE4060A8FB86DD3307EC3A Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:34:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:34:35 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F8C26C59900F4B55B0CE6E50102C83E4 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:34:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:35:06 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B342EA9BE1C84CCA8AB0960FE58A6EA7 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:35:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:35:37 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A69A6FD84221487F91884BF7C822DEBB Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:35:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:36:08 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7C9067084E3E43E8B9CA018B9884394D Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:36:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:36:39 GMT - elapsed-time: - - '81' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 77D767D36C0941F7BF88A4323F411409 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:36:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:37:10 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 55556F91425C4BF2834A977CE4A5BF4B Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:37:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:37:41 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 36EC5DD74C5D46B7BC4643FAA519252E Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:37:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:38:13 GMT - elapsed-time: - - '120' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8FEE5A091AAA48DFB5230D589CD32848 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:38:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:38:44 GMT - elapsed-time: - - '110' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 281410EB12314ECF93D5BA8EB80528F6 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:38:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:39:15 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2B1B0D8001764025A36EDAC0A4CB1A12 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:39:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:39:46 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E87BCBD7E61D428D977166ECFB4F42ED Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:39:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:40:18 GMT - elapsed-time: - - '107' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F520DD176B3D499F91F032438C8E39B8 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:40:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:40:48 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 91D85CCC4E2A4714AEEA8BBAB666A041 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:40:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:41:19 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 38CAFDC4B48B45DC8EE409C97467EBFA Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:41:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:41:51 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B4248044683F42A3939150F366835DEE Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:41:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:42:22 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AB221DE895A94BA281AE200D5A369AC3 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:42:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:42:53 GMT - elapsed-time: - - '96' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3B16B5D00DF54B2ABDE631C7B2E4AD34 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:42:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:43:25 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A36DFE98D15F4F2AB458DD36770C33CD Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:43:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:43:56 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 397AD0E071AC4DF09337421227FFECC4 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:43:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:44:26 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DE1E2D2BFE984A07A1F2263FC7B0FD04 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:44:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:44:57 GMT - elapsed-time: - - '110' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 66CCD5CDA15F4F19B5496AB85B7F1E27 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:44:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:45:29 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9608A7C0ADA34DBC985211737A76CC8F Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:45:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:46:00 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 22F74A98F9E44151B7B8355CB17B644A Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:45:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:46:31 GMT - elapsed-time: - - '94' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F03FD3EC4AAF4631A4818221AB3B103E Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:46:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:47:02 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B60EAB4DD75A46E9A7B39559617EFDB4 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:47:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:47:33 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2A663E30C45A494E8BFE0F021B18EF0D Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:47:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:48:04 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D1AB0EFCF5614FBC83405140F1FDCB11 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:48:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:48:41 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4D9C6213251C42D2AD55DD9A2684B6F2 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:48:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:49:12 GMT - elapsed-time: - - '116' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 05CE8A0FB6954E9B8154F5DC6699DE92 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:49:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:49:44 GMT - elapsed-time: - - '94' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 406F335C852B406796E457AFE9CBB051 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:49:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:50:16 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1F3153F5125943968F22C5A8F168C7A6 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:50:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:50:48 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 21E019B8E97C4CE2BF92C4F2F59B6FC0 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:50:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:51:19 GMT - elapsed-time: - - '487' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AC8E10C94F5F490EB3BA5F2314006339 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:51:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:51:51 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9B0668A6944048AF950BB6AF489B0EE8 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:51:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:52:22 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9F18CD8054A9492FB2DF4B6511A25DFC Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:52:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:52:53 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B47CB99F06E048108384DF2CA6F86C33 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:52:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:53:25 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 48C2CEF92D3B45AEBE352BA5B18082E4 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:53:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:53:56 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0D2D72A9C79D4F15AB659769537063F4 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:53:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:54:28 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4054645B370A47409D0A28C5FD9C3E74 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:54:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:55:00 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D5119F6774EB457BBD354EB9E3E2E779 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:54:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:55:31 GMT - elapsed-time: - - '84' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 647242EFF7D548DAA7C0E1F1D399947F Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:55:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:56:03 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 017614967F7148889C3E214EA288316A Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:56:03Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:56:34 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9CF29E3EF2F34672956A652B30EF4D10 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:56:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:57:06 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 577ED32078994C6CB1A5437F3205F7E5 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:57:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:57:37 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9F00D596E13C4424BB5FB0913DD96598 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:57:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:58:08 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2E5E2B20691D4B6D81ED7BF9169A937B Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:58:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:58:40 GMT - elapsed-time: - - '100' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4D8E7A3EFA1842DF9374612A4EE30C47 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:58:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:59:11 GMT - elapsed-time: - - '59' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6BBAE2164B1F425E8DCC9EF3F4472C3B Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:59:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 04:59:42 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 64F75B3846A8471391CEF731C5FD5989 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T04:59:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:00:13 GMT - elapsed-time: - - '125' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6DFBBBB9ABEE4252B77D534E2DEDBE67 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:00:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:00:44 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C57A7377BBA0458BB8846DFF32B1AB0E Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:00:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:01:16 GMT - elapsed-time: - - '143' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 39B8D4643EEE4EBCA47153DFCDDCE64F Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:01:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:01:47 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 310F9D217C124AF58B6794E8039E0686 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:01:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:02:18 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 465D7F33477148A1816D6D3D45DD215D Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:02:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:02:48 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 694E7A086E0F41B094CE7E4C9CCF7FCC Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:02:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:03:20 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CE0135CEC7914ACB86B84E3761C0CCCC Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:03:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:03:51 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9D53E73243A34B01A783518D45BCDFA8 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:03:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:04:22 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CE34B322FF0C4AF3B6AAD85405290207 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:04:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:04:52 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2E54ED97C2F74826A10E8836E436847F Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:04:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:05:24 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 087B7E6F01854BFAADD702362D1DAA6A Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:05:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:05:55 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 28668D0F29344D95A289D92C5D905070 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:05:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:06:26 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E7E2996D09A94D9AB3746C2257616DD8 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:06:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:06:57 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0C59C5F495534066BDB2B8AEE2B5D516 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:06:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:07:28 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E9146608297E4331BEF25C70A441EAF7 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:07:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:07:59 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9830468C92D04E24A06BE3F88A55D473 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:07:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":2,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '718' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:08:31 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T04%3A25%3A44.2266408Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - d07daf68-36c4-11f0-bf68-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8B58F83C4B0043C0AA508EBC75A55B28 Ref B: TYO01EDGE2520 Ref C: 2025-05-22T05:08:30Z' - 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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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_update","date":"2025-05-22T03:50:20Z","module":"search","Creator":"test@example.com","DateCreated":"2025-05-22T03:50:48Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '450' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:08:33 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: - - '3749' - x-msedge-ref: - - 'Ref A: 3D369DEC8F4D4D7F96C3C72E279A2969 Ref B: TYO201100116037 Ref C: 2025-05-22T05:08:33Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:08:45 GMT - elapsed-time: - - '7807' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/b9091d34-6fa0-401f-8ee6-ba92299bf1c8 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 2DE0CD0D31AC497CA532C42832D21F25 Ref B: TYO201151005031 Ref C: 2025-05-22T05:08:34Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:08:46 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B253AC0AD7344EEE9371CE325E2347CD Ref B: TYO201151002052 Ref C: 2025-05-22T05:08: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:09:24 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F8C7D7BDC70246BC89F9E3F4D4BA9FF4 Ref B: TYO201100116023 Ref C: 2025-05-22T05:09:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:09:55 GMT - elapsed-time: - - '98' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 10D92CFED0674F4B8B29919BBEE5C73C Ref B: TYO201100116023 Ref C: 2025-05-22T05:09:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:10:26 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 27016C4FBAF74704B28A2E856AFC1FFE Ref B: TYO201100116023 Ref C: 2025-05-22T05:10:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:10:57 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CCC874630F594A3ABF0F8BBDE0327719 Ref B: TYO201100116023 Ref C: 2025-05-22T05:10:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:11:29 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3211F6117CEF4C70A843CB89A5ED7377 Ref B: TYO201100116023 Ref C: 2025-05-22T05:11:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:12:00 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CC575E4BD8BB45148166780E14C11D8D Ref B: TYO201100116023 Ref C: 2025-05-22T05:11:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:12:31 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2A5C10F8259A453EB217BC03F6E34EED Ref B: TYO201100116023 Ref C: 2025-05-22T05:12: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:13:02 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D43FAD6D89824D79B40665E5D54EA7C8 Ref B: TYO201100116023 Ref C: 2025-05-22T05:13: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:13:34 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C0C7D59611034D9888CD23175BCCF797 Ref B: TYO201100116023 Ref C: 2025-05-22T05:13: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:14:06 GMT - elapsed-time: - - '106' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 126F481E00E14E24A722D0BC6496048C Ref B: TYO201100116023 Ref C: 2025-05-22T05:14: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:14:37 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F4C4073CE5A04F1A9C28E8A9FEA58B6C Ref B: TYO201100116023 Ref C: 2025-05-22T05:14: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:15:08 GMT - elapsed-time: - - '97' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 844595DCC21646B6BC937D2B30AE17EA Ref B: TYO201100116023 Ref C: 2025-05-22T05:15:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:15:39 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 060D59C400804316A84477E676210C5C Ref B: TYO201100116023 Ref C: 2025-05-22T05:15: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:16:12 GMT - elapsed-time: - - '93' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B46505EB74C143919334211149D95B8D Ref B: TYO201100116023 Ref C: 2025-05-22T05:16: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:16:43 GMT - elapsed-time: - - '59' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7A1FDB56CBE541498BBDEE16AE223D50 Ref B: TYO201100116023 Ref C: 2025-05-22T05:16: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:17:14 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5EB6E8C7082F42048A6E98A4ED0B4711 Ref B: TYO201100116023 Ref C: 2025-05-22T05:17: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:17:47 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 31C2BB1FD163441F9F51E0DB3CF66D53 Ref B: TYO201100116023 Ref C: 2025-05-22T05:17: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:18:20 GMT - elapsed-time: - - '202' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0C45F32C28C94B93A0BAFC1CD3FA206C Ref B: TYO201100116023 Ref C: 2025-05-22T05:18:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:18:51 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 74354B09178044A09F9BD3CBC5DA9CD5 Ref B: TYO201100116023 Ref C: 2025-05-22T05:18:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:19:22 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CA5603B9F804472E8585481CC6EC4F82 Ref B: TYO201100116023 Ref C: 2025-05-22T05:19:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:19:54 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 927C3A669A4D4DBE928D2E8D749DE1CE Ref B: TYO201100116023 Ref C: 2025-05-22T05:19:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:20:25 GMT - elapsed-time: - - '59' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4637D04B9D0E4D0D961EAC072C3BDDD5 Ref B: TYO201100116023 Ref C: 2025-05-22T05:20:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:20:56 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0AEE1F89961D4B11A9F30718FEF6DE00 Ref B: TYO201100116023 Ref C: 2025-05-22T05:20:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:21:27 GMT - elapsed-time: - - '108' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E670D0EED962419F9A42BFF7F8BDF80D Ref B: TYO201100116023 Ref C: 2025-05-22T05:21:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:21:58 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 32BF46A5F986494EB23089DDB3475F00 Ref B: TYO201100116023 Ref C: 2025-05-22T05:21:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:22:30 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 062F110AF0C849B291639A628C75A339 Ref B: TYO201100116023 Ref C: 2025-05-22T05:22:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:23:01 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E552515A033F4C8193434B6E0A38F3D0 Ref B: TYO201100116023 Ref C: 2025-05-22T05:23:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:23:34 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 91B7E408B9244A34B82F1466AA6A920F Ref B: TYO201100116023 Ref C: 2025-05-22T05:23: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:24:06 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4790C933F68F42DBB7421F0CFF2C2198 Ref B: TYO201100116023 Ref C: 2025-05-22T05:24: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:24:37 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1611B295CBC841DAB23EBB24E0142F47 Ref B: TYO201100116023 Ref C: 2025-05-22T05:24:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:25:08 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9593C6395B674BFEB336EE63A27AB4A3 Ref B: TYO201100116023 Ref C: 2025-05-22T05:25: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:25:40 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2FC9A63A041E4E8F864D189CB00CAA4C Ref B: TYO201100116023 Ref C: 2025-05-22T05:25: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:26:11 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C617BEAEF51E4E7EAB04B5462312E4BF Ref B: TYO201100116023 Ref C: 2025-05-22T05:26: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:26:42 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A5182C4270E349C388CEB50745AD7F57 Ref B: TYO201100116023 Ref C: 2025-05-22T05:26: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:27:13 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C329B89CD457449A9E4ED8F64FF9537E Ref B: TYO201100116023 Ref C: 2025-05-22T05:27: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:27:44 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 31FC4E6347144D7483C1AFF027973976 Ref B: TYO201100116023 Ref C: 2025-05-22T05:27: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:28:21 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 35F77391224C4EE5B8371494C6F94A36 Ref B: TYO201100116023 Ref C: 2025-05-22T05:28:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:28:52 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AC9477D911914113A99969554DABF2DF Ref B: TYO201100116023 Ref C: 2025-05-22T05:28:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:29:24 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DE389471647740E7A78DBAFD53347250 Ref B: TYO201100116023 Ref C: 2025-05-22T05:29:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:29:55 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 001B97CF324E4977A01A756F06A286AD Ref B: TYO201100116023 Ref C: 2025-05-22T05:29:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:30:26 GMT - elapsed-time: - - '156' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8D1CC3F0203B4B97A9747FFB491C769A Ref B: TYO201100116023 Ref C: 2025-05-22T05:30:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:30:57 GMT - elapsed-time: - - '123' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 025255B5C7AA4B9988C971D7AF97CF8F Ref B: TYO201100116023 Ref C: 2025-05-22T05:30:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:31:29 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AA7FEBB4FB4541F683700B7BFF5D1388 Ref B: TYO201100116023 Ref C: 2025-05-22T05:31:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:32:00 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D497F39AC1C04CE8BA908765C6FCF03D Ref B: TYO201100116023 Ref C: 2025-05-22T05:32:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:32:31 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 860C3ADA874645DBA7ED57AE92D7BC12 Ref B: TYO201100116023 Ref C: 2025-05-22T05:32: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:33:06 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 43BABED6A94846A0A948FF712D885AC4 Ref B: TYO201100116023 Ref C: 2025-05-22T05:33: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:33:41 GMT - elapsed-time: - - '80' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 107A74B862A54F2B91A40CAFE858567E Ref B: TYO201100116023 Ref C: 2025-05-22T05:33: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:34:12 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 99C8ECFF75994C669338AA9AD0B20D35 Ref B: TYO201100116023 Ref C: 2025-05-22T05:34: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 - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:34:43 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cebb001d-36ca-11f0-bc10-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2C54AB02ED6045BCADDDB2123318791F Ref B: TYO201100116023 Ref C: 2025-05-22T05:34:43Z' - 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 --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '718' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:34:46 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T05%3A08%3A45.8845521Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 12A29050BCC94A9489A80683F6655A1F Ref B: TYO201151005023 Ref C: 2025-05-22T05:34:44Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": - 2, "publicNetworkAccess": "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}, - "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - Content-Length: - - '337' - Content-Type: - - application/json - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:34:49 GMT - elapsed-time: - - '2474' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/c992439b-39c5-47fc-a4e2-a6e395d13433 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 7D45ADBF08DF401C83ECE9E6DEB6B883 Ref B: TYO201151005023 Ref C: 2025-05-22T05:34:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:34:50 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: CA75C33C4FAC4F98A12542B1AC2C887D Ref B: TYO201151005023 Ref C: 2025-05-22T05:34:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:35:20 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 19A232096DE648A2A351F84FA85F324B Ref B: TYO201151005023 Ref C: 2025-05-22T05:35:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:35:52 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F96502F8EB024AECB8031F0C5720B68A Ref B: TYO201151005023 Ref C: 2025-05-22T05:35:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:36:23 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3D0E1B709B4E4D008EE014509B63AFC2 Ref B: TYO201151005023 Ref C: 2025-05-22T05:36:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:36:55 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 99D12BE4C3284953A43F73393B28E110 Ref B: TYO201151005023 Ref C: 2025-05-22T05:36:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:37:26 GMT - elapsed-time: - - '113' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C1151C62471141C2977EFA5AC1A46B86 Ref B: TYO201151005023 Ref C: 2025-05-22T05:37:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:38:00 GMT - elapsed-time: - - '155' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 527CE81774A04838B02ADA90D7D2B7A6 Ref B: TYO201151005023 Ref C: 2025-05-22T05:37:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:38:33 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C5C6B25EF2EC47939B7EB269E34A291A Ref B: TYO201151005023 Ref C: 2025-05-22T05:38:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:39:05 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B50EB3C1FC5741F987C991BC2455B5BE Ref B: TYO201151005023 Ref C: 2025-05-22T05:39:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:39:36 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2C62E55E35B84C76B660803FAD57D7CE Ref B: TYO201151005023 Ref C: 2025-05-22T05:39:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:40:07 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7DF2CD29560D4947AF6B3460F021B99E Ref B: TYO201151005023 Ref C: 2025-05-22T05:40:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:40:38 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CE14314557C3452E9F9921E305CF9531 Ref B: TYO201151005023 Ref C: 2025-05-22T05:40:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:41:09 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 75E58D5BBFD5422187742A01045BDA97 Ref B: TYO201151005023 Ref C: 2025-05-22T05:41:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:41:41 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FCFEB61034464823913FDAD14A8825CE Ref B: TYO201151005023 Ref C: 2025-05-22T05:41:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:42:12 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C4143E5612624292B5E88F5F41DC7CFF Ref B: TYO201151005023 Ref C: 2025-05-22T05:42:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:42:44 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7A5A295E930F48B39B1CEB7CF162778E Ref B: TYO201151005023 Ref C: 2025-05-22T05:42:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:43:15 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 392E969008C0427889A2F85B64839AEA Ref B: TYO201151005023 Ref C: 2025-05-22T05:43:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:43:46 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2762B34AE7654405ADD3527EFD94B6D6 Ref B: TYO201151005023 Ref C: 2025-05-22T05:43:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:44:17 GMT - elapsed-time: - - '102' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C1525E0AACBD42FC8FA90D95499A965B Ref B: TYO201151005023 Ref C: 2025-05-22T05:44:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:44:49 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D6369B986A584B0499635A72C89995BC Ref B: TYO201151005023 Ref C: 2025-05-22T05:44:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:45:20 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DBF8E4687C014B4CAB13C061033AEEC0 Ref B: TYO201151005023 Ref C: 2025-05-22T05:45:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:45:51 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3C987F0C79FA4EC0AE686DD295E6C661 Ref B: TYO201151005023 Ref C: 2025-05-22T05:45:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:46:23 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4FD2D1DFB3614A0393290D10CBB4D26E Ref B: TYO201151005023 Ref C: 2025-05-22T05:46:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:46:54 GMT - elapsed-time: - - '60' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 655CBA8725E04AF79E3275B23F44F941 Ref B: TYO201151005023 Ref C: 2025-05-22T05:46:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:47:25 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3719B9998CBC4B2BA71A2A4C4F0B4161 Ref B: TYO201151005023 Ref C: 2025-05-22T05:47:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:47:57 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 66871F4B1F6049448625DF34E5F8DB1D Ref B: TYO201151005023 Ref C: 2025-05-22T05:47:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:48:29 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 73C9556102464F4DBC452310B40938ED Ref B: TYO201151005023 Ref C: 2025-05-22T05:48:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:49:00 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D84114D6606C47518EBBC10A6894FF9C Ref B: TYO201151005023 Ref C: 2025-05-22T05:49:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:49:32 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 178D9B11B6834D619BFDE3B018FE0CFE Ref B: TYO201151005023 Ref C: 2025-05-22T05:49:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:50:03 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1C8439BCBEE846CC837BA3D331C97DA7 Ref B: TYO201151005023 Ref C: 2025-05-22T05:50:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:50:35 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1721717260024B73AC921B9118B68F7D Ref B: TYO201151005023 Ref C: 2025-05-22T05:50:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:51:10 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1153D41C6C484176B199D01CBC24930C Ref B: TYO201151005023 Ref C: 2025-05-22T05:51:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 05:51:42 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E23564DB6873459E8560975E1D01B1D7 Ref B: TYO201151005023 Ref C: 2025-05-22T05:51:41Z' + - 'Ref A: 89AB5B0C7CC042A9ACC58A3E8D059BB3 Ref B: CO6AA3150220029 Ref C: 2025-09-12T01:18:54Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive + Content-Length: + - '167' + Content-Type: + - application/json ParameterSetName: - - -n -g --replica-count --partition-count + - -n -g --sku User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:52:13 GMT + - Fri, 12 Sep 2025 01:18:57 GMT elapsed-time: - - '61' + - '2999' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A18%3A58.2152078Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 721f2c6e-8f76-11f0-86b0-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/9c9f097a-6a5d-45ca-8729-6cfbd9a177b1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: 1400F2F641314F648F4CA60DE14949E7 Ref B: TYO201151005023 Ref C: 2025-05-22T05:52:12Z' + - 'Ref A: 2865207F634A42A292D40275593E60DB Ref B: CO6AA3150220023 Ref C: 2025-09-12T01:18:54Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -12800,32 +120,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:52:44 GMT + - Fri, 12 Sep 2025 01:18:58 GMT elapsed-time: - - '59' + - '88' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A18%3A58.2152078Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -12833,62 +152,74 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C0C3A50ECF434266A3FC247EEEE5D83B Ref B: TYO201151005023 Ref C: 2025-05-22T05:52:44Z' + - 'Ref A: F01300ADE5404ACB839E518479D468E4 Ref B: CO6AA3150220045 Ref C: 2025-09-12T01:18:59Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "West US", "properties": {"authOptions": {"apiKeyOnly": {}}, + "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": + 2, "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: + - '427' + Content-Type: + - application/json ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:53:15 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '63' + - '2445' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/5f1ac24d-275b-49a6-a56d-de73f89bd9a7 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: A5B834F0252647F8B5EB54BFA82A80AF Ref B: TYO201151005023 Ref C: 2025-05-22T05:53:15Z' + - 'Ref A: 562455089633449EBB5210E810270EFC Ref B: CO6AA3150220053 Ref C: 2025-09-12T01:18:59Z' status: code: 200 message: OK @@ -12906,42 +237,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:53:47 GMT + - Fri, 12 Sep 2025 01:19:02 GMT elapsed-time: - - '66' + - '75' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D6BF2360CEC940108AE8116D58343459 Ref B: TYO201151005023 Ref C: 2025-05-22T05:53:46Z' + - 'Ref A: 7AB451D16A3B4513B4FF45330DD720FC Ref B: MWH011020809052 Ref C: 2025-09-12T01:19:02Z' status: code: 200 message: OK @@ -12959,32 +289,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:54:18 GMT + - Fri, 12 Sep 2025 01:19:32 GMT elapsed-time: - - '63' + - '71' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -12992,9 +321,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2A89AB2D555C4302B8F7ADA30871F878 Ref B: TYO201151005023 Ref C: 2025-05-22T05:54:17Z' + - 'Ref A: 2C5B894442204E73BE35161F8695C3CD Ref B: MWH011020806036 Ref C: 2025-09-12T01:19:32Z' status: code: 200 message: OK @@ -13012,32 +341,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:54:49 GMT + - Fri, 12 Sep 2025 01:20:02 GMT elapsed-time: - - '68' + - '84' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13045,9 +373,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 81C448907380405FB2AB020E7B0D89E1 Ref B: TYO201151005023 Ref C: 2025-05-22T05:54:49Z' + - 'Ref A: 2E1DFADCD10D40A788527269E9FD4AD1 Ref B: CO6AA3150217011 Ref C: 2025-09-12T01:20:03Z' status: code: 200 message: OK @@ -13065,42 +393,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:55:20 GMT + - Fri, 12 Sep 2025 01:20:33 GMT elapsed-time: - - '67' + - '85' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D461F9913B994154AE073E6AAF6BBA07 Ref B: TYO201151005023 Ref C: 2025-05-22T05:55:20Z' + - 'Ref A: 8717EF9FB6D04331B41A03E15256DC8B Ref B: MWH011020808060 Ref C: 2025-09-12T01:20:33Z' status: code: 200 message: OK @@ -13118,42 +445,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:55:51 GMT + - Fri, 12 Sep 2025 01:21:04 GMT elapsed-time: - - '71' + - '84' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 2B34C0FCF7A24A1D84269FF291846AA7 Ref B: TYO201151005023 Ref C: 2025-05-22T05:55:51Z' + - 'Ref A: 1B180AC1CC06448F853A0C0E243CDAF2 Ref B: MWH011020806054 Ref C: 2025-09-12T01:21:03Z' status: code: 200 message: OK @@ -13171,32 +497,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:56:22 GMT + - Fri, 12 Sep 2025 01:21:35 GMT elapsed-time: - - '67' + - '95' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13204,9 +529,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7966946FC768442198788B241D9F4725 Ref B: TYO201151005023 Ref C: 2025-05-22T05:56:22Z' + - 'Ref A: 9FD8F3E0DDEF4191AD0EC355ACD5AF88 Ref B: CO6AA3150218047 Ref C: 2025-09-12T01:21:34Z' status: code: 200 message: OK @@ -13224,42 +549,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:56:53 GMT + - Fri, 12 Sep 2025 01:22:05 GMT elapsed-time: - - '67' + - '92' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: CE09A0FF5ECD4857807ECA6F74DC8D91 Ref B: TYO201151005023 Ref C: 2025-05-22T05:56:53Z' + - 'Ref A: B6CC9D8B59F64F56A0086D2F26268527 Ref B: MWH011020807042 Ref C: 2025-09-12T01:22:05Z' status: code: 200 message: OK @@ -13277,42 +601,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:57:25 GMT + - Fri, 12 Sep 2025 01:22:35 GMT elapsed-time: - - '67' + - '74' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: FF76813D9A9C4364AB3B808B64027484 Ref B: TYO201151005023 Ref C: 2025-05-22T05:57:24Z' + - 'Ref A: 2A5F26BB4AFC4BBBB9DED9CEF52A9FC3 Ref B: MWH011020807036 Ref C: 2025-09-12T01:22:35Z' status: code: 200 message: OK @@ -13330,32 +653,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:57:56 GMT + - Fri, 12 Sep 2025 01:23:06 GMT elapsed-time: - - '96' + - '86' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13363,9 +685,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B4851E513FFD4A1E8074F2C5713F39F2 Ref B: TYO201151005023 Ref C: 2025-05-22T05:57:55Z' + - 'Ref A: 199FFE62FAA64D34924F1939E5E2F5B0 Ref B: MWH011020809052 Ref C: 2025-09-12T01:23:06Z' status: code: 200 message: OK @@ -13383,32 +705,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:58:27 GMT + - Fri, 12 Sep 2025 01:23:36 GMT elapsed-time: - - '69' + - '183' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13416,9 +737,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 840CE1BF2F734A5797CB0A04594948AE Ref B: TYO201151005023 Ref C: 2025-05-22T05:58:26Z' + - 'Ref A: B357EE962BBE4F60A8738AE549F8C492 Ref B: CO6AA3150217031 Ref C: 2025-09-12T01:23:36Z' status: code: 200 message: OK @@ -13436,32 +757,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:58:58 GMT + - Fri, 12 Sep 2025 01:24:06 GMT elapsed-time: - - '68' + - '92' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13469,9 +789,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E187C16BA45347918E79579BB4917EE5 Ref B: TYO201151005023 Ref C: 2025-05-22T05:58:58Z' + - 'Ref A: 84B9DAE255B7475CBA5CDBC9EF7F5C2D Ref B: MWH011020807036 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK @@ -13489,32 +809,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 05:59:35 GMT + - Fri, 12 Sep 2025 01:24:36 GMT elapsed-time: - - '62' + - '76' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13522,9 +841,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A2D3F064111D4098A6BA85E404B67F91 Ref B: TYO201151005023 Ref C: 2025-05-22T05:59:34Z' + - 'Ref A: CFF84E82E9B5459D83C8E9621F3EFB26 Ref B: MWH011020808034 Ref C: 2025-09-12T01:24:37Z' status: code: 200 message: OK @@ -13542,32 +861,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:00:06 GMT + - Fri, 12 Sep 2025 01:25:07 GMT elapsed-time: - - '67' + - '84' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13575,9 +893,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 434ECDE0365C4FCD8BA5BD4F691B0C73 Ref B: TYO201151005023 Ref C: 2025-05-22T06:00:06Z' + - 'Ref A: 64DDEC7466E341298B1C36E26C16CD86 Ref B: CO6AA3150217021 Ref C: 2025-09-12T01:25:07Z' status: code: 200 message: OK @@ -13595,42 +913,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:00:37 GMT + - Fri, 12 Sep 2025 01:25:37 GMT elapsed-time: - - '69' + - '77' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 79FAE0BEE902451E9396BDE1AA49BA03 Ref B: TYO201151005023 Ref C: 2025-05-22T06:00:37Z' + - 'Ref A: D50B87D2DE0C4F84951D1B17EAC6CE72 Ref B: MWH011020807029 Ref C: 2025-09-12T01:25:37Z' status: code: 200 message: OK @@ -13648,32 +965,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:01:08 GMT + - Fri, 12 Sep 2025 01:26:08 GMT elapsed-time: - - '68' + - '79' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13681,9 +997,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B3A87BEBF96247B2829E284E3E4282ED Ref B: TYO201151005023 Ref C: 2025-05-22T06:01:08Z' + - 'Ref A: 55689D260EF44FB185E6AD00F38C006C Ref B: CO6AA3150218021 Ref C: 2025-09-12T01:26:08Z' status: code: 200 message: OK @@ -13701,32 +1017,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:01:40 GMT + - Fri, 12 Sep 2025 01:26:38 GMT elapsed-time: - - '70' + - '81' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13734,9 +1049,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1D8E510A729C49C0A85C54C2601ED205 Ref B: TYO201151005023 Ref C: 2025-05-22T06:01:39Z' + - 'Ref A: 0646F9CD577E4711858D985D4154CD51 Ref B: MWH011020809042 Ref C: 2025-09-12T01:26:38Z' status: code: 200 message: OK @@ -13754,42 +1069,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:02:11 GMT + - Fri, 12 Sep 2025 01:27:08 GMT elapsed-time: - - '67' + - '112' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 6213A694A772482CBF72B2820203E3A9 Ref B: TYO201151005023 Ref C: 2025-05-22T06:02:11Z' + - 'Ref A: 0FB05AC4554746959A9F7CDB91A4F9F0 Ref B: MWH011020807062 Ref C: 2025-09-12T01:27:08Z' status: code: 200 message: OK @@ -13807,85 +1121,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:18:58.211Z"},"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: - - '726' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:02:42 GMT + - Fri, 12 Sep 2025 01:39:50 GMT elapsed-time: - '74' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D77BCA502D70447DA4E98AB2B27C75CD Ref B: TYO201151005023 Ref C: 2025-05-22T06:02:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --replica-count --partition-count - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '726' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 06:03:19 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.8689941Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 7527ff90-8f76-11f0-afc6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13893,9 +1153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DAB291B23A8C43D8B1841F9DDB0BEDB6 Ref B: TYO201151005023 Ref C: 2025-05-22T06:03:19Z' + - 'Ref A: 4C48D45B40A3401A8BDE1DA271C904A4 Ref B: MWH011020807034 Ref C: 2025-09-12T01:39:50Z' status: code: 200 message: OK @@ -13903,42 +1163,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --replica-count --partition-count + - -n -g --sku User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + 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/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_service_update","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '379' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:03:50 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - Fri, 12 Sep 2025 01:39:52 GMT expires: - '-1' pragma: - no-cache - request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -13946,70 +1199,78 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 72604A84DBAA4A1A89A61D379EF3789B Ref B: TYO201151005023 Ref C: 2025-05-22T06:03:50Z' + - 'Ref A: 1668FBD99B5C4F4BB2250F5D346A92A8 Ref B: MWH011020807036 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {"hostingMode": "default", "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive + Content-Length: + - '167' + Content-Type: + - application/json ParameterSetName: - - -n -g --replica-count --partition-count + - -n -g --sku User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '726' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:04:21 GMT + - Fri, 12 Sep 2025 01:39:56 GMT elapsed-time: - - '73' + - '3839' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.6373849Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 5fced239-8f79-11f0-aaff-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/f3425765-8cc7-49e4-a5e3-2489545577e4 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: 95FAA7FA65694EDCB969C0A220AC46DA Ref B: TYO201151005023 Ref C: 2025-05-22T06:04:21Z' + - 'Ref A: F3EBE14114624995A5DF8F551B042BAB Ref B: MWH011020807029 Ref C: 2025-09-12T01:39:52Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -14019,32 +1280,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '726' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:04:52 GMT + - Fri, 12 Sep 2025 01:39:56 GMT elapsed-time: - - '65' + - '84' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.6373849Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 62ef81ba-8f79-11f0-a60a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -14052,62 +1312,74 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BAC8805784B24260BED3E71C28F0BA83 Ref B: TYO201151005023 Ref C: 2025-05-22T06:04:52Z' + - 'Ref A: B39530378A78497FAA8741BD604A8F56 Ref B: CO6AA3150218027 Ref C: 2025-09-12T01:39:56Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "West US", "properties": {"authOptions": {"apiKeyOnly": {}}, + "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 2, "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: + - '427' + Content-Type: + - application/json ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2022-09-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:05:23 GMT + - Fri, 12 Sep 2025 01:40:00 GMT elapsed-time: - - '64' + - '2565' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A40%3A00.0192591Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 62ef81ba-8f79-11f0-a60a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/4b028ccc-0b48-493c-a769-9b706d5a79af + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: B4ED9240480543E794BEC5F1C10CB625 Ref B: TYO201151005023 Ref C: 2025-05-22T06:05:23Z' + - 'Ref A: 904C0A3CA8C94836B9525D238FD5EDE3 Ref B: MWH011020806036 Ref C: 2025-09-12T01:39:57Z' status: code: 200 message: OK @@ -14125,42 +1397,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:05:55 GMT + - Fri, 12 Sep 2025 01:40:00 GMT elapsed-time: - - '75' + - '77' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A40%3A00.0192591Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 62ef81ba-8f79-11f0-a60a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 04CDCDD96DC6414898AD47B4F88DE87B Ref B: TYO201151005023 Ref C: 2025-05-22T06:05:54Z' + - 'Ref A: A6E67C1AE1074DA5991745B623349B5A Ref B: CO6AA3150217029 Ref C: 2025-09-12T01:40:00Z' status: code: 200 message: OK @@ -14178,42 +1449,41 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '726' + - '964' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:06:26 GMT + - Fri, 12 Sep 2025 01:40:30 GMT elapsed-time: - - '93' + - '84' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A40%3A00.0192591Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 62ef81ba-8f79-11f0-a60a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9FAB2000E3C446FE8BB19E0D0376421B Ref B: TYO201151005023 Ref C: 2025-05-22T06:06:26Z' + - 'Ref A: 61E5423912F54B52B06920C2F7775031 Ref B: MWH011020809042 Ref C: 2025-09-12T01:40:30Z' status: code: 200 message: OK @@ -14231,32 +1501,31 @@ interactions: ParameterSetName: - -n -g --replica-count --partition-count User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000003","name":"test000003","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":2,"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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:39:56.635Z"},"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: - - '718' + - '956' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 06:06:58 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '70' + - '77' etag: - - W/"datetime'2025-05-22T05%3A34%3A49.6176758Z'" + - W/"datetime'2025-09-12T01%3A40%3A00.0192591Z'" expires: - '-1' pragma: - no-cache request-id: - - 77523a09-36ce-11f0-8ad3-644ed7a2823f + - 62ef81ba-8f79-11f0-a60a-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -14264,9 +1533,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2AA6351A8D354383A6C7900C3F4ABC66 Ref B: TYO201151005023 Ref C: 2025-05-22T06:06:57Z' + - 'Ref A: E198A957B1E445BEBC0864736E4BF3AD Ref B: MWH011020806025 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml index 4e35b6724ac..aaff50b4d63 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_ip_rules.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_update_ip_rules","date":"2025-05-22T07:21:54Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_ip_rules","date":"2025-09-12T06:29:43Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:22:04 GMT + - Fri, 12 Sep 2025 06:29:44 GMT expires: - '-1' pragma: @@ -38,3039 +38,75 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A1372FB1FD4546C78A755B9799A66456 Ref B: TYO201100113019 Ref C: 2025-05-22T07:22:05Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "networkRuleSet": - {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}]}, "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - Content-Length: - - '253' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:22:14 GMT - elapsed-time: - - '6548' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/2635355f-e5eb-4267-ae31-cbf292face09 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 539FAC96EFDF4608B411DE4E3470142A Ref B: TYO201100117045 Ref C: 2025-05-22T07:22:06Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:22:16 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4C5E4ADF5C404C169807344250F34820 Ref B: TYO201100117045 Ref C: 2025-05-22T07:22: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:22:47 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A042E984FECC4DDD832D5AB0A72CC928 Ref B: TYO201100117045 Ref C: 2025-05-22T07:22: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:23:18 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7AEF899E565C4B73AA74CE49B1D95AAE Ref B: TYO201100117045 Ref C: 2025-05-22T07:23:18Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:23:53 GMT - elapsed-time: - - '123' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DE05D231B1E44D90BFF0B4E1286A6D80 Ref B: TYO201100117045 Ref C: 2025-05-22T07:23:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:24:24 GMT - elapsed-time: - - '84' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3299BE0C11194F3DBA8632BC24C4B9FC Ref B: TYO201100117045 Ref C: 2025-05-22T07:24:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:24:55 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F95E09C68D66462EA350F197D8E20C73 Ref B: TYO201100117045 Ref C: 2025-05-22T07:24:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:25:27 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 657B016C49AE4671859B291EA34CEDAF Ref B: TYO201100117045 Ref C: 2025-05-22T07:25:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:25:58 GMT - elapsed-time: - - '113' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F13EEBC73DC648AF8BA5E4349A4F178F Ref B: TYO201100117045 Ref C: 2025-05-22T07:25:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:26:29 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 27C188A0519C4BA7BB6E2FA308AD552F Ref B: TYO201100117045 Ref C: 2025-05-22T07:26:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:27:00 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0EF8D7EA94454A39925C895E19104C23 Ref B: TYO201100117045 Ref C: 2025-05-22T07:26: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:27:31 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5ED8F4CAB2164B31BCC390445312AA75 Ref B: TYO201100117045 Ref C: 2025-05-22T07:27: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:28:02 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 39B476C23C4E4F4AB912FCDB2F369C3E Ref B: TYO201100117045 Ref C: 2025-05-22T07:28: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:28:33 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6629D7673B2348CB972AC5DB4CBB0CC7 Ref B: TYO201100117045 Ref C: 2025-05-22T07:28: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:29:04 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4F536CB66A06472FBD1D203C41EBCB33 Ref B: TYO201100117045 Ref C: 2025-05-22T07:29: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:29:35 GMT - elapsed-time: - - '81' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C6030E624C22466F84FD10C31C16DA34 Ref B: TYO201100117045 Ref C: 2025-05-22T07:29: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:30:06 GMT - elapsed-time: - - '137' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F9145045547949A781FB950F9BD1E580 Ref B: TYO201100117045 Ref C: 2025-05-22T07:30: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:30:37 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 48519765837A4B5FA9CF5CABA2097BBE Ref B: TYO201100117045 Ref C: 2025-05-22T07:30: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:31:09 GMT - elapsed-time: - - '219' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C38E8C19E5E94687886987107DE5899F Ref B: TYO201100117045 Ref C: 2025-05-22T07:31: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:31:40 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CABA39B515894C24BF8049EB139EBFFC Ref B: TYO201100117045 Ref C: 2025-05-22T07:31: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:32:11 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9BB5E909ED7E499088531A3B824CBEB6 Ref B: TYO201100117045 Ref C: 2025-05-22T07:32: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:32:42 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4E19E41EB0E44547AC4C794ADF404EBE Ref B: TYO201100117045 Ref C: 2025-05-22T07:32: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:33:13 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9B8A77A30D9C459D89FA4C075E415D18 Ref B: TYO201100117045 Ref C: 2025-05-22T07:33: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:33:45 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 502C660AD08549DE9F65BFB3FA040819 Ref B: TYO201100117045 Ref C: 2025-05-22T07:33: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:34:16 GMT - elapsed-time: - - '95' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A236DAAAD0C940EB8B16A4B0FE8BE4E4 Ref B: TYO201100117045 Ref C: 2025-05-22T07:34: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:34:47 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0FE495BAE64A4A609903F006E4BCD915 Ref B: TYO201100117045 Ref C: 2025-05-22T07:34: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:35:18 GMT - elapsed-time: - - '133' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 61DDBEB776784532831197A2FA14A623 Ref B: TYO201100117045 Ref C: 2025-05-22T07:35:17Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:35:49 GMT - elapsed-time: - - '132' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D652FB6BF91E4BB4B5F037FE3F620708 Ref B: TYO201100117045 Ref C: 2025-05-22T07:35:49Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:36:21 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CC09E881C3BF4ADAB8E8127F73FE72A5 Ref B: TYO201100117045 Ref C: 2025-05-22T07:36:20Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:36:52 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 46457BC1A86344B988184D3D4C51AA52 Ref B: TYO201100117045 Ref C: 2025-05-22T07:36:51Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:37:23 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C14761ED52CD4ED791B37E8DA1FA3807 Ref B: TYO201100117045 Ref C: 2025-05-22T07:37:22Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:37:54 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F27699E9AA6146438C832248DD6B41AE Ref B: TYO201100117045 Ref C: 2025-05-22T07:37:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:38:25 GMT - elapsed-time: - - '86' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41D6B1EF8653436F875286A08CC58C0F Ref B: TYO201100117045 Ref C: 2025-05-22T07:38:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:38:56 GMT - elapsed-time: - - '92' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1D1537E6E0B24D8B9355CEF43E95EB20 Ref B: TYO201100117045 Ref C: 2025-05-22T07:38:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:39:27 GMT - elapsed-time: - - '59' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 23B9309D5FD944879512EF83268FC07F Ref B: TYO201100117045 Ref C: 2025-05-22T07:39:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:39:58 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3E6FAFF4162E4F21A6664A362C950CF3 Ref B: TYO201100117045 Ref C: 2025-05-22T07:39:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:40:30 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 378DE7C7E0094AD7B75E4AA75EBFB8F7 Ref B: TYO201100117045 Ref C: 2025-05-22T07:40: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:41:01 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0A27D5A7167145CEAC22667511CDD9DB Ref B: TYO201100117045 Ref C: 2025-05-22T07:41: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:41:32 GMT - elapsed-time: - - '58' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2E8406BC6A544F0994CF05EAB9272450 Ref B: TYO201100117045 Ref C: 2025-05-22T07:41: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:42:03 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7249C70F185E4975BA94EC0F4FCFE2D3 Ref B: TYO201100117045 Ref C: 2025-05-22T07:42: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:42:34 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81E6FAE647A844D28E6AAED63FF99B9B Ref B: TYO201100117045 Ref C: 2025-05-22T07:42: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:43:05 GMT - elapsed-time: - - '85' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 54787C21B9C348DB86B0D106B1C6959B Ref B: TYO201100117045 Ref C: 2025-05-22T07:43: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:43:36 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0B8915FD8EF444BE80E19CDCFDD18406 Ref B: TYO201100117045 Ref C: 2025-05-22T07:43: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:44:08 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0BAB9FF96B414DA8B548F28D4947655F Ref B: TYO201100117045 Ref C: 2025-05-22T07:44:07Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:44:40 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7F43C95A49AA4767A6E95140FA6E06A4 Ref B: TYO201100117045 Ref C: 2025-05-22T07:44: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:45:11 GMT - elapsed-time: - - '83' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 42C4DF49870A467EAC190A4CB3ACA993 Ref B: TYO201100117045 Ref C: 2025-05-22T07:45: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:45:41 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A96160302D0349F2A1EC9121B88F516E Ref B: TYO201100117045 Ref C: 2025-05-22T07:45: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:46:12 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 66066D651F524C758F4682711C9D15DC Ref B: TYO201100117045 Ref C: 2025-05-22T07:46: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:46:43 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1C70B1672AE3484E911C9042CA6859BD Ref B: TYO201100117045 Ref C: 2025-05-22T07:46: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:47:15 GMT - elapsed-time: - - '110' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C949563354FD4CD68311E7227CDD45B8 Ref B: TYO201100117045 Ref C: 2025-05-22T07:47: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:47:46 GMT - elapsed-time: - - '107' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0204618B08264C9CAD795B329A5EC5C1 Ref B: TYO201100117045 Ref C: 2025-05-22T07:47: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:48:17 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4315A3611CE34BDC9B2049A3E16CF5C2 Ref B: TYO201100117045 Ref C: 2025-05-22T07:48:17Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:48:48 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F95870A2AE924B32B3076CA0BDD0674A Ref B: TYO201100117045 Ref C: 2025-05-22T07:48:48Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:49:19 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A0F4A7DB99A84244BD1C6D355DC79BAB Ref B: TYO201100117045 Ref C: 2025-05-22T07:49:19Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:49:50 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 42DBDB74879749C98513783DB811AC77 Ref B: TYO201100117045 Ref C: 2025-05-22T07:49:50Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:50:21 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C54BDA482395467D93D584EF34878970 Ref B: TYO201100117045 Ref C: 2025-05-22T07:50:21Z' - 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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:50:53 GMT - elapsed-time: - - '106' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F8AF425E9D4A4BF49166A64229FAD542 Ref B: TYO201100117045 Ref C: 2025-05-22T07:50:52Z' + - 'Ref A: 027FE762315946B886B62D2D3B931B86 Ref B: MWH011020806062 Ref C: 2025-09-12T06:29:45Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "networkRuleSet": + {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}]}, "partitionCount": + 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "standard"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service create Connection: - keep-alive + Content-Length: + - '253' + Content-Type: + - application/json ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:51:24 GMT + - Fri, 12 Sep 2025 06:29:53 GMT elapsed-time: - - '67' + - '8388' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/52c023de-3948-4f96-bf8b-4313550d1417 + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: C15DF176669E462481B53DD7488A02D8 Ref B: TYO201100117045 Ref C: 2025-05-22T07:51:24Z' + - 'Ref A: D367635FCE57486CA347F9296B3D436E Ref B: MWH011020809054 Ref C: 2025-09-12T06:29:45Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3085,41 +121,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:51:55 GMT + - Fri, 12 Sep 2025 06:29:54 GMT elapsed-time: - - '64' + - '63' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9B128E1EF0FA4ACA9CB8EFF808D79A0F Ref B: TYO201100117045 Ref C: 2025-05-22T07:51:55Z' + - 'Ref A: 72BC6CDEBFE642F599981556423F31FD Ref B: MWH011020809062 Ref C: 2025-09-12T06:29:54Z' status: code: 200 message: OK @@ -3137,41 +173,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:52:26 GMT + - Fri, 12 Sep 2025 06:30:24 GMT elapsed-time: - - '96' + - '58' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 1115019A4E5A4E4382EBBF4BF31DDF7B Ref B: TYO201100117045 Ref C: 2025-05-22T07:52:26Z' + - 'Ref A: 61CDA1B3214E4FD198935C5E8483218D Ref B: CO6AA3150218033 Ref C: 2025-09-12T06:30:24Z' status: code: 200 message: OK @@ -3189,31 +225,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:52:57 GMT + - Fri, 12 Sep 2025 06:30:54 GMT elapsed-time: - - '80' + - '56' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3221,9 +257,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 922F2116D51A4372A15D0B844FF613DE Ref B: TYO201100117045 Ref C: 2025-05-22T07:52:57Z' + - 'Ref A: 65CF02AC63874613AA66AEB6429131E2 Ref B: MWH011020807060 Ref C: 2025-09-12T06:30:55Z' status: code: 200 message: OK @@ -3241,83 +277,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:53:29 GMT + - Fri, 12 Sep 2025 06:31:25 GMT elapsed-time: - '73' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 91A4CD6B57EB49CA97E2CD3D48F0D6DC Ref B: TYO201100117045 Ref C: 2025-05-22T07:53:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:54:00 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3325,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D3D3725483F34E7FA2E727A2FFDCCB47 Ref B: TYO201100117045 Ref C: 2025-05-22T07:54:00Z' + - 'Ref A: 5131B38628A04B1A8BA8B120FD6097A5 Ref B: MWH011020808025 Ref C: 2025-09-12T06:31:25Z' status: code: 200 message: OK @@ -3345,83 +329,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:54:31 GMT + - Fri, 12 Sep 2025 06:31:56 GMT elapsed-time: - '69' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 84B3C94ABC0A425B874768A8BD20F814 Ref B: TYO201100117045 Ref C: 2025-05-22T07:54: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 --ip-rules - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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: - - '793' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:55:02 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3429,9 +361,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1E68720897424FD1BBA493D25945E031 Ref B: TYO201100117045 Ref C: 2025-05-22T07:55:02Z' + - 'Ref A: DE69F1088F5E404B82787B1FDE452AAE Ref B: MWH011020808023 Ref C: 2025-09-12T06:31:56Z' status: code: 200 message: OK @@ -3449,41 +381,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:55:34 GMT + - Fri, 12 Sep 2025 06:32:26 GMT elapsed-time: - - '83' + - '59' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E2E9CC31C9724C2A8D0008F47AFBD45E Ref B: TYO201100117045 Ref C: 2025-05-22T07:55:33Z' + - 'Ref A: DBF2E2DDC48D4065821F53FC233C4306 Ref B: CO6AA3150218033 Ref C: 2025-09-12T06:32:26Z' status: code: 200 message: OK @@ -3501,41 +433,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:56:06 GMT + - Fri, 12 Sep 2025 06:32:56 GMT elapsed-time: - - '98' + - '113' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 40000746F218453392BAFFFC645D2B24 Ref B: TYO201100117045 Ref C: 2025-05-22T07:56:05Z' + - 'Ref A: 99112C283138407FB69E20F96779C987 Ref B: CO6AA3150219049 Ref C: 2025-09-12T06:32:56Z' status: code: 200 message: OK @@ -3553,41 +485,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:56:37 GMT + - Fri, 12 Sep 2025 06:33:26 GMT elapsed-time: - - '72' + - '67' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: A30CFA694C5F49A29F1BBEEDE5FD853C Ref B: TYO201100117045 Ref C: 2025-05-22T07:56:36Z' + - 'Ref A: 7D193C41161B4447AFA1D9595297E96D Ref B: CO6AA3150217021 Ref C: 2025-09-12T06:33:27Z' status: code: 200 message: OK @@ -3605,31 +537,31 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:57:09 GMT + - Fri, 12 Sep 2025 06:33:58 GMT elapsed-time: - - '71' + - '64' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3637,9 +569,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A4152FEEE52F418685C22E256F6326C6 Ref B: TYO201100117045 Ref C: 2025-05-22T07:57:07Z' + - 'Ref A: FBABB0BDB96C4B7282C402C645780893 Ref B: MWH011020806036 Ref C: 2025-09-12T06:33:57Z' status: code: 200 message: OK @@ -3657,41 +589,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:57:40 GMT + - Fri, 12 Sep 2025 06:34:27 GMT elapsed-time: - - '66' + - '64' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 1282B0D3C3D346ABB7EF60D7D35E80A6 Ref B: TYO201100117045 Ref C: 2025-05-22T07:57:39Z' + - 'Ref A: 41BCDC9AA9E34E47B195DEBE5D60C003 Ref B: CO6AA3150220047 Ref C: 2025-09-12T06:34:28Z' status: code: 200 message: OK @@ -3709,41 +641,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '793' + - '1014' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:58:11 GMT + - Fri, 12 Sep 2025 06:34:58 GMT elapsed-time: - - '64' + - '101' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: F5CD761648BC4AB39208421307D247FA Ref B: TYO201100117045 Ref C: 2025-05-22T07:58:10Z' + - 'Ref A: 80680A3370D24FE69D7C9EC22AF25CD4 Ref B: MWH011020806031 Ref C: 2025-09-12T06:34:58Z' status: code: 200 message: OK @@ -3761,41 +693,41 @@ interactions: ParameterSetName: - -n -g --sku --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '785' + - '1006' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:58:42 GMT + - Fri, 12 Sep 2025 07:37:52 GMT elapsed-time: - - '107' + - '61' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 762b2c60-36dd-11f0-a043-644ed7a2823f + - df161aa4-8fa1-11f0-929d-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9065CE32C1EF4C3C9ECDFF40102486AF Ref B: TYO201100117045 Ref C: 2025-05-22T07:58:41Z' + - 'Ref A: 7E0D6AF5CABA4A3F801D3A185CD0434A Ref B: CO6AA3150219053 Ref C: 2025-09-12T07:37:51Z' status: code: 200 message: OK @@ -3813,51 +745,52 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '761' + - '1006' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:58:44 GMT + - Fri, 12 Sep 2025 07:37:52 GMT elapsed-time: - - '76' + - '68' etag: - - W/"datetime'2025-05-22T07%3A22%3A15.3858606Z'" + - W/"datetime'2025-09-12T06%3A29%3A54.2135762Z'" expires: - '-1' pragma: - no-cache request-id: - - 947a0dad-36e2-11f0-8dd6-644ed7a2823f + - 637b4a8c-8fab-11f0-9518-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: DDEC19AFD99541249013509D8AB00D1F Ref B: TYO201100114029 Ref C: 2025-05-22T07:58:43Z' + - 'Ref A: BF4AAC32799E44DEBD9DA80148C713F0 Ref B: CO6AA3150217035 Ref C: 2025-09-12T07:37:52Z' status: code: 200 message: OK - request: body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": [{"value": "123.4.5.6"}, - {"value": "123.5.6.7"}, {"value": "123.6.7.8"}]}, "partitionCount": 1, "publicNetworkAccess": - "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}, "tags": {}}' + {}}, "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": [{"value": "123.4.5.6"}, {"value": "123.5.6.7"}, {"value": "123.6.7.8"}]}, + "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": 1, "semanticSearch": + "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": "standard"}, "tags": + {}}' headers: Accept: - application/json @@ -3868,38 +801,37 @@ interactions: Connection: - keep-alive Content-Length: - - '407' + - '504' Content-Type: - application/json ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '791' + - '1036' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:58:46 GMT + - Fri, 12 Sep 2025 07:37:53 GMT elapsed-time: - - '303' + - '359' etag: - - W/"datetime'2025-05-22T07%3A58%3A46.6314103Z'" + - W/"datetime'2025-09-12T07%3A37%3A54.1573481Z'" expires: - '-1' pragma: - no-cache request-id: - - 947a0dad-36e2-11f0-8dd6-644ed7a2823f + - 637b4a8c-8fab-11f0-9518-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3907,13 +839,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/ed27caae-50fe-4931-b473-162919b9dc3b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/eb6ede0b-145c-441d-84b6-582a606fd37a x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 840CC9480F0A47AEAF669581442FC51D Ref B: TYO201100114029 Ref C: 2025-05-22T07:58:45Z' + - 'Ref A: 375D2EC176C54498BCE0952880BC88FE Ref B: MWH011020808034 Ref C: 2025-09-12T07:37:53Z' status: code: 200 message: OK @@ -3931,42 +863,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '791' + - '1036' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:58:47 GMT + - Fri, 12 Sep 2025 07:37:54 GMT elapsed-time: - - '62' + - '60' etag: - - W/"datetime'2025-05-22T07%3A58%3A46.6314103Z'" + - W/"datetime'2025-09-12T07%3A37%3A54.1573481Z'" expires: - '-1' pragma: - no-cache request-id: - - 947a0dad-36e2-11f0-8dd6-644ed7a2823f + - 637b4a8c-8fab-11f0-9518-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 0BEFFCC6C79E4EEB8C4932F2808AC405 Ref B: TYO201100114029 Ref C: 2025-05-22T07:58:46Z' + - 'Ref A: 804DB1C183B4429997AEAF87FB67A8E9 Ref B: CO6AA3150219049 Ref C: 2025-09-12T07:37:54Z' status: code: 200 message: OK @@ -3984,42 +915,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '791' + - '1036' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:59:18 GMT + - Fri, 12 Sep 2025 07:38:24 GMT elapsed-time: - - '117' + - '77' etag: - - W/"datetime'2025-05-22T07%3A58%3A46.6314103Z'" + - W/"datetime'2025-09-12T07%3A37%3A54.1573481Z'" expires: - '-1' pragma: - no-cache request-id: - - 947a0dad-36e2-11f0-8dd6-644ed7a2823f + - 637b4a8c-8fab-11f0-9518-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 6D935D28342840CEA0B73EC5AFA16C07 Ref B: TYO201100114029 Ref C: 2025-05-22T07:59:17Z' + - 'Ref A: BB463C00F7BC4C65AADD164337E59377 Ref B: MWH011020808036 Ref C: 2025-09-12T07:38:24Z' status: code: 200 message: OK @@ -4037,42 +967,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '783' + - '1028' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:59:49 GMT + - Fri, 12 Sep 2025 07:38:54 GMT elapsed-time: - - '89' + - '64' etag: - - W/"datetime'2025-05-22T07%3A58%3A46.6314103Z'" + - W/"datetime'2025-09-12T07%3A37%3A54.1573481Z'" expires: - '-1' pragma: - no-cache request-id: - - 947a0dad-36e2-11f0-8dd6-644ed7a2823f + - 637b4a8c-8fab-11f0-9518-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 46177C26163E4A8EBA3903A93EC08697 Ref B: TYO201100114029 Ref C: 2025-05-22T07:59:49Z' + - 'Ref A: EEDE1AC874FA4FDBB1BBCE81304529F5 Ref B: CO6AA3150218011 Ref C: 2025-09-12T07:38:55Z' status: code: 200 message: OK @@ -4090,50 +1019,51 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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":[{"value":"123.4.5.6"},{"value":"123.5.6.7"},{"value":"123.6.7.8"}],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '783' + - '1028' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:59:52 GMT + - Fri, 12 Sep 2025 07:38:56 GMT elapsed-time: - - '217' + - '56' etag: - - W/"datetime'2025-05-22T07%3A58%3A46.6314103Z'" + - W/"datetime'2025-09-12T07%3A37%3A54.1573481Z'" expires: - '-1' pragma: - no-cache request-id: - - bc89a977-36e2-11f0-963e-644ed7a2823f + - 892da0ca-8fab-11f0-a35e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9276038893A042F0A318B2F0F8D11B33 Ref B: TYO201151005040 Ref C: 2025-05-22T07:59:51Z' + - 'Ref A: 43BAA5861B71496B9C05BF4193C5165D Ref B: MWH011020807029 Ref C: 2025-09-12T07:38:56Z' status: code: 200 message: OK - request: body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {}, "partitionCount": 1, "publicNetworkAccess": - "Enabled", "replicaCount": 1}, "sku": {"name": "standard"}, "tags": {}}' + {}}, "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": 1, + "semanticSearch": "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": + "standard"}, "tags": {}}' headers: Accept: - application/json @@ -4144,38 +1074,37 @@ interactions: Connection: - keep-alive Content-Length: - - '324' + - '421' Content-Type: - application/json ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '726' + - '971' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:59:53 GMT + - Fri, 12 Sep 2025 07:38:56 GMT elapsed-time: - - '305' + - '252' etag: - - W/"datetime'2025-05-22T07%3A59%3A53.3161823Z'" + - W/"datetime'2025-09-12T07%3A38%3A57.0207318Z'" expires: - '-1' pragma: - no-cache request-id: - - bc89a977-36e2-11f0-963e-644ed7a2823f + - 892da0ca-8fab-11f0-a35e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -4183,13 +1112,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/61a57b53-1076-47c7-8b55-4df024fdd9b0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/0933a269-dc67-4515-a791-fe1b1832731b x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 3EB352F17E2241BDA216A6C873BE239D Ref B: TYO201151005040 Ref C: 2025-05-22T07:59:52Z' + - 'Ref A: 81F91F33B7684DF487453B9AA5935BFC Ref B: MWH011020808036 Ref C: 2025-09-12T07:38:56Z' status: code: 200 message: OK @@ -4207,42 +1136,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '726' + - '971' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:59:54 GMT + - Fri, 12 Sep 2025 07:38:57 GMT elapsed-time: - - '65' + - '58' etag: - - W/"datetime'2025-05-22T07%3A59%3A53.3161823Z'" + - W/"datetime'2025-09-12T07%3A38%3A57.0207318Z'" expires: - '-1' pragma: - no-cache request-id: - - bc89a977-36e2-11f0-963e-644ed7a2823f + - 892da0ca-8fab-11f0-a35e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: E2AAAF34C9A4477CBB5464B8F13F7E43 Ref B: TYO201151005040 Ref C: 2025-05-22T07:59:53Z' + - 'Ref A: E9B8F3664FD34BE58C173B26953637C1 Ref B: MWH011020807060 Ref C: 2025-09-12T07:38:57Z' status: code: 200 message: OK @@ -4260,42 +1188,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '726' + - '971' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 08:00:25 GMT + - Fri, 12 Sep 2025 07:39:26 GMT elapsed-time: - - '93' + - '61' etag: - - W/"datetime'2025-05-22T07%3A59%3A53.3161823Z'" + - W/"datetime'2025-09-12T07%3A38%3A57.0207318Z'" expires: - '-1' pragma: - no-cache request-id: - - bc89a977-36e2-11f0-963e-644ed7a2823f + - 892da0ca-8fab-11f0-a35e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 75C76FAF037B49CBB8CA2A9D8FB51F58 Ref B: TYO201151005040 Ref C: 2025-05-22T08:00:24Z' + - 'Ref A: AB74295195F342A68FD4054882ED6163 Ref B: CO6AA3150218047 Ref C: 2025-09-12T07:39:27Z' status: code: 200 message: OK @@ -4313,42 +1240,41 @@ interactions: ParameterSetName: - -n -g --ip-rules User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"standard"}}' + 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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T06:29:54.211Z"},"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: - - '718' + - '963' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 08:00:56 GMT + - Fri, 12 Sep 2025 07:39:57 GMT elapsed-time: - - '64' + - '127' etag: - - W/"datetime'2025-05-22T07%3A59%3A53.3161823Z'" + - W/"datetime'2025-09-12T07%3A38%3A57.0207318Z'" expires: - '-1' pragma: - no-cache request-id: - - bc89a977-36e2-11f0-963e-644ed7a2823f + - 892da0ca-8fab-11f0-a35e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 8C2AB3C22943414EB93B6D10C695665E Ref B: TYO201151005040 Ref C: 2025-05-22T08:00:55Z' + - 'Ref A: D23C28935EDA42EBA524B152C1B243B0 Ref B: MWH011020809062 Ref C: 2025-09-12T07:39:57Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml index 0f95a045b8c..2fb9a17f7ab 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_msi.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_update_msi","date":"2025-05-22T07:21:54Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_msi","date":"2025-09-12T01:39:52Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '388' + - '390' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:22:06 GMT + - Fri, 12 Sep 2025 01:39:53 GMT expires: - '-1' pragma: @@ -39,14 +39,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 650D2F5C0D5F4B659EFEFC85207BA6D2 Ref B: TYO201100116033 Ref C: 2025-05-22T07:22:05Z' + - 'Ref A: 6F8D40CD5FCC4BBCA2BD9B2D6805FADA Ref B: MWH011020809025 Ref C: 2025-09-12T01:39:54Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "eastus2euap", "properties": + body: '{"identity": {"type": "SystemAssigned"}, "location": "westcentralus", "properties": {"hostingMode": "default", "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: @@ -59,37 +59,37 @@ interactions: Connection: - keep-alive Content-Length: - - '209' + - '211' Content-Type: - application/json ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"11f83029-e731-469b-850b-9eb57f2282f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1109' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:22:28 GMT + - Fri, 12 Sep 2025 01:40:03 GMT elapsed-time: - - '7136' + - '7030' etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" + - W/"datetime'2025-09-12T01%3A40%3A03.6458286Z'" expires: - '-1' pragma: - no-cache request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f + - 6160dd9c-8f79-11f0-b7cc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -97,13 +97,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/f9ede3b1-c57b-4ff0-95a6-4b52d8709868 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/0db81637-beb6-4f87-be24-78740ca90aee x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '800' x-msedge-ref: - - 'Ref A: 04F3B3FB198D4684B3B4CB8ED27FEAAE Ref B: TYO201151002052 Ref C: 2025-05-22T07:22:06Z' + - 'Ref A: B22B40CB1BFC49BE92C6FA4FB1BF84C2 Ref B: MWH011020807034 Ref C: 2025-09-12T01:39:54Z' status: code: 201 message: Created @@ -121,31 +121,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"11f83029-e731-469b-850b-9eb57f2282f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1109' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:22:28 GMT + - Fri, 12 Sep 2025 01:40:03 GMT elapsed-time: - - '68' + - '104' etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" + - W/"datetime'2025-09-12T01%3A40%3A03.6458286Z'" expires: - '-1' pragma: - no-cache request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f + - 6160dd9c-8f79-11f0-b7cc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -153,9 +153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AE7AF07C90DE40AA8F07BA454E0AB26A Ref B: TYO201151002052 Ref C: 2025-05-22T07:22:28Z' + - 'Ref A: 41EF0D8B586A4C82B521CDA5F9FBFFB5 Ref B: CO6AA3150219051 Ref C: 2025-09-12T01:40:03Z' status: code: 200 message: OK @@ -173,31 +173,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"11f83029-e731-469b-850b-9eb57f2282f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1109' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:22:59 GMT + - Fri, 12 Sep 2025 01:40:33 GMT elapsed-time: - - '77' + - '64' etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" + - W/"datetime'2025-09-12T01%3A40%3A03.6458286Z'" expires: - '-1' pragma: - no-cache request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f + - 6160dd9c-8f79-11f0-b7cc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -205,9 +205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C0CCCAA88FB24FFEB08D3B3EB31DAD92 Ref B: TYO201151002052 Ref C: 2025-05-22T07:22:59Z' + - 'Ref A: 733873E13A9A4A068907B2E278B8B37C Ref B: MWH011020809042 Ref C: 2025-09-12T01:40:34Z' status: code: 200 message: OK @@ -225,31 +225,31 @@ interactions: ParameterSetName: - -n -g --sku --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"11f83029-e731-469b-850b-9eb57f2282f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '887' + - '1101' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:23:30 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '69' + - '133' etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" + - W/"datetime'2025-09-12T01%3A40%3A03.6458286Z'" expires: - '-1' pragma: - no-cache request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f + - 6160dd9c-8f79-11f0-b7cc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -257,2609 +257,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EEA220A2110B45DFBF7AF3714AF61EDA Ref B: TYO201151002052 Ref C: 2025-05-22T07:23: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:24:01 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8E3D6B16C7AF483EA454613270F92C00 Ref B: TYO201151002052 Ref C: 2025-05-22T07:24: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:24:32 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 67E21C6A73E34F2B933C1D23FEDC5302 Ref B: TYO201151002052 Ref C: 2025-05-22T07:24:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:25:03 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 08D36EEA737548C08BC3958790C9FA87 Ref B: TYO201151002052 Ref C: 2025-05-22T07:25: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:25:35 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E63DD665B9934479B4219D23E806E001 Ref B: TYO201151002052 Ref C: 2025-05-22T07:25: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:26:06 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 402E3D1B8D9A4295BB5AF1E5255E2893 Ref B: TYO201151002052 Ref C: 2025-05-22T07:26: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:26:36 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CEDCE833A28647728566135F7BA1F3F2 Ref B: TYO201151002052 Ref C: 2025-05-22T07:26: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:27:08 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 20E07593DB44438FA373C280B3DCDF57 Ref B: TYO201151002052 Ref C: 2025-05-22T07:27:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:27:39 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3DEA7EA57309404FA932A45A4F5F6E92 Ref B: TYO201151002052 Ref C: 2025-05-22T07:27: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:28:10 GMT - elapsed-time: - - '109' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 10225BC7D7FC47B49E8BFB6E0FA38C04 Ref B: TYO201151002052 Ref C: 2025-05-22T07:28: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:28:41 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9DF815428B574AD485ADAFF2A9FDE407 Ref B: TYO201151002052 Ref C: 2025-05-22T07:28: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:29:13 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A1C1D3F775A14D0BA5B12EEB2F990396 Ref B: TYO201151002052 Ref C: 2025-05-22T07:29: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:29:44 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 78D3309D6489406B89BAD761C1F5AB16 Ref B: TYO201151002052 Ref C: 2025-05-22T07:29: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:30:15 GMT - elapsed-time: - - '89' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EC129F883CE741CF9DA47EC794CF6560 Ref B: TYO201151002052 Ref C: 2025-05-22T07:30: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:30:46 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B2630BF9C5B24F99852E6FB7C18A7E4A Ref B: TYO201151002052 Ref C: 2025-05-22T07:30: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:31:17 GMT - elapsed-time: - - '107' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ED7EB5FE1F5B4594B6A0C95F5C82C407 Ref B: TYO201151002052 Ref C: 2025-05-22T07:31:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:31:48 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 72361297397147FFAE0FCBF74C22F3BE Ref B: TYO201151002052 Ref C: 2025-05-22T07:31:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:32:20 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D241D754A6BB4D68AAEF38A659F0AEA3 Ref B: TYO201151002052 Ref C: 2025-05-22T07:32:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:32:51 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4BB7138CAE50414696ADCE739CD4047F Ref B: TYO201151002052 Ref C: 2025-05-22T07:32:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:33:22 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 61D617C16D37400C807D1F660DA2CEE0 Ref B: TYO201151002052 Ref C: 2025-05-22T07:33:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:33:53 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 76DBF8DCB7E54B6A888280D1FA7CC323 Ref B: TYO201151002052 Ref C: 2025-05-22T07:33:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:34:24 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C724EE9600B7436982240741C8AA9796 Ref B: TYO201151002052 Ref C: 2025-05-22T07:34:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:34:55 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 00B03634868247B68D2C4B6EB6531CC8 Ref B: TYO201151002052 Ref C: 2025-05-22T07:34:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:35:26 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81F5FF6B7BED4A6DA53F2CC9DC95B019 Ref B: TYO201151002052 Ref C: 2025-05-22T07:35:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:35:57 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7375E7C04B734B2F8C3F59E3D778BA01 Ref B: TYO201151002052 Ref C: 2025-05-22T07:35:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:36:28 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BF0D716EE2D64AF6BDF9869BE42F042B Ref B: TYO201151002052 Ref C: 2025-05-22T07:36:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:37:00 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DCD29D885411442A913B47A802DC64E5 Ref B: TYO201151002052 Ref C: 2025-05-22T07:36: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:37:31 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 509540A15CD044BA9BA04C19B8988100 Ref B: TYO201151002052 Ref C: 2025-05-22T07:37: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:38:02 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 487B2EF291784D129F8165F67C81D3DA Ref B: TYO201151002052 Ref C: 2025-05-22T07:38:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:38:33 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D6A174CEC36241A7A537D52EAD368082 Ref B: TYO201151002052 Ref C: 2025-05-22T07:38: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:39:06 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3233B44FCA71457A9EB94B81AE9D9798 Ref B: TYO201151002052 Ref C: 2025-05-22T07:39: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:39:37 GMT - elapsed-time: - - '55' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1EF9A8803A5C45CC9AC29D93F02EE1EE Ref B: TYO201151002052 Ref C: 2025-05-22T07:39: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:40:09 GMT - elapsed-time: - - '76' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 14413859FAFE40B0983F4923175827A7 Ref B: TYO201151002052 Ref C: 2025-05-22T07:40:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:40:40 GMT - elapsed-time: - - '85' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B2C3B52D6AFA471DBAAC45874A13EEBB Ref B: TYO201151002052 Ref C: 2025-05-22T07:40: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:41:11 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9555CABBADDC49618E563557F440E4B6 Ref B: TYO201151002052 Ref C: 2025-05-22T07:41: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:41:42 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 517949439D0D46EA9115D574E1371A80 Ref B: TYO201151002052 Ref C: 2025-05-22T07:41: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:42:13 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1CC144A55597468BA21DD95F2A1DE21A Ref B: TYO201151002052 Ref C: 2025-05-22T07:42: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:42:45 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BBCB382AD901429FA28A6494B483B676 Ref B: TYO201151002052 Ref C: 2025-05-22T07:42: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:43:16 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5C166E94705E4B2A8C413AFCCEA94885 Ref B: TYO201151002052 Ref C: 2025-05-22T07:43: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:43:47 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A8BEC1DB1AFF471399EED1FC8B34FFB4 Ref B: TYO201151002052 Ref C: 2025-05-22T07:43: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:44:19 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C8C90AE3FE444AD980B7A209A4CECCE1 Ref B: TYO201151002052 Ref C: 2025-05-22T07:44:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:44:51 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A989E0E73AF8417DA41856E3E99337D2 Ref B: TYO201151002052 Ref C: 2025-05-22T07:44:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:45:22 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AB93B4FC2D9741CA80E45CA44947DAD8 Ref B: TYO201151002052 Ref C: 2025-05-22T07:45:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:45:54 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6A0974BC789749F386BBD18EBE60AD79 Ref B: TYO201151002052 Ref C: 2025-05-22T07:45:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:46:25 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 621A6B5050B544B7A7EBB75B73B8FBF1 Ref B: TYO201151002052 Ref C: 2025-05-22T07:46:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:46:56 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6F39A865D40045AB98223BB47845FB5E Ref B: TYO201151002052 Ref C: 2025-05-22T07:46:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:47:27 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 30F4C1F2C0DC4284A36D462F4CAA1CEC Ref B: TYO201151002052 Ref C: 2025-05-22T07:47:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:48:01 GMT - elapsed-time: - - '81' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1754BB36679245B8992F6C79DC393BE9 Ref B: TYO201151002052 Ref C: 2025-05-22T07:48:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:48:32 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9241F02B076941F7B3E0D2D3B9389D6C Ref B: TYO201151002052 Ref C: 2025-05-22T07:48: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 --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '887' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:49:03 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 367C6190576B412F837516EFBC4552DE Ref B: TYO201151002052 Ref C: 2025-05-22T07:49:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --identity-type - User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '879' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 22 May 2025 07:49:34 GMT - elapsed-time: - - '74' - etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 7652700a-36dd-11f0-95ef-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0FA03C45086D4B0087D1FFE4C1A12529 Ref B: TYO201151002052 Ref C: 2025-05-22T07:49:34Z' + - 'Ref A: 83330F19A4854B5EA299370DC7FE6852 Ref B: CO6AA3150219009 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK @@ -2877,51 +277,51 @@ interactions: ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"04ad9d93-837d-4d79-8ddb-e7ce78c82cfb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"11f83029-e731-469b-850b-9eb57f2282f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '855' + - '1101' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:49:35 GMT + - Fri, 12 Sep 2025 06:28:36 GMT elapsed-time: - - '69' + - '56' etag: - - W/"datetime'2025-05-22T07%3A22%3A28.3795255Z'" + - W/"datetime'2025-09-12T01%3A40%3A03.6458286Z'" expires: - '-1' pragma: - no-cache request-id: - - 4dcba1df-36e1-11f0-88c4-644ed7a2823f + - b53b9fa6-8fa1-11f0-a8cd-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 5689F6C0A7F541F99C07B93630DB5D91 Ref B: TYO201151003034 Ref C: 2025-05-22T07:49:35Z' + - 'Ref A: 7B875CF9C4A44DCCA46EB6E4A03D85C1 Ref B: CO6AA3150219049 Ref C: 2025-09-12T06:28:36Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "East US 2 EUAP", "properties": - {"authOptions": {"apiKeyOnly": {}}, "disableLocalAuth": false, "encryptionWithCmk": - {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": - {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "Enabled", "replicaCount": - 1}, "sku": {"name": "basic"}, "tags": {}}' + body: '{"identity": {"type": "None"}, "location": "West Central US", "properties": + {"authOptions": {"apiKeyOnly": {}}, "dataExfiltrationProtections": [], "disableLocalAuth": + false, "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", + "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": + "Enabled", "replicaCount": 1, "semanticSearch": "free", "upgradeAvailable": + "notAvailable"}, "sku": {"name": "basic"}, "tags": {}}' headers: Accept: - application/json @@ -2932,38 +332,37 @@ interactions: Connection: - keep-alive Content-Length: - - '364' + - '462' Content-Type: - application/json ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '961' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:49:38 GMT + - Fri, 12 Sep 2025 06:28:38 GMT elapsed-time: - - '226' + - '203' etag: - - W/"datetime'2025-05-22T07%3A49%3A39.3538176Z'" + - W/"datetime'2025-09-12T06%3A28%3A39.0161398Z'" expires: - '-1' pragma: - no-cache request-id: - - 4dcba1df-36e1-11f0-88c4-644ed7a2823f + - b53b9fa6-8fa1-11f0-a8cd-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2971,13 +370,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0f8679d1-790b-4b03-98b3-9cdc42fe0b50 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/0fd91c86-f5ad-4a56-96ac-d31ac44902ed x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 2BE308CE1A2F41FBADB057EA235FB9D3 Ref B: TYO201151003034 Ref C: 2025-05-22T07:49:36Z' + - 'Ref A: 579E72FA3DCC4A7CBEEAFEA7E3991A38 Ref B: CO6AA3150217035 Ref C: 2025-09-12T06:28:36Z' status: code: 200 message: OK @@ -2995,32 +394,31 @@ interactions: ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '961' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:49:40 GMT + - Fri, 12 Sep 2025 06:28:39 GMT elapsed-time: - - '67' + - '133' etag: - - W/"datetime'2025-05-22T07%3A49%3A39.3538176Z'" + - W/"datetime'2025-09-12T06%3A28%3A39.0161398Z'" expires: - '-1' pragma: - no-cache request-id: - - 5099a1f7-36e1-11f0-a061-644ed7a2823f + - b8197273-8fa1-11f0-9450-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3028,18 +426,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2A7F509BF8BA4ADBA45BBB50A88519D8 Ref B: TYO201151005031 Ref C: 2025-05-22T07:49:40Z' + - 'Ref A: 79B32BF3785C410693FD41168CA780AF Ref B: MWH011020807029 Ref C: 2025-09-12T06:28:40Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "East US 2 EUAP", - "properties": {"authOptions": {"apiKeyOnly": {}}, "disableLocalAuth": false, - "encryptionWithCmk": {"enforcement": "Unspecified"}, "hostingMode": "default", - "networkRuleSet": {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": - "Enabled", "replicaCount": 1}, "sku": {"name": "basic"}, "tags": {}}' + body: '{"identity": {"type": "SystemAssigned"}, "location": "West Central US", + "properties": {"authOptions": {"apiKeyOnly": {}}, "dataExfiltrationProtections": + [], "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, + "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": + 1, "publicNetworkAccess": "Enabled", "replicaCount": 1, "semanticSearch": "free", + "upgradeAvailable": "notAvailable"}, "sku": {"name": "basic"}, "tags": {}}' headers: Accept: - application/json @@ -3050,38 +449,37 @@ interactions: Connection: - keep-alive Content-Length: - - '374' + - '472' Content-Type: - application/json ParameterSetName: - -n -g --identity-type User-Agent: - - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"},"identity":{"type":"SystemAssigned","principalId":"dca6faba-37f3-4a09-a5bb-60465ef0aa4c","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a"}}' + string: '{"location":"West Central US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"identity":{"type":"SystemAssigned","principalId":"9eb5c91f-876c-438d-a3a6-109d050cb2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdAt":"2025-09-12T01:40:03.645Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '855' + - '1101' content-type: - application/json; charset=utf-8 date: - - Thu, 22 May 2025 07:49:45 GMT + - Fri, 12 Sep 2025 06:28:47 GMT elapsed-time: - - '760' + - '5536' etag: - - W/"datetime'2025-05-22T07%3A49%3A45.4311274Z'" + - W/"datetime'2025-09-12T06%3A28%3A47.3465908Z'" expires: - '-1' pragma: - no-cache request-id: - - 5099a1f7-36e1-11f0-a061-644ed7a2823f + - b8197273-8fa1-11f0-9450-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3089,13 +487,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/dceaad2e-48cc-40c4-9ecb-7735ac5b2370 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/f07a0b2c-dd17-4fd0-952e-14e2803e433d x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 5A9081995E5040968D78F9FD124E51A1 Ref B: TYO201151005031 Ref C: 2025-05-22T07:49:41Z' + - 'Ref A: 7B0722F1098E48CCA3F6F13DAA4F3F88 Ref B: CO6AA3150218011 Ref C: 2025-09-12T06:28:40Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml index c2b4e5b4e96..5eff6888472 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_service_update_private_endpoint.yaml @@ -11,23 +11,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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_update_private_endpoint","date":"2025-05-16T11:06:07Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_service_update_private_endpoint","date":"2025-09-12T01:18:50Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '401' + - '396' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:06:11 GMT + - Fri, 12 Sep 2025 01:18:53 GMT expires: - '-1' pragma: @@ -39,14 +39,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F5A6E395790A41ABA6139DDF0C8A1F84 Ref B: TYO201100116023 Ref C: 2025-05-16T11:06:12Z' + - 'Ref A: CB82059207464399B1E26102EEF0D03F Ref B: CO6AA3150219031 Ref C: 2025-09-12T01:18:53Z' status: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"hostingMode": "default", "partitionCount": + body: '{"location": "westus", "properties": {"hostingMode": "default", "partitionCount": 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}}' headers: Accept: @@ -58,37 +58,37 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '165' Content-Type: - application/json ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:06:24 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '8537' + - '6979' etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -96,13 +96,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/02bbbfc4-d40b-411a-9a4b-781ab4debdf6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus/329adc48-eac1-4c9d-abdb-d34ad7b433dc x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: AA3B512377AD415B99A4101426DEDBEE Ref B: TYO201100115017 Ref C: 2025-05-16T11:06:13Z' + - 'Ref A: 5A0EC35A00F64AC3BF55A24E2823ADBD Ref B: MWH011020806036 Ref C: 2025-09-12T01:18:54Z' status: code: 201 message: Created @@ -118,1826 +118,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --sku --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '748' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:06:25 GMT + - Fri, 12 Sep 2025 01:19:01 GMT elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8A49E732F3F44B73B3D900A98CA04C95 Ref B: TYO201100115017 Ref C: 2025-05-16T11:06:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:06:57 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0607C2CAA67A4579B42AB81380D949A7 Ref B: TYO201100115017 Ref C: 2025-05-16T11:06:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:07:28 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 59B5A6359728441483294AAC678F006B Ref B: TYO201100115017 Ref C: 2025-05-16T11:07:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:07:59 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0655CAF81CAA45A5BBADA3AF10F719A3 Ref B: TYO201100115017 Ref C: 2025-05-16T11:07:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:08:30 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3B01605B3D5A46C2B3654A465E756DC6 Ref B: TYO201100115017 Ref C: 2025-05-16T11:08: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:09:01 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CEB8A47CAF364423A13D1A49D3EC7086 Ref B: TYO201100115017 Ref C: 2025-05-16T11:09: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:09:33 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DDEEB82784FF4D298346BFCF199C5126 Ref B: TYO201100115017 Ref C: 2025-05-16T11:09: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:10:04 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4819D145EE4F44BC86F37E6061972963 Ref B: TYO201100115017 Ref C: 2025-05-16T11:10: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:10:35 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7FC5E92108684CA6B1ABBFE33D80A583 Ref B: TYO201100115017 Ref C: 2025-05-16T11:10: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:11:06 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B7D8E2D78E2A42F181DE3A1701CAD114 Ref B: TYO201100115017 Ref C: 2025-05-16T11:11: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:11:37 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 524CDDA036BD48079C57AD4D5E20ADBB Ref B: TYO201100115017 Ref C: 2025-05-16T11:11:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:12:09 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9DAAF4C3FBF645E3A7256ACB1A3BCA9C Ref B: TYO201100115017 Ref C: 2025-05-16T11:12: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:12:40 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FACCEA5B6D60496C97BDCBD84A3BCE73 Ref B: TYO201100115017 Ref C: 2025-05-16T11:12: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:13:11 GMT - elapsed-time: - - '98' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8F505AD625F84FBA9FA830BAC6DA72FF Ref B: TYO201100115017 Ref C: 2025-05-16T11:13: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:13:42 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F389A1971361447DB23A4B7B7C0CED2F Ref B: TYO201100115017 Ref C: 2025-05-16T11:13: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:14:13 GMT - elapsed-time: - - '81' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 32E485E483B0458BB4371D6B333C58ED Ref B: TYO201100115017 Ref C: 2025-05-16T11:14: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:14:45 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD43DAFC15DF4762877758447B034BC9 Ref B: TYO201100115017 Ref C: 2025-05-16T11:14: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:15:16 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9FA335F9DDE24A2594DD8B6A47290698 Ref B: TYO201100115017 Ref C: 2025-05-16T11:15: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:15:47 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8B31672CF3DF4F4880C48481F87D22A4 Ref B: TYO201100115017 Ref C: 2025-05-16T11:15: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:16:19 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 22AB250026464D9D86A5184A9C2A0907 Ref B: TYO201100115017 Ref C: 2025-05-16T11:16:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:16:50 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D8C3EB3993F54C29B4D975BB73AA2249 Ref B: TYO201100115017 Ref C: 2025-05-16T11:16:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:17:22 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 880BFD80A7C4413B8857894659E4D0D1 Ref B: TYO201100115017 Ref C: 2025-05-16T11:17:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:17:53 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 98456F3BBDF449848EE5B036B1EB656F Ref B: TYO201100115017 Ref C: 2025-05-16T11:17:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:18:24 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4A82EE90094A497594FE4F1057466843 Ref B: TYO201100115017 Ref C: 2025-05-16T11:18:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:18:55 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D2462904C6EA461A839DEFF7248F1544 Ref B: TYO201100115017 Ref C: 2025-05-16T11:18:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:19:26 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EFCA8A9948D44DC3A4B9AE523DCE2FED Ref B: TYO201100115017 Ref C: 2025-05-16T11:19:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:19:58 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 483F65B8C81040AC98329CC0CD23EB1F Ref B: TYO201100115017 Ref C: 2025-05-16T11:19:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:20:29 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BF62CB2E601D4786825FEEF30111D470 Ref B: TYO201100115017 Ref C: 2025-05-16T11:20: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:21:00 GMT - elapsed-time: - - '73' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F6055030A5AF4AD39C1157ED4C41B1D5 Ref B: TYO201100115017 Ref C: 2025-05-16T11:21: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:21:31 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0A81E25B32DA459F8ECF21C077202601 Ref B: TYO201100115017 Ref C: 2025-05-16T11:21: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:22:02 GMT - elapsed-time: - - '67' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 06AC51F59AA1427DB486F4A634114CAE Ref B: TYO201100115017 Ref C: 2025-05-16T11:22: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 --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2023-11-01 - response: - body: - string: '{"location":"East US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"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":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '740' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:22:33 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - c6366439-3245-11f0-9ecb-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 121477E080944BE7B828B7EBBA004C97 Ref B: TYO201100115017 Ref C: 2025-05-16T11:22:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '716' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:22:36 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A06%3A24.4114022Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C7EA29C7F69042769F78BF974B5B2FDF Ref B: TYO201151004040 Ref C: 2025-05-16T11:22:36Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": - 1, "publicNetworkAccess": "enabled", "replicaCount": 1}, "sku": {"name": "basic"}, - "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - Content-Length: - - '334' - Content-Type: - - application/json - ParameterSetName: - - -n -g --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '723' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:22:40 GMT - elapsed-time: - - '2513' - etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/54523069-d3fe-4f93-9744-6d2115667473 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: DA249B8C74B544908F697570AF0C627B Ref B: TYO201151004040 Ref C: 2025-05-16T11:22:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '723' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:22:41 GMT - elapsed-time: - - '74' + - '77' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 4CEC80703E44470F90CDB112BBA517C2 Ref B: TYO201151004040 Ref C: 2025-05-16T11:22:40Z' + - 'Ref A: 05557A7367AE49E09A466EE0597CCD58 Ref B: CO6AA3150218049 Ref C: 2025-09-12T01:19:01Z' status: code: 200 message: OK @@ -1949,48 +166,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:23:12 GMT + - Fri, 12 Sep 2025 01:19:32 GMT elapsed-time: - - '74' + - '75' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: EC5005D6AA4E4B9EB924D156314BF36A Ref B: TYO201151004040 Ref C: 2025-05-16T11:23:12Z' + - 'Ref A: E17EFFF0F1B64B919857FF9F84AD5F23 Ref B: CO6AA3150220039 Ref C: 2025-09-12T01:19:32Z' status: code: 200 message: OK @@ -2002,38 +218,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:23:43 GMT + - Fri, 12 Sep 2025 01:20:02 GMT elapsed-time: - - '100' + - '84' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2041,9 +256,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9DF93A607FAB4488BE71CA0927BBDFF7 Ref B: TYO201151004040 Ref C: 2025-05-16T11:23:43Z' + - 'Ref A: BC8F359359414DFCABEA0D7BE9DC9937 Ref B: CO6AA3150219039 Ref C: 2025-09-12T01:20:03Z' status: code: 200 message: OK @@ -2055,38 +270,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:24:15 GMT + - Fri, 12 Sep 2025 01:20:32 GMT elapsed-time: - - '67' + - '85' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2094,9 +308,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 15F977161E9343D992222C454C7A849A Ref B: TYO201151004040 Ref C: 2025-05-16T11:24:14Z' + - 'Ref A: 41351FAC64DD477090609EC0548EB4C0 Ref B: MWH011020808040 Ref C: 2025-09-12T01:20:33Z' status: code: 200 message: OK @@ -2108,38 +322,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:24:46 GMT + - Fri, 12 Sep 2025 01:21:03 GMT elapsed-time: - - '141' + - '74' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2147,9 +360,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 846C3566977F4A2DAFB28715160949AA Ref B: TYO201151004040 Ref C: 2025-05-16T11:24:46Z' + - 'Ref A: A919524784314C9E9C4EB26B92834889 Ref B: MWH011020809023 Ref C: 2025-09-12T01:21:03Z' status: code: 200 message: OK @@ -2161,38 +374,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:25:17 GMT + - Fri, 12 Sep 2025 01:21:33 GMT elapsed-time: - - '69' + - '80' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2200,9 +412,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0DA8718E10A24764832C0E4541FA30DD Ref B: TYO201151004040 Ref C: 2025-05-16T11:25:17Z' + - 'Ref A: BBF8D9B2B385458BAE58A1FC9CD6D020 Ref B: MWH011020806034 Ref C: 2025-09-12T01:21:33Z' status: code: 200 message: OK @@ -2214,48 +426,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:25:48 GMT + - Fri, 12 Sep 2025 01:22:04 GMT elapsed-time: - - '76' + - '236' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 03E893A32DF74D4C9DC7E5CDC8BDF985 Ref B: TYO201151004040 Ref C: 2025-05-16T11:25:48Z' + - 'Ref A: 20BFAF6254EE4AC7BBA4D6BA09CE3E9F Ref B: CO6AA3150220025 Ref C: 2025-09-12T01:22:03Z' status: code: 200 message: OK @@ -2267,38 +478,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:26:20 GMT + - Fri, 12 Sep 2025 01:22:34 GMT elapsed-time: - - '73' + - '81' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2306,9 +516,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 95D68C67C1E74EDB907C83C607EE725D Ref B: TYO201151004040 Ref C: 2025-05-16T11:26:19Z' + - 'Ref A: CE650529E9AD404BBDD19105CED7787B Ref B: CO6AA3150220031 Ref C: 2025-09-12T01:22:34Z' status: code: 200 message: OK @@ -2320,38 +530,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:26:51 GMT + - Fri, 12 Sep 2025 01:23:04 GMT elapsed-time: - - '67' + - '79' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2359,9 +568,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 80EE6ACDF9AB4260ADF6F50C93545D72 Ref B: TYO201151004040 Ref C: 2025-05-16T11:26:51Z' + - 'Ref A: 346B34CEFB144D70B3D6DEBB52D1546D Ref B: CO6AA3150218031 Ref C: 2025-09-12T01:23:05Z' status: code: 200 message: OK @@ -2373,38 +582,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '723' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:27:22 GMT + - Fri, 12 Sep 2025 01:23:35 GMT elapsed-time: - - '68' + - '82' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2412,9 +620,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2909815B02274059BD5A03B5D80AC8A5 Ref B: TYO201151004040 Ref C: 2025-05-16T11:27:22Z' + - 'Ref A: 317BB26240C94FA490219D161C860781 Ref B: CO6AA3150218047 Ref C: 2025-09-12T01:23:35Z' status: code: 200 message: OK @@ -2426,38 +634,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - search service update + - search service create Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:27:53 GMT + - Fri, 12 Sep 2025 01:24:05 GMT elapsed-time: - - '77' + - '82' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - 1077666d-3248-11f0-9dd2-644ed7a2823f + - 71e18443-8f76-11f0-9b46-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2465,9 +672,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FDB49E2FA8734CCD8289D764D7AEBE10 Ref B: TYO201151004040 Ref C: 2025-05-16T11:27:53Z' + - 'Ref A: AE9A8C5699A34CA0847229E8D4BDD296 Ref B: MWH011020809042 Ref C: 2025-09-12T01:24:05Z' status: code: 200 message: OK @@ -2483,34 +690,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Enabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '715' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:27:56 GMT + - Fri, 12 Sep 2025 01:24:05 GMT elapsed-time: - - '72' + - '87' etag: - - W/"datetime'2025-05-16T11%3A22%3A40.6214653Z'" + - W/"datetime'2025-09-12T01%3A19%3A01.5130546Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2518,18 +724,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A1828B9A677F4AD7933050B73528F5FB Ref B: TYO201151005029 Ref C: 2025-05-16T11:27:56Z' + - 'Ref A: 9C76466E4B74424A9B703C30BA96C4E6 Ref B: CO6AA3150218021 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK - request: - body: '{"location": "East US 2 EUAP", "properties": {"authOptions": {"apiKeyOnly": - {}}, "disableLocalAuth": false, "encryptionWithCmk": {"enforcement": "Unspecified"}, - "hostingMode": "default", "networkRuleSet": {"ipRules": []}, "partitionCount": - 1, "publicNetworkAccess": "disabled", "replicaCount": 1}, "sku": {"name": "basic"}, - "tags": {}}' + body: '{"location": "West US", "properties": {"authOptions": {"apiKeyOnly": {}}, + "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "enabled", "replicaCount": + 1, "semanticSearch": "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": + "basic"}, "tags": {}}' headers: Accept: - application/json @@ -2540,38 +747,37 @@ interactions: Connection: - keep-alive Content-Length: - - '335' + - '424' Content-Type: - application/json ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:28:00 GMT + - Fri, 12 Sep 2025 01:24:10 GMT elapsed-time: - - '2851' + - '2804' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2579,119 +785,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/bf29a4fa-b183-4be8-be4e-f24e4b003798 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/0b67fc9f-4b93-4bd4-9427-b58cc4bb0a76 x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: F5C356F376754E5BAEFEEE740F39883A Ref B: TYO201151005029 Ref C: 2025-05-16T11:27:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:28:01 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4BCCA6B939A741C8A8BADD220DFA7BF2 Ref B: TYO201151005029 Ref C: 2025-05-16T11:28:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service update - Connection: - - keep-alive - ParameterSetName: - - -n -g --public-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:28:32 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: B5FB0BC94C2945ED9A60D26BEEB58F8C Ref B: TYO201151005029 Ref C: 2025-05-16T11:28:32Z' + - 'Ref A: 560546B1F77E4F1AAF7DF7A3793D5621 Ref B: CO6AA3150220051 Ref C: 2025-09-12T01:24:06Z' status: code: 200 message: OK @@ -2707,34 +807,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:29:04 GMT + - Fri, 12 Sep 2025 01:24:10 GMT elapsed-time: - - '70' + - '69' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2742,9 +841,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FA6D427FB2D94119AC1C96CBF33C7528 Ref B: TYO201151005029 Ref C: 2025-05-16T11:29:03Z' + - 'Ref A: A35B8D4AFF2D417A93F5CEEBE76E39DC Ref B: CO6AA3150219049 Ref C: 2025-09-12T01:24:10Z' status: code: 200 message: OK @@ -2760,34 +859,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:29:35 GMT + - Fri, 12 Sep 2025 01:24:41 GMT elapsed-time: - - '93' + - '86' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2795,9 +893,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ABCCD19B4FE24C3B8F6C695D296B215A Ref B: TYO201151005029 Ref C: 2025-05-16T11:29:35Z' + - 'Ref A: 8ABFE2B559A54DA9B7AFF50582361A16 Ref B: CO6AA3150218025 Ref C: 2025-09-12T01:24:41Z' status: code: 200 message: OK @@ -2813,34 +911,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:30:06 GMT + - Fri, 12 Sep 2025 01:25:10 GMT elapsed-time: - - '78' + - '79' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2848,9 +945,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 70BDF9B6B110401B83E149CC6E142EF2 Ref B: TYO201151005029 Ref C: 2025-05-16T11:30:06Z' + - 'Ref A: 1D2FF3FD04504BA1B0229D13DF7A1622 Ref B: CO6AA3150218009 Ref C: 2025-09-12T01:25:11Z' status: code: 200 message: OK @@ -2866,44 +963,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:30:38 GMT + - Fri, 12 Sep 2025 01:25:41 GMT elapsed-time: - - '66' + - '103' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 15483679D9F5464DB16254E1E0B7EEDA Ref B: TYO201151005029 Ref C: 2025-05-16T11:30:37Z' + - 'Ref A: F1FBCD2299DF4EDEA8229E3BEFEC100E Ref B: CO6AA3150220009 Ref C: 2025-09-12T01:25:41Z' status: code: 200 message: OK @@ -2919,34 +1015,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:31:09 GMT + - Fri, 12 Sep 2025 01:26:12 GMT elapsed-time: - - '66' + - '93' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2954,9 +1049,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 40BE014EC41443DF9A2BD825DC9F2828 Ref B: TYO201151005029 Ref C: 2025-05-16T11:31:08Z' + - 'Ref A: 33885C40A2484BF289D347AB9C5BEEAE Ref B: CO6AA3150217047 Ref C: 2025-09-12T01:26:12Z' status: code: 200 message: OK @@ -2972,34 +1067,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:31:40 GMT + - Fri, 12 Sep 2025 01:26:42 GMT elapsed-time: - - '121' + - '87' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3007,9 +1101,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DB4AFD0BC6F945EA8F025DC07FE7402A Ref B: TYO201151005029 Ref C: 2025-05-16T11:31:39Z' + - 'Ref A: BEB0AC57471B4E81B10319CDC9801152 Ref B: CO6AA3150218031 Ref C: 2025-09-12T01:26:42Z' status: code: 200 message: OK @@ -3025,34 +1119,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:32:11 GMT + - Fri, 12 Sep 2025 01:27:12 GMT elapsed-time: - - '65' + - '71' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3060,9 +1153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E7AC26730D4F4667B1DA6F93EB7D7A90 Ref B: TYO201151005029 Ref C: 2025-05-16T11:32:11Z' + - 'Ref A: 60FAA6F5FAB74310B32A81926EF56B93 Ref B: CO6AA3150220025 Ref C: 2025-09-12T01:27:12Z' status: code: 200 message: OK @@ -3078,34 +1171,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '953' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:32:42 GMT + - Fri, 12 Sep 2025 01:39:50 GMT elapsed-time: - - '69' + - '90' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 2c28f1b0-8f77-11f0-a711-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3113,9 +1205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B6B725E57A2D49CBA1172F850BB33017 Ref B: TYO201151005029 Ref C: 2025-05-16T11:32:42Z' + - 'Ref A: 24144F3693B946FAACCE9422571B7557 Ref B: CO6AA3150217053 Ref C: 2025-09-12T01:39:50Z' status: code: 200 message: OK @@ -3123,7 +1215,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3131,34 +1223,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","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"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '953' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:33:13 GMT + - Fri, 12 Sep 2025 01:39:52 GMT elapsed-time: - - '69' + - '97' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A24%3A10.3969501Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 5fced239-8f79-11f0-b3ab-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3166,62 +1257,74 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1C7C048F84374CAAB44C7784819D4D0D Ref B: TYO201151005029 Ref C: 2025-05-16T11:33:13Z' + - 'Ref A: 5922E99EC0044478A4B866DA6BAF4482 Ref B: MWH011020806036 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "West US", "properties": {"authOptions": {"apiKeyOnly": {}}, + "dataExfiltrationProtections": [], "disableLocalAuth": false, "encryptionWithCmk": + {"enforcement": "Unspecified"}, "hostingMode": "default", "networkRuleSet": + {"ipRules": []}, "partitionCount": 1, "publicNetworkAccess": "disabled", "replicaCount": + 1, "semanticSearch": "free", "upgradeAvailable": "notAvailable"}, "sku": {"name": + "basic"}, "tags": {}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - search service update Connection: - keep-alive + Content-Length: + - '425' + Content-Type: + - application/json ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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=2022-09-01 + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:33:45 GMT + - Fri, 12 Sep 2025 01:39:56 GMT elapsed-time: - - '70' + - '2945' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.5833528Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 5fced239-8f79-11f0-b3ab-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/03f5c121-1719-4706-a68d-4dfaf0b145ca + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 74418B082B1C47F9BA25459D68BC3A08 Ref B: TYO201151005029 Ref C: 2025-05-16T11:33:44Z' + - 'Ref A: 219405183744468EAE4EFAE1F08CBA4C Ref B: CO6AA3150217017 Ref C: 2025-09-12T01:39:52Z' status: code: 200 message: OK @@ -3237,44 +1340,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:34:16 GMT + - Fri, 12 Sep 2025 01:39:56 GMT elapsed-time: - - '69' + - '78' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.5833528Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 5fced239-8f79-11f0-b3ab-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 68150DB580594CC7AFA97F4CA8367750 Ref B: TYO201151005029 Ref C: 2025-05-16T11:34:15Z' + - 'Ref A: 264C2EB6B21D484FB4457CD335A9E554 Ref B: MWH011020806029 Ref C: 2025-09-12T01:39:56Z' status: code: 200 message: OK @@ -3290,34 +1392,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '724' + - '962' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:34:47 GMT + - Fri, 12 Sep 2025 01:40:27 GMT elapsed-time: - - '74' + - '121' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.5833528Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 5fced239-8f79-11f0-b3ab-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3325,9 +1426,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 127D534C436A4EA7B05F398833404117 Ref B: TYO201151005029 Ref C: 2025-05-16T11:34:47Z' + - 'Ref A: 9C0282AA0CDD4BE798C7B5442E80D976 Ref B: CO6AA3150218023 Ref C: 2025-09-12T01:40:27Z' status: code: 200 message: OK @@ -3343,34 +1444,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --public-access + - -n -g --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002?api-version=2025-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/test000002","name":"test000002","type":"Microsoft.Search/searchServices","location":"East - US 2 EUAP","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}}},"sku":{"name":"basic"}}' + string: '{"location":"West US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://test000002.search.windows.net","status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:19:01.508Z"},"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":"basic"}}' headers: cache-control: - no-cache content-length: - - '716' + - '954' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:35:19 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '75' + - '67' etag: - - W/"datetime'2025-05-16T11%3A28%3A00.5879564Z'" + - W/"datetime'2025-09-12T01%3A39%3A56.5833528Z'" expires: - '-1' pragma: - no-cache request-id: - - cf2ae752-3248-11f0-a052-644ed7a2823f + - 5fced239-8f79-11f0-b3ab-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3378,9 +1478,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ECB5B55E57844A46A9ECE5504BF76C47 Ref B: TYO201151005029 Ref C: 2025-05-16T11:35:18Z' + - 'Ref A: E5987AC4F0B641AC9D62DCAA0F123FD9 Ref B: MWH011020807040 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml index bf6e264059d..0e0a3481f39 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/recordings/test_shared_private_link_resource_crud.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_shared_private_link_resource_crud","date":"2025-05-16T11:35:24Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001","name":"azure_search_cli_test000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_shared_private_link_resource_crud","date":"2025-09-12T01:39:56Z","module":"search"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:35:59 GMT + - Fri, 12 Sep 2025 01:40:21 GMT expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6DE3B25310C04D80A3182A50912372D3 Ref B: TYO201151005031 Ref C: 2025-05-16T11:35:59Z' + - 'Ref A: BBC214345F3344B6A01FCBAD1DFFA9D2 Ref B: CO6AA3150218037 Ref C: 2025-09-12T01:40:21Z' status: code: 200 message: OK @@ -65,31 +65,31 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2025-05-01 response: body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' + string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://azstest000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:29.927Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '755' + - '979' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:36:11 GMT + - Fri, 12 Sep 2025 01:40:29 GMT elapsed-time: - - '8016' + - '7586' etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" + - W/"datetime'2025-09-12T01%3A40%3A29.9294839Z'" expires: - '-1' pragma: - no-cache request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f + - 71c2adef-8f79-11f0-99f6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -97,2304 +97,16 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/59ce6fad-aee4-44b7-b173-7f00e50130e7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/e045ac46-3c8a-443c-9795-bbcac899406e x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: EA86C4C29FF144D59B36B7402CD75CB3 Ref B: TYO201100115037 Ref C: 2025-05-16T11:36:01Z' - 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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:36:12 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 56C997052DB24EA4A9DBD22F15DC610D Ref B: TYO201100115037 Ref C: 2025-05-16T11:36: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:36:43 GMT - elapsed-time: - - '61' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CCC5715EC9CB4D5D9F923CF3F63C3164 Ref B: TYO201100115037 Ref C: 2025-05-16T11:36: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:37:14 GMT - elapsed-time: - - '68' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 38AC08E15B1840D198FABD61669252C1 Ref B: TYO201100115037 Ref C: 2025-05-16T11:37: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:37:45 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B049D142820D48AEA5D933FEC035BC84 Ref B: TYO201100115037 Ref C: 2025-05-16T11:37: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:38:16 GMT - elapsed-time: - - '109' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 30D125B716C0458B88964202A82FC559 Ref B: TYO201100115037 Ref C: 2025-05-16T11:38: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:38:47 GMT - elapsed-time: - - '97' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 807CFC04EC3144239B1AB0A26331A066 Ref B: TYO201100115037 Ref C: 2025-05-16T11:38: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:39:18 GMT - elapsed-time: - - '62' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E2DB5414E67D470EB61DFC9001116D19 Ref B: TYO201100115037 Ref C: 2025-05-16T11:39:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:39:48 GMT - elapsed-time: - - '59' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A9B539082FE240D68E96D1E885C6811F Ref B: TYO201100115037 Ref C: 2025-05-16T11:39:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:40:19 GMT - elapsed-time: - - '111' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6EEDB660E08047E7BE5224EF51FC47B3 Ref B: TYO201100115037 Ref C: 2025-05-16T11:40:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:40:50 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 951C0526A4914EBE8AB79C43D753EDB7 Ref B: TYO201100115037 Ref C: 2025-05-16T11:40:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:41:21 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 00BF1B152D3E4DDDAE39B797B9B574F0 Ref B: TYO201100115037 Ref C: 2025-05-16T11:41:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:41:52 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0E00CD135B50420194177F2D00F1137D Ref B: TYO201100115037 Ref C: 2025-05-16T11:41:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:42:23 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 18CB1D91486F446FA5BA8E3C4D62ACB3 Ref B: TYO201100115037 Ref C: 2025-05-16T11:42:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:42:54 GMT - elapsed-time: - - '78' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8E12ADCDED774D5D9AEA8F254503405F Ref B: TYO201100115037 Ref C: 2025-05-16T11:42:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:43:25 GMT - elapsed-time: - - '103' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 177E66656E184D058099D48DDE5218CA Ref B: TYO201100115037 Ref C: 2025-05-16T11:43:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:43:56 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2B6DD6C558A54E5BB48DD5649F6E7880 Ref B: TYO201100115037 Ref C: 2025-05-16T11:43:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:44:28 GMT - elapsed-time: - - '103' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1D9E806613CB4C048C20E4B72A6FC121 Ref B: TYO201100115037 Ref C: 2025-05-16T11:44:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:44:59 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 233377B51F5947B2AEB80785186C336B Ref B: TYO201100115037 Ref C: 2025-05-16T11:44:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:45:30 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E4215A910682438C9857950555DD1470 Ref B: TYO201100115037 Ref C: 2025-05-16T11:45: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:46:01 GMT - elapsed-time: - - '130' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 95042EF9096F404992947048362C2F11 Ref B: TYO201100115037 Ref C: 2025-05-16T11:46: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:46:32 GMT - elapsed-time: - - '91' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B6C72EE4A6CE40E89570CA24599AD5ED Ref B: TYO201100115037 Ref C: 2025-05-16T11:46: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:47:03 GMT - elapsed-time: - - '111' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F32E49ACF2A94474AC1741433CBF41FC Ref B: TYO201100115037 Ref C: 2025-05-16T11:47: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:47:34 GMT - elapsed-time: - - '69' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7417C359C633416882E06B8F1D3366ED Ref B: TYO201100115037 Ref C: 2025-05-16T11:47: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:48:05 GMT - elapsed-time: - - '75' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EA83D4893EEC4FDDA50EF0FB4A537760 Ref B: TYO201100115037 Ref C: 2025-05-16T11:48: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:48:36 GMT - elapsed-time: - - '126' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D08E1303AA0D4A88BCB8EE860F00C63E Ref B: TYO201100115037 Ref C: 2025-05-16T11:48: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:49:07 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3E849D2683C342EF8C0B48345A427B95 Ref B: TYO201100115037 Ref C: 2025-05-16T11:49:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:49:38 GMT - elapsed-time: - - '64' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BEDDCEFC02244EA2A3F0CEF17E3F7159 Ref B: TYO201100115037 Ref C: 2025-05-16T11:49: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:50:09 GMT - elapsed-time: - - '77' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 64E97548CA454163AC928594FE8C2581 Ref B: TYO201100115037 Ref C: 2025-05-16T11:50: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:50:41 GMT - elapsed-time: - - '89' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C7D59E1DCEA64CB68F21A2E65093D9A5 Ref B: TYO201100115037 Ref C: 2025-05-16T11:50: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:51:12 GMT - elapsed-time: - - '108' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 94F264D4992545CBB780E96340017199 Ref B: TYO201100115037 Ref C: 2025-05-16T11:51: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:51:42 GMT - elapsed-time: - - '66' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ED380D7A12D348189A2B3B69883A7C77 Ref B: TYO201100115037 Ref C: 2025-05-16T11:51: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:52:13 GMT - elapsed-time: - - '82' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8753E18817A14D8F92B35918CBBFA049 Ref B: TYO201100115037 Ref C: 2025-05-16T11: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:52:44 GMT - elapsed-time: - - '98' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F230C0CD4D124DB9ABE212B9091B3080 Ref B: TYO201100115037 Ref C: 2025-05-16T11: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:53:15 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 27256F0BD0CD423EA45191C39CC1F0F5 Ref B: TYO201100115037 Ref C: 2025-05-16T11:53: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:53:46 GMT - elapsed-time: - - '123' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B8DFAA78B1DC4828977C1D98B63C891C Ref B: TYO201100115037 Ref C: 2025-05-16T11:53: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 --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:54:17 GMT - elapsed-time: - - '72' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BC13ECB5AA924390B8A36E99584383D2 Ref B: TYO201100115037 Ref C: 2025-05-16T11:54:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:54:48 GMT - elapsed-time: - - '65' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5013DE6A7AC640E08F0D0D17100E1D90 Ref B: TYO201100115037 Ref C: 2025-05-16T11:54:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:55:19 GMT - elapsed-time: - - '63' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 038CA99ABB504764B71FC2D3C3F21537 Ref B: TYO201100115037 Ref C: 2025-05-16T11:55:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:55:50 GMT - elapsed-time: - - '141' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3FE6160975BB49A18205591BC383C54A Ref B: TYO201100115037 Ref C: 2025-05-16T11:55:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:56:21 GMT - elapsed-time: - - '70' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D338DABF1E3A4B57B7AF33AEC9D89722 Ref B: TYO201100115037 Ref C: 2025-05-16T11:56:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:56:52 GMT - elapsed-time: - - '71' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FB061F81BF2E451292DB0545E2276CB0 Ref B: TYO201100115037 Ref C: 2025-05-16T11:56:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:57:23 GMT - elapsed-time: - - '80' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DD6C6A23B48248FBA2C215FB11C5C86F Ref B: TYO201100115037 Ref C: 2025-05-16T11:57:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:57:54 GMT - elapsed-time: - - '79' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9260FEB1403F49C7AF967CA5E2B04CF5 Ref B: TYO201100115037 Ref C: 2025-05-16T11:57:54Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - search service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-network-access - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.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/azstest000003?api-version=2023-11-01 - response: - body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 11:58:25 GMT - elapsed-time: - - '108' - etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" - expires: - - '-1' - pragma: - - no-cache - request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '799' x-msedge-ref: - - 'Ref A: C7DA8A7F9E55497595AC284224415A6D Ref B: TYO201100115037 Ref C: 2025-05-16T11:58:25Z' + - 'Ref A: A8F057E113934560B2D150BFFB3300A8 Ref B: CO6AA3150220017 Ref C: 2025-09-12T01:40:22Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2409,31 +121,31 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2025-05-01 response: body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' + string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://azstest000003.search.windows.net","status":"provisioning","statusDetails":"","provisioningState":"provisioning","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:29.927Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '755' + - '979' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:58:56 GMT + - Fri, 12 Sep 2025 01:40:30 GMT elapsed-time: - - '67' + - '65' etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" + - W/"datetime'2025-09-12T01%3A40%3A29.9294839Z'" expires: - '-1' pragma: - no-cache request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f + - 71c2adef-8f79-11f0-99f6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2441,9 +153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E48154EC3B3F472B950590F04740A4E4 Ref B: TYO201100115037 Ref C: 2025-05-16T11:58:56Z' + - 'Ref A: 414A08CA6633482487F0F6061EBFB25B Ref B: MWH011020806060 Ref C: 2025-09-12T01:40:30Z' status: code: 200 message: OK @@ -2461,31 +173,31 @@ interactions: ParameterSetName: - -n -g --sku --public-network-access User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003?api-version=2025-05-01 response: body: - string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"semanticSearch":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' + string: '{"location":"West Central US","tags":{},"properties":{"replicaCount":1,"partitionCount":1,"endpoint":"https://azstest000003.search.windows.net","status":"running","statusDetails":"","provisioningState":"succeeded","hostingMode":"default","computeType":"Default","publicNetworkAccess":"Disabled","networkRuleSet":{"ipRules":[],"bypass":"None"},"privateEndpointConnections":[],"sharedPrivateLinkResources":[],"encryptionWithCmk":{"enforcement":"Unspecified","encryptionComplianceStatus":"Compliant"},"disableLocalAuth":false,"authOptions":{"apiKeyOnly":{}},"dataExfiltrationProtections":[],"semanticSearch":"free","upgradeAvailable":"notAvailable","serviceUpgradedAt":null},"systemData":{"createdAt":"2025-09-12T01:40:29.927Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003","name":"azstest000003","type":"Microsoft.Search/searchServices","sku":{"name":"basic"}}' headers: cache-control: - no-cache content-length: - - '747' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:59:27 GMT + - Fri, 12 Sep 2025 06:28:34 GMT elapsed-time: - - '141' + - '74' etag: - - W/"datetime'2025-05-16T11%3A36%3A11.5915775Z'" + - W/"datetime'2025-09-12T01%3A40%3A29.9294839Z'" expires: - '-1' pragma: - no-cache request-id: - - efcfdbb6-3249-11f0-89b8-644ed7a2823f + - 71c2adef-8f79-11f0-99f6-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2493,9 +205,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1A6C68D42717472E92EF921BB204EB22 Ref B: TYO201100115037 Ref C: 2025-05-16T11:59:27Z' + - 'Ref A: AA320FA7912248A09AE747A0A17F8D3F Ref B: MWH011020809054 Ref C: 2025-09-12T06:28:34Z' status: code: 200 message: OK @@ -2518,7 +230,7 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -2526,21 +238,21 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542101133264375?api-version=2024-11-01&t=638829935730284160&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=W3YBtir24qIi9VpgJWV_NCeHwIJC1w8vMpveC7UpZP02KTOqGh6ci4cs2Csnwr6SIuSXxFtmyvLzWx4WS6Jk5KJGIs6tnXJkqPvFsaGQgckUn9P0pwuQ0jw06s5NM9pH0mxE7Td5vqPkrF7foeQlk0oURlPlGVUZNY16YAFBFQd7vPfTjWTixup2XynaqQMmJ0kqQtHgM6f2zc-FbPLrnk2H7t5vr-E_uUa7SD9Czb0GswWnSGhUDwW0qk8WIxWeBBfi0304OMfkHi_czIoZkrvnBCRhchOCwG_bPiSjSQ7ciqIj86EJNbfvMhxNHRQBN3Ro0HqqfC2ioxalSP-eMQ&h=crBqIl5O0tqZqkBu2Z-7ydkiU3t9NvxadbuQRklUT5I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439483670928593?api-version=2022-09-01&t=638932553191537259&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=Lx1pfAVxTXPJirBvDyimIbPzgSLbnGVrxny5aJyHjCxOF_ZpPcQXX3glD-fu1Otk9ZvtvlDFySocDcewOgSYz5sDd8Lo3FaQfF6mptLpwMP8sUebUZ07Va4wWR9fdUnJ8e6AeZtADdBUsg95oJ1w78lLJS7ToefuyokbZm3UfGxA4UMCxMDnYrU4NmHM6ka-Uxz6N58yrp1SX-Oy5gljyeYQRvNYhfMgthlUVZbMtpTz3TnDEevXg-m--MC2zmIF_L33Ufa3IpCSdNC_mjkXjl94CyQQcelQrAFFefc6p7ZOTJEPVQgA5qS5aICDBWrrPBR_VQ3laX7okgMp-5EtCQ&h=LrdHQrQdwILteB-dz6oq2i0N5-LknJxM62bwLFZ7QsQ cache-control: - no-cache content-length: - '0' date: - - Fri, 16 May 2025 11:59:32 GMT + - Fri, 12 Sep 2025 06:28:38 GMT elapsed-time: - - '1855' + - '1679' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2550,13 +262,13 @@ interactions: x-ms-async-operation-timeout: - P1DT23H59M x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/602c7bbe-6d2e-44b3-9be9-b657c8a5ba39 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/a47d36f2-1e1c-49ca-a319-e08d8c45796f x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 0E7AC7A7F901404CAECB2A4B30F584F6 Ref B: TYO201151003031 Ref C: 2025-05-16T11:59:30Z' + - 'Ref A: 085C79DD3C974415995D54705EAC7C1C Ref B: CO6AA3150218021 Ref C: 2025-09-12T06:28:36Z' status: code: 202 message: Accepted @@ -2574,29 +286,29 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542101133264375?api-version=2024-11-01&t=638829935730284160&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=W3YBtir24qIi9VpgJWV_NCeHwIJC1w8vMpveC7UpZP02KTOqGh6ci4cs2Csnwr6SIuSXxFtmyvLzWx4WS6Jk5KJGIs6tnXJkqPvFsaGQgckUn9P0pwuQ0jw06s5NM9pH0mxE7Td5vqPkrF7foeQlk0oURlPlGVUZNY16YAFBFQd7vPfTjWTixup2XynaqQMmJ0kqQtHgM6f2zc-FbPLrnk2H7t5vr-E_uUa7SD9Czb0GswWnSGhUDwW0qk8WIxWeBBfi0304OMfkHi_czIoZkrvnBCRhchOCwG_bPiSjSQ7ciqIj86EJNbfvMhxNHRQBN3Ro0HqqfC2ioxalSP-eMQ&h=crBqIl5O0tqZqkBu2Z-7ydkiU3t9NvxadbuQRklUT5I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439483670928593?api-version=2022-09-01&t=638932553191537259&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=Lx1pfAVxTXPJirBvDyimIbPzgSLbnGVrxny5aJyHjCxOF_ZpPcQXX3glD-fu1Otk9ZvtvlDFySocDcewOgSYz5sDd8Lo3FaQfF6mptLpwMP8sUebUZ07Va4wWR9fdUnJ8e6AeZtADdBUsg95oJ1w78lLJS7ToefuyokbZm3UfGxA4UMCxMDnYrU4NmHM6ka-Uxz6N58yrp1SX-Oy5gljyeYQRvNYhfMgthlUVZbMtpTz3TnDEevXg-m--MC2zmIF_L33Ufa3IpCSdNC_mjkXjl94CyQQcelQrAFFefc6p7ZOTJEPVQgA5qS5aICDBWrrPBR_VQ3laX7okgMp-5EtCQ&h=LrdHQrQdwILteB-dz6oq2i0N5-LknJxM62bwLFZ7QsQ response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 11:59:34 GMT + - Fri, 12 Sep 2025 06:28:39 GMT elapsed-time: - - '343' + - '156' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2604,11 +316,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/1a41abeb-bb87-417d-a443-cd6b01e1c4b3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/4db4c45c-b6b0-4812-9252-9e37e989220b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 68BF4FFF90FF47ABA260A8F18D83DB6F Ref B: TYO201151003031 Ref C: 2025-05-16T11:59:33Z' + - 'Ref A: 78230C73ED1E4B0885B9916C7190FF1D Ref B: CO6AA3150217039 Ref C: 2025-09-12T06:28:39Z' status: code: 200 message: OK @@ -2626,9 +338,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542101133264375?api-version=2024-11-01&t=638829935730284160&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=W3YBtir24qIi9VpgJWV_NCeHwIJC1w8vMpveC7UpZP02KTOqGh6ci4cs2Csnwr6SIuSXxFtmyvLzWx4WS6Jk5KJGIs6tnXJkqPvFsaGQgckUn9P0pwuQ0jw06s5NM9pH0mxE7Td5vqPkrF7foeQlk0oURlPlGVUZNY16YAFBFQd7vPfTjWTixup2XynaqQMmJ0kqQtHgM6f2zc-FbPLrnk2H7t5vr-E_uUa7SD9Czb0GswWnSGhUDwW0qk8WIxWeBBfi0304OMfkHi_czIoZkrvnBCRhchOCwG_bPiSjSQ7ciqIj86EJNbfvMhxNHRQBN3Ro0HqqfC2ioxalSP-eMQ&h=crBqIl5O0tqZqkBu2Z-7ydkiU3t9NvxadbuQRklUT5I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439483670928593?api-version=2022-09-01&t=638932553191537259&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=Lx1pfAVxTXPJirBvDyimIbPzgSLbnGVrxny5aJyHjCxOF_ZpPcQXX3glD-fu1Otk9ZvtvlDFySocDcewOgSYz5sDd8Lo3FaQfF6mptLpwMP8sUebUZ07Va4wWR9fdUnJ8e6AeZtADdBUsg95oJ1w78lLJS7ToefuyokbZm3UfGxA4UMCxMDnYrU4NmHM6ka-Uxz6N58yrp1SX-Oy5gljyeYQRvNYhfMgthlUVZbMtpTz3TnDEevXg-m--MC2zmIF_L33Ufa3IpCSdNC_mjkXjl94CyQQcelQrAFFefc6p7ZOTJEPVQgA5qS5aICDBWrrPBR_VQ3laX7okgMp-5EtCQ&h=LrdHQrQdwILteB-dz6oq2i0N5-LknJxM62bwLFZ7QsQ response: body: string: '{"status":"Running"}' @@ -2640,15 +352,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:00:06 GMT + - Fri, 12 Sep 2025 06:29:10 GMT elapsed-time: - - '223' + - '186' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2656,11 +368,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/2f985050-c694-4a51-b5c3-f1596c3bf0b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westus2/795d9ab5-a23f-4d4d-a191-f56eafcf4f64 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7EC05EB74B0C4DFCB90F9990F2527809 Ref B: TYO201151003031 Ref C: 2025-05-16T12:00:05Z' + - 'Ref A: A27C9B8CB3DF4BB09BA45446DF08B49B Ref B: MWH011020806042 Ref C: 2025-09-12T06:29:10Z' status: code: 200 message: OK @@ -2678,9 +390,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542101133264375?api-version=2024-11-01&t=638829935730284160&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=W3YBtir24qIi9VpgJWV_NCeHwIJC1w8vMpveC7UpZP02KTOqGh6ci4cs2Csnwr6SIuSXxFtmyvLzWx4WS6Jk5KJGIs6tnXJkqPvFsaGQgckUn9P0pwuQ0jw06s5NM9pH0mxE7Td5vqPkrF7foeQlk0oURlPlGVUZNY16YAFBFQd7vPfTjWTixup2XynaqQMmJ0kqQtHgM6f2zc-FbPLrnk2H7t5vr-E_uUa7SD9Czb0GswWnSGhUDwW0qk8WIxWeBBfi0304OMfkHi_czIoZkrvnBCRhchOCwG_bPiSjSQ7ciqIj86EJNbfvMhxNHRQBN3Ro0HqqfC2ioxalSP-eMQ&h=crBqIl5O0tqZqkBu2Z-7ydkiU3t9NvxadbuQRklUT5I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439483670928593?api-version=2022-09-01&t=638932553191537259&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=Lx1pfAVxTXPJirBvDyimIbPzgSLbnGVrxny5aJyHjCxOF_ZpPcQXX3glD-fu1Otk9ZvtvlDFySocDcewOgSYz5sDd8Lo3FaQfF6mptLpwMP8sUebUZ07Va4wWR9fdUnJ8e6AeZtADdBUsg95oJ1w78lLJS7ToefuyokbZm3UfGxA4UMCxMDnYrU4NmHM6ka-Uxz6N58yrp1SX-Oy5gljyeYQRvNYhfMgthlUVZbMtpTz3TnDEevXg-m--MC2zmIF_L33Ufa3IpCSdNC_mjkXjl94CyQQcelQrAFFefc6p7ZOTJEPVQgA5qS5aICDBWrrPBR_VQ3laX7okgMp-5EtCQ&h=LrdHQrQdwILteB-dz6oq2i0N5-LknJxM62bwLFZ7QsQ response: body: string: '{"status":"Running"}' @@ -2692,15 +404,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:00:37 GMT + - Fri, 12 Sep 2025 06:29:41 GMT elapsed-time: - - '217' + - '161' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2708,11 +420,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/f59cb7ad-7cc6-40ae-924c-c0279492c4bc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/16cdcfcd-3969-4da8-aaf7-6cb2a27282cf + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 530FE5D5855A46CE85B4751687DA0820 Ref B: TYO201151003031 Ref C: 2025-05-16T12:00:37Z' + - 'Ref A: 1F4022F192F943168D2D66F3AC8799B3 Ref B: MWH011020809062 Ref C: 2025-09-12T06:29:40Z' status: code: 200 message: OK @@ -2730,9 +442,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542101133264375?api-version=2024-11-01&t=638829935730284160&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=W3YBtir24qIi9VpgJWV_NCeHwIJC1w8vMpveC7UpZP02KTOqGh6ci4cs2Csnwr6SIuSXxFtmyvLzWx4WS6Jk5KJGIs6tnXJkqPvFsaGQgckUn9P0pwuQ0jw06s5NM9pH0mxE7Td5vqPkrF7foeQlk0oURlPlGVUZNY16YAFBFQd7vPfTjWTixup2XynaqQMmJ0kqQtHgM6f2zc-FbPLrnk2H7t5vr-E_uUa7SD9Czb0GswWnSGhUDwW0qk8WIxWeBBfi0304OMfkHi_czIoZkrvnBCRhchOCwG_bPiSjSQ7ciqIj86EJNbfvMhxNHRQBN3Ro0HqqfC2ioxalSP-eMQ&h=crBqIl5O0tqZqkBu2Z-7ydkiU3t9NvxadbuQRklUT5I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439483670928593?api-version=2022-09-01&t=638932553191537259&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=Lx1pfAVxTXPJirBvDyimIbPzgSLbnGVrxny5aJyHjCxOF_ZpPcQXX3glD-fu1Otk9ZvtvlDFySocDcewOgSYz5sDd8Lo3FaQfF6mptLpwMP8sUebUZ07Va4wWR9fdUnJ8e6AeZtADdBUsg95oJ1w78lLJS7ToefuyokbZm3UfGxA4UMCxMDnYrU4NmHM6ka-Uxz6N58yrp1SX-Oy5gljyeYQRvNYhfMgthlUVZbMtpTz3TnDEevXg-m--MC2zmIF_L33Ufa3IpCSdNC_mjkXjl94CyQQcelQrAFFefc6p7ZOTJEPVQgA5qS5aICDBWrrPBR_VQ3laX7okgMp-5EtCQ&h=LrdHQrQdwILteB-dz6oq2i0N5-LknJxM62bwLFZ7QsQ response: body: string: '{"status":"Succeeded"}' @@ -2744,15 +456,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:01:09 GMT + - Fri, 12 Sep 2025 06:30:11 GMT elapsed-time: - - '184' + - '164' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2760,11 +472,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/1b024706-66c8-404d-8d6d-848a57b33897 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/9ee8b9aa-aef0-43b8-b94f-12d3eee7af27 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 63573034A4404A9994DBAFA17ABF2FA4 Ref B: TYO201151003031 Ref C: 2025-05-16T12:01:09Z' + - 'Ref A: 0F727183DDC0467C883221A0E08EF3C4 Ref B: MWH011020807029 Ref C: 2025-09-12T06:30:11Z' status: code: 200 message: OK @@ -2782,7 +494,7 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -2797,15 +509,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:01:10 GMT + - Fri, 12 Sep 2025 06:30:12 GMT elapsed-time: - - '716' + - '653' expires: - '-1' pragma: - no-cache request-id: - - 38301d64-324d-11f0-aba2-644ed7a2823f + - b5e83cf8-8fa1-11f0-91c5-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2813,11 +525,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/1f3b2484-5c6e-41c0-9245-797861acb392 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/dcc26385-61f7-4c67-a824-f562ac6a5e33 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DB890E314989456E8C79998AF93D68B5 Ref B: TYO201151003031 Ref C: 2025-05-16T12:01:10Z' + - 'Ref A: 6B3399B8B99F477A8CF580D46C8FA8A0 Ref B: MWH011020807036 Ref C: 2025-09-12T06:30:12Z' status: code: 200 message: OK @@ -2840,7 +552,7 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -2848,21 +560,21 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542100108086609?api-version=2024-11-01&t=638829936758551894&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=FG3dReO3hkIoPI5gspOwrR3RvDTeZZQXedhh8Zug0CDmHbWK2fj5mJBjnoIhfdbP9kvpVjzWC1lW7s4f9doWky7YeO3WqxTQ5umpBx9XvA7PR-taW0M2XUFd6qdio7PZqI_6cjngT7Nns6BrGvujmiXJjNqIHW00Bis9rJLkKltZcfzdioEkBR2cL304jWXT02B-h7ItgxXp3O3224w1K63cji3OoSpgcftAx4G8W2FSO9UHXSfGZrFSQekJAAU18KaBRJpvqizKCL7XUE7ASbmIJPjehDzgbbnucOZ2CCRBGRpEKF8EKFvX48QNRqMagQZSuAjUgySjayErUa-K-Q&h=Pb1C7EbAAc_5fcq831o2aD42xyICzW0vnWffzbfM1Ks + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439482700821674?api-version=2022-09-01&t=638932554166228168&c=MIIIrjCCBpagAwIBAgITUQCIDuL65RxxVOrePgABAIgO4jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzIyMTM0NjMzWhcNMjUxMDIwMTM0NjMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMNRO4oET35jXyqbX5Xyjt5TGWo5oWsXNpp81sh4Df9TuoLUY_lyOj7rDIAQaYSarIfI6GRc4SkyhPSfX5CraChAaYzR22bv2Je7XWEZL7cI972yd43dERpLXyc1m0rEMmwj7G48qohYfWajOa9kaftilm4TCovGrhlNah8VznG_SxmcFhQ_2HaOqR3SXib8Kn5Awsd_NRwwy-JUQ5EmDJwNQAktGhBwDApO70eVOG2H2oEHyULFxG0mXOHyFZhc3D1cWBYwMlEQnAyCUueGA7qgoHoKK5uyq9TNy4lvvbYZ2tkJkYrEYDoWyQH4EYvfScIPpHlNOheuNqYG2eWvL6kCAwEAAaOCBJswggSXMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAeQGCCsGAQUFBwEBBIIB1jCCAdIwaAYIKwYBBQUHMAKGXGh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsNC5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MB0GA1UdDgQWBBRaKzawH4T_fJFtaCQrRz9iCtKIhzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBQ5cV2pFRAtxN9-L1luQE3A3-82mjAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBADkeDawsEdLgjTD85rftlNN6uN2QD0qLK1hKpk363n3BD1yl5Oe76ayKduI256cE7AkNsx5dThNm2huvdQ_vlnLMjemTV4FxXuawpxWAUkHQqP1lh3U2_GxEHVNxsyhoun-svFl3lc8-1p-izJftu1UYhwdbSrjH01DufHPqHcDRwZ12y6LWuDOo99-leXqMYByB-01hZyg-jyqu3ZXtJ69TMLNnNDBC8JuJlD5CMuf43V20BOhgYSrdOlVf2XVPxrjms43JuF8Nq3O5ApoenkBrtqwXn4d745MbwYAOMVd6TUOpbHx89S5YnI6sK6q8Rooquge2h8DfMpP2FTMDHq-MZPF1qUWFDwwFidlLEY5VMaYaHEPmdoktOIHWCZbabO4qOYQ7yhO7NA6lDV39ij7dFkWgGZh6QcjglavuBulmPiomoNXDStQ4jPvDju-0XMW0yjp0_OTMjJbbxmq75buEkCGuazh-1L9G1gjzHv8oqoMZSCJafxa-kwA_Ja_sZj2m8YQB0ffKelKoSO5PB1_EmMgKq5-4gxBvfhCvo_0uKj5YEhCreU4RXSHgpLv8OfgS3aoFWJw5EHg85HMLsGDnsA8FCJnYqNTRK6ec6k0Sn0PXR5LbA6JNVgzY859rdbxkv6XKeaqBbmG95_3jZmFjF1PsEtOljli0pAG0baHu&s=bAfMn9QSasTiWOuSn_-Dze0-4wp24q8oq4eD-KeNaBl7-YYh-kzZCaxL6rBooc1ixX-T-LVyfUKzeyuXoOG98cwcH0yTa9J94kuHQSLI59EdunDkE_3BMvJ2zNE0oPWYsf12qDwHK7nAULKDFdUvJop6vjnAObmvyitz8s73mBGVMvQNELDjk_wN_8gmmv8ujM_dc9-JoIdPulOh6bm3yWLn_OtJYvJNygSqF3aTMH-001dQMOSu4M5K1Rfwo6MNWjg_jQfXmGhbt1ffh-OFvsRmsuZ2PZvojK2vgYcE36eEPHsc6zuzXRks30TqnNR3TFHWKNJ7csJfF-7AFunQBQ&h=73phCb16IXqFHcCJZ_zSJdZz-sdYk37-LshvqohMLwQ cache-control: - no-cache content-length: - '0' date: - - Fri, 16 May 2025 12:01:15 GMT + - Fri, 12 Sep 2025 06:30:16 GMT elapsed-time: - - '2530' + - '2638' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2872,13 +584,13 @@ interactions: x-ms-async-operation-timeout: - P1DT23H59M x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/579eb6cd-e3b8-4a57-9948-147cf8bf659a - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/d0490eb7-be09-462c-896f-48bb26daf3c4 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 9CABEAA8A2194C5DA8C23C4A35F6D407 Ref B: TYO201100116023 Ref C: 2025-05-16T12:01:12Z' + - 'Ref A: 639E72FF50CF4C47A6D53524303A9679 Ref B: MWH011020806054 Ref C: 2025-09-12T06:30:13Z' status: code: 202 message: Accepted @@ -2896,9 +608,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542100108086609?api-version=2024-11-01&t=638829936758551894&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=FG3dReO3hkIoPI5gspOwrR3RvDTeZZQXedhh8Zug0CDmHbWK2fj5mJBjnoIhfdbP9kvpVjzWC1lW7s4f9doWky7YeO3WqxTQ5umpBx9XvA7PR-taW0M2XUFd6qdio7PZqI_6cjngT7Nns6BrGvujmiXJjNqIHW00Bis9rJLkKltZcfzdioEkBR2cL304jWXT02B-h7ItgxXp3O3224w1K63cji3OoSpgcftAx4G8W2FSO9UHXSfGZrFSQekJAAU18KaBRJpvqizKCL7XUE7ASbmIJPjehDzgbbnucOZ2CCRBGRpEKF8EKFvX48QNRqMagQZSuAjUgySjayErUa-K-Q&h=Pb1C7EbAAc_5fcq831o2aD42xyICzW0vnWffzbfM1Ks + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439482700821674?api-version=2022-09-01&t=638932554166228168&c=MIIIrjCCBpagAwIBAgITUQCIDuL65RxxVOrePgABAIgO4jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzIyMTM0NjMzWhcNMjUxMDIwMTM0NjMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMNRO4oET35jXyqbX5Xyjt5TGWo5oWsXNpp81sh4Df9TuoLUY_lyOj7rDIAQaYSarIfI6GRc4SkyhPSfX5CraChAaYzR22bv2Je7XWEZL7cI972yd43dERpLXyc1m0rEMmwj7G48qohYfWajOa9kaftilm4TCovGrhlNah8VznG_SxmcFhQ_2HaOqR3SXib8Kn5Awsd_NRwwy-JUQ5EmDJwNQAktGhBwDApO70eVOG2H2oEHyULFxG0mXOHyFZhc3D1cWBYwMlEQnAyCUueGA7qgoHoKK5uyq9TNy4lvvbYZ2tkJkYrEYDoWyQH4EYvfScIPpHlNOheuNqYG2eWvL6kCAwEAAaOCBJswggSXMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAeQGCCsGAQUFBwEBBIIB1jCCAdIwaAYIKwYBBQUHMAKGXGh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsNC5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MB0GA1UdDgQWBBRaKzawH4T_fJFtaCQrRz9iCtKIhzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBQ5cV2pFRAtxN9-L1luQE3A3-82mjAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBADkeDawsEdLgjTD85rftlNN6uN2QD0qLK1hKpk363n3BD1yl5Oe76ayKduI256cE7AkNsx5dThNm2huvdQ_vlnLMjemTV4FxXuawpxWAUkHQqP1lh3U2_GxEHVNxsyhoun-svFl3lc8-1p-izJftu1UYhwdbSrjH01DufHPqHcDRwZ12y6LWuDOo99-leXqMYByB-01hZyg-jyqu3ZXtJ69TMLNnNDBC8JuJlD5CMuf43V20BOhgYSrdOlVf2XVPxrjms43JuF8Nq3O5ApoenkBrtqwXn4d745MbwYAOMVd6TUOpbHx89S5YnI6sK6q8Rooquge2h8DfMpP2FTMDHq-MZPF1qUWFDwwFidlLEY5VMaYaHEPmdoktOIHWCZbabO4qOYQ7yhO7NA6lDV39ij7dFkWgGZh6QcjglavuBulmPiomoNXDStQ4jPvDju-0XMW0yjp0_OTMjJbbxmq75buEkCGuazh-1L9G1gjzHv8oqoMZSCJafxa-kwA_Ja_sZj2m8YQB0ffKelKoSO5PB1_EmMgKq5-4gxBvfhCvo_0uKj5YEhCreU4RXSHgpLv8OfgS3aoFWJw5EHg85HMLsGDnsA8FCJnYqNTRK6ec6k0Sn0PXR5LbA6JNVgzY859rdbxkv6XKeaqBbmG95_3jZmFjF1PsEtOljli0pAG0baHu&s=bAfMn9QSasTiWOuSn_-Dze0-4wp24q8oq4eD-KeNaBl7-YYh-kzZCaxL6rBooc1ixX-T-LVyfUKzeyuXoOG98cwcH0yTa9J94kuHQSLI59EdunDkE_3BMvJ2zNE0oPWYsf12qDwHK7nAULKDFdUvJop6vjnAObmvyitz8s73mBGVMvQNELDjk_wN_8gmmv8ujM_dc9-JoIdPulOh6bm3yWLn_OtJYvJNygSqF3aTMH-001dQMOSu4M5K1Rfwo6MNWjg_jQfXmGhbt1ffh-OFvsRmsuZ2PZvojK2vgYcE36eEPHsc6zuzXRks30TqnNR3TFHWKNJ7csJfF-7AFunQBQ&h=73phCb16IXqFHcCJZ_zSJdZz-sdYk37-LshvqohMLwQ response: body: string: '{"status":"Running"}' @@ -2910,15 +622,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:01:17 GMT + - Fri, 12 Sep 2025 06:30:16 GMT elapsed-time: - - '196' + - '155' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2926,11 +638,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/5ee626d0-9841-4204-a210-c1a39e08d581 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/146248f6-f9fe-4d2b-803e-f0e584532f1e + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 2E73810504C74BFDACD178A54E1A0AFC Ref B: TYO201100116023 Ref C: 2025-05-16T12:01:16Z' + - 'Ref A: 0E389BB2F3C94D6EA46554F7A45F2AEF Ref B: CO6AA3150219053 Ref C: 2025-09-12T06:30:16Z' status: code: 200 message: OK @@ -2948,9 +660,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542100108086609?api-version=2024-11-01&t=638829936758551894&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=FG3dReO3hkIoPI5gspOwrR3RvDTeZZQXedhh8Zug0CDmHbWK2fj5mJBjnoIhfdbP9kvpVjzWC1lW7s4f9doWky7YeO3WqxTQ5umpBx9XvA7PR-taW0M2XUFd6qdio7PZqI_6cjngT7Nns6BrGvujmiXJjNqIHW00Bis9rJLkKltZcfzdioEkBR2cL304jWXT02B-h7ItgxXp3O3224w1K63cji3OoSpgcftAx4G8W2FSO9UHXSfGZrFSQekJAAU18KaBRJpvqizKCL7XUE7ASbmIJPjehDzgbbnucOZ2CCRBGRpEKF8EKFvX48QNRqMagQZSuAjUgySjayErUa-K-Q&h=Pb1C7EbAAc_5fcq831o2aD42xyICzW0vnWffzbfM1Ks + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439482700821674?api-version=2022-09-01&t=638932554166228168&c=MIIIrjCCBpagAwIBAgITUQCIDuL65RxxVOrePgABAIgO4jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzIyMTM0NjMzWhcNMjUxMDIwMTM0NjMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMNRO4oET35jXyqbX5Xyjt5TGWo5oWsXNpp81sh4Df9TuoLUY_lyOj7rDIAQaYSarIfI6GRc4SkyhPSfX5CraChAaYzR22bv2Je7XWEZL7cI972yd43dERpLXyc1m0rEMmwj7G48qohYfWajOa9kaftilm4TCovGrhlNah8VznG_SxmcFhQ_2HaOqR3SXib8Kn5Awsd_NRwwy-JUQ5EmDJwNQAktGhBwDApO70eVOG2H2oEHyULFxG0mXOHyFZhc3D1cWBYwMlEQnAyCUueGA7qgoHoKK5uyq9TNy4lvvbYZ2tkJkYrEYDoWyQH4EYvfScIPpHlNOheuNqYG2eWvL6kCAwEAAaOCBJswggSXMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAeQGCCsGAQUFBwEBBIIB1jCCAdIwaAYIKwYBBQUHMAKGXGh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsNC5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MB0GA1UdDgQWBBRaKzawH4T_fJFtaCQrRz9iCtKIhzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBQ5cV2pFRAtxN9-L1luQE3A3-82mjAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBADkeDawsEdLgjTD85rftlNN6uN2QD0qLK1hKpk363n3BD1yl5Oe76ayKduI256cE7AkNsx5dThNm2huvdQ_vlnLMjemTV4FxXuawpxWAUkHQqP1lh3U2_GxEHVNxsyhoun-svFl3lc8-1p-izJftu1UYhwdbSrjH01DufHPqHcDRwZ12y6LWuDOo99-leXqMYByB-01hZyg-jyqu3ZXtJ69TMLNnNDBC8JuJlD5CMuf43V20BOhgYSrdOlVf2XVPxrjms43JuF8Nq3O5ApoenkBrtqwXn4d745MbwYAOMVd6TUOpbHx89S5YnI6sK6q8Rooquge2h8DfMpP2FTMDHq-MZPF1qUWFDwwFidlLEY5VMaYaHEPmdoktOIHWCZbabO4qOYQ7yhO7NA6lDV39ij7dFkWgGZh6QcjglavuBulmPiomoNXDStQ4jPvDju-0XMW0yjp0_OTMjJbbxmq75buEkCGuazh-1L9G1gjzHv8oqoMZSCJafxa-kwA_Ja_sZj2m8YQB0ffKelKoSO5PB1_EmMgKq5-4gxBvfhCvo_0uKj5YEhCreU4RXSHgpLv8OfgS3aoFWJw5EHg85HMLsGDnsA8FCJnYqNTRK6ec6k0Sn0PXR5LbA6JNVgzY859rdbxkv6XKeaqBbmG95_3jZmFjF1PsEtOljli0pAG0baHu&s=bAfMn9QSasTiWOuSn_-Dze0-4wp24q8oq4eD-KeNaBl7-YYh-kzZCaxL6rBooc1ixX-T-LVyfUKzeyuXoOG98cwcH0yTa9J94kuHQSLI59EdunDkE_3BMvJ2zNE0oPWYsf12qDwHK7nAULKDFdUvJop6vjnAObmvyitz8s73mBGVMvQNELDjk_wN_8gmmv8ujM_dc9-JoIdPulOh6bm3yWLn_OtJYvJNygSqF3aTMH-001dQMOSu4M5K1Rfwo6MNWjg_jQfXmGhbt1ffh-OFvsRmsuZ2PZvojK2vgYcE36eEPHsc6zuzXRks30TqnNR3TFHWKNJ7csJfF-7AFunQBQ&h=73phCb16IXqFHcCJZ_zSJdZz-sdYk37-LshvqohMLwQ response: body: string: '{"status":"Running"}' @@ -2962,15 +674,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:01:49 GMT + - Fri, 12 Sep 2025 06:30:47 GMT elapsed-time: - - '169' + - '286' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2978,11 +690,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ee53cf10-72fe-4326-b443-42915779b6f6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/7b6e8a75-cd5b-4fe4-a4ea-3a4f48d36672 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 5EE17ECB499D44F2A0EE0A9168BC044A Ref B: TYO201100116023 Ref C: 2025-05-16T12:01:48Z' + - 'Ref A: AE450C8F636948FA9CD5354F8AE2AB59 Ref B: CO6AA3150218035 Ref C: 2025-09-12T06:30:47Z' status: code: 200 message: OK @@ -3000,9 +712,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542100108086609?api-version=2024-11-01&t=638829936758551894&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=FG3dReO3hkIoPI5gspOwrR3RvDTeZZQXedhh8Zug0CDmHbWK2fj5mJBjnoIhfdbP9kvpVjzWC1lW7s4f9doWky7YeO3WqxTQ5umpBx9XvA7PR-taW0M2XUFd6qdio7PZqI_6cjngT7Nns6BrGvujmiXJjNqIHW00Bis9rJLkKltZcfzdioEkBR2cL304jWXT02B-h7ItgxXp3O3224w1K63cji3OoSpgcftAx4G8W2FSO9UHXSfGZrFSQekJAAU18KaBRJpvqizKCL7XUE7ASbmIJPjehDzgbbnucOZ2CCRBGRpEKF8EKFvX48QNRqMagQZSuAjUgySjayErUa-K-Q&h=Pb1C7EbAAc_5fcq831o2aD42xyICzW0vnWffzbfM1Ks + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439482700821674?api-version=2022-09-01&t=638932554166228168&c=MIIIrjCCBpagAwIBAgITUQCIDuL65RxxVOrePgABAIgO4jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzIyMTM0NjMzWhcNMjUxMDIwMTM0NjMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMNRO4oET35jXyqbX5Xyjt5TGWo5oWsXNpp81sh4Df9TuoLUY_lyOj7rDIAQaYSarIfI6GRc4SkyhPSfX5CraChAaYzR22bv2Je7XWEZL7cI972yd43dERpLXyc1m0rEMmwj7G48qohYfWajOa9kaftilm4TCovGrhlNah8VznG_SxmcFhQ_2HaOqR3SXib8Kn5Awsd_NRwwy-JUQ5EmDJwNQAktGhBwDApO70eVOG2H2oEHyULFxG0mXOHyFZhc3D1cWBYwMlEQnAyCUueGA7qgoHoKK5uyq9TNy4lvvbYZ2tkJkYrEYDoWyQH4EYvfScIPpHlNOheuNqYG2eWvL6kCAwEAAaOCBJswggSXMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAeQGCCsGAQUFBwEBBIIB1jCCAdIwaAYIKwYBBQUHMAKGXGh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsNC5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MB0GA1UdDgQWBBRaKzawH4T_fJFtaCQrRz9iCtKIhzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBQ5cV2pFRAtxN9-L1luQE3A3-82mjAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBADkeDawsEdLgjTD85rftlNN6uN2QD0qLK1hKpk363n3BD1yl5Oe76ayKduI256cE7AkNsx5dThNm2huvdQ_vlnLMjemTV4FxXuawpxWAUkHQqP1lh3U2_GxEHVNxsyhoun-svFl3lc8-1p-izJftu1UYhwdbSrjH01DufHPqHcDRwZ12y6LWuDOo99-leXqMYByB-01hZyg-jyqu3ZXtJ69TMLNnNDBC8JuJlD5CMuf43V20BOhgYSrdOlVf2XVPxrjms43JuF8Nq3O5ApoenkBrtqwXn4d745MbwYAOMVd6TUOpbHx89S5YnI6sK6q8Rooquge2h8DfMpP2FTMDHq-MZPF1qUWFDwwFidlLEY5VMaYaHEPmdoktOIHWCZbabO4qOYQ7yhO7NA6lDV39ij7dFkWgGZh6QcjglavuBulmPiomoNXDStQ4jPvDju-0XMW0yjp0_OTMjJbbxmq75buEkCGuazh-1L9G1gjzHv8oqoMZSCJafxa-kwA_Ja_sZj2m8YQB0ffKelKoSO5PB1_EmMgKq5-4gxBvfhCvo_0uKj5YEhCreU4RXSHgpLv8OfgS3aoFWJw5EHg85HMLsGDnsA8FCJnYqNTRK6ec6k0Sn0PXR5LbA6JNVgzY859rdbxkv6XKeaqBbmG95_3jZmFjF1PsEtOljli0pAG0baHu&s=bAfMn9QSasTiWOuSn_-Dze0-4wp24q8oq4eD-KeNaBl7-YYh-kzZCaxL6rBooc1ixX-T-LVyfUKzeyuXoOG98cwcH0yTa9J94kuHQSLI59EdunDkE_3BMvJ2zNE0oPWYsf12qDwHK7nAULKDFdUvJop6vjnAObmvyitz8s73mBGVMvQNELDjk_wN_8gmmv8ujM_dc9-JoIdPulOh6bm3yWLn_OtJYvJNygSqF3aTMH-001dQMOSu4M5K1Rfwo6MNWjg_jQfXmGhbt1ffh-OFvsRmsuZ2PZvojK2vgYcE36eEPHsc6zuzXRks30TqnNR3TFHWKNJ7csJfF-7AFunQBQ&h=73phCb16IXqFHcCJZ_zSJdZz-sdYk37-LshvqohMLwQ response: body: string: '{"status":"Running"}' @@ -3014,15 +726,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:02:20 GMT + - Fri, 12 Sep 2025 06:31:18 GMT elapsed-time: - - '189' + - '184' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3030,11 +742,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/2a1891a2-9f13-483a-8d47-b95774904701 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/e1c29c34-6f61-4cd2-bde3-9fe2fd53a064 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: D6F7ED4A4E494BF4BE50211EA9F29678 Ref B: TYO201100116023 Ref C: 2025-05-16T12:02:19Z' + - 'Ref A: A02071ED9EE040D1B6F2F952EA071DC1 Ref B: MWH011020809029 Ref C: 2025-09-12T06:31:18Z' status: code: 200 message: OK @@ -3052,9 +764,9 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584542100108086609?api-version=2024-11-01&t=638829936758551894&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=FG3dReO3hkIoPI5gspOwrR3RvDTeZZQXedhh8Zug0CDmHbWK2fj5mJBjnoIhfdbP9kvpVjzWC1lW7s4f9doWky7YeO3WqxTQ5umpBx9XvA7PR-taW0M2XUFd6qdio7PZqI_6cjngT7Nns6BrGvujmiXJjNqIHW00Bis9rJLkKltZcfzdioEkBR2cL304jWXT02B-h7ItgxXp3O3224w1K63cji3OoSpgcftAx4G8W2FSO9UHXSfGZrFSQekJAAU18KaBRJpvqizKCL7XUE7ASbmIJPjehDzgbbnucOZ2CCRBGRpEKF8EKFvX48QNRqMagQZSuAjUgySjayErUa-K-Q&h=Pb1C7EbAAc_5fcq831o2aD42xyICzW0vnWffzbfM1Ks + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/08584439482700821674?api-version=2022-09-01&t=638932554166228168&c=MIIIrjCCBpagAwIBAgITUQCIDuL65RxxVOrePgABAIgO4jANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzIyMTM0NjMzWhcNMjUxMDIwMTM0NjMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMNRO4oET35jXyqbX5Xyjt5TGWo5oWsXNpp81sh4Df9TuoLUY_lyOj7rDIAQaYSarIfI6GRc4SkyhPSfX5CraChAaYzR22bv2Je7XWEZL7cI972yd43dERpLXyc1m0rEMmwj7G48qohYfWajOa9kaftilm4TCovGrhlNah8VznG_SxmcFhQ_2HaOqR3SXib8Kn5Awsd_NRwwy-JUQ5EmDJwNQAktGhBwDApO70eVOG2H2oEHyULFxG0mXOHyFZhc3D1cWBYwMlEQnAyCUueGA7qgoHoKK5uyq9TNy4lvvbYZ2tkJkYrEYDoWyQH4EYvfScIPpHlNOheuNqYG2eWvL6kCAwEAAaOCBJswggSXMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAeQGCCsGAQUFBwEBBIIB1jCCAdIwaAYIKwYBBQUHMAKGXGh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MFgGCCsGAQUFBzAChkxodHRwOi8vY3JsNC5hbWUuZ2JsL2FpYS9tZWwwMXBraWludGNhMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3J0MB0GA1UdDgQWBBRaKzawH4T_fJFtaCQrRz9iCtKIhzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDQoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBQ5cV2pFRAtxN9-L1luQE3A3-82mjAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDQYJKoZIhvcNAQELBQADggIBADkeDawsEdLgjTD85rftlNN6uN2QD0qLK1hKpk363n3BD1yl5Oe76ayKduI256cE7AkNsx5dThNm2huvdQ_vlnLMjemTV4FxXuawpxWAUkHQqP1lh3U2_GxEHVNxsyhoun-svFl3lc8-1p-izJftu1UYhwdbSrjH01DufHPqHcDRwZ12y6LWuDOo99-leXqMYByB-01hZyg-jyqu3ZXtJ69TMLNnNDBC8JuJlD5CMuf43V20BOhgYSrdOlVf2XVPxrjms43JuF8Nq3O5ApoenkBrtqwXn4d745MbwYAOMVd6TUOpbHx89S5YnI6sK6q8Rooquge2h8DfMpP2FTMDHq-MZPF1qUWFDwwFidlLEY5VMaYaHEPmdoktOIHWCZbabO4qOYQ7yhO7NA6lDV39ij7dFkWgGZh6QcjglavuBulmPiomoNXDStQ4jPvDju-0XMW0yjp0_OTMjJbbxmq75buEkCGuazh-1L9G1gjzHv8oqoMZSCJafxa-kwA_Ja_sZj2m8YQB0ffKelKoSO5PB1_EmMgKq5-4gxBvfhCvo_0uKj5YEhCreU4RXSHgpLv8OfgS3aoFWJw5EHg85HMLsGDnsA8FCJnYqNTRK6ec6k0Sn0PXR5LbA6JNVgzY859rdbxkv6XKeaqBbmG95_3jZmFjF1PsEtOljli0pAG0baHu&s=bAfMn9QSasTiWOuSn_-Dze0-4wp24q8oq4eD-KeNaBl7-YYh-kzZCaxL6rBooc1ixX-T-LVyfUKzeyuXoOG98cwcH0yTa9J94kuHQSLI59EdunDkE_3BMvJ2zNE0oPWYsf12qDwHK7nAULKDFdUvJop6vjnAObmvyitz8s73mBGVMvQNELDjk_wN_8gmmv8ujM_dc9-JoIdPulOh6bm3yWLn_OtJYvJNygSqF3aTMH-001dQMOSu4M5K1Rfwo6MNWjg_jQfXmGhbt1ffh-OFvsRmsuZ2PZvojK2vgYcE36eEPHsc6zuzXRks30TqnNR3TFHWKNJ7csJfF-7AFunQBQ&h=73phCb16IXqFHcCJZ_zSJdZz-sdYk37-LshvqohMLwQ response: body: string: '{"status":"Succeeded"}' @@ -3066,15 +778,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:02:52 GMT + - Fri, 12 Sep 2025 06:31:49 GMT elapsed-time: - - '170' + - '199' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3082,11 +794,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/76762c5f-ea9f-4824-aefa-220e708d52e3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/3f1ccb65-1d5c-406c-b312-acdb5c034949 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 83928EE4C22D46C3B0538F97716A9F42 Ref B: TYO201100116023 Ref C: 2025-05-16T12:02:51Z' + - 'Ref A: 073F0C3F221141F5BE709D672448C6C4 Ref B: MWH011020806029 Ref C: 2025-09-12T06:31:49Z' status: code: 200 message: OK @@ -3104,7 +816,7 @@ interactions: ParameterSetName: - --service-name -g --resource-id --name --group-id --request-message User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -3119,15 +831,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:02:53 GMT + - Fri, 12 Sep 2025 06:31:50 GMT elapsed-time: - - '655' + - '741' expires: - '-1' pragma: - no-cache request-id: - - 7540f6b4-324d-11f0-9ba7-644ed7a2823f + - efed8175-8fa1-11f0-96d3-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3135,11 +847,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8a1b9cba-5741-4abf-bcdb-bacd4a5ca0db - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/3935d7de-169a-4410-8048-c8ef91eb7b97 + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 25DFAE1F96074D959C78ED83DB0270CD Ref B: TYO201100116023 Ref C: 2025-05-16T12:02:52Z' + - 'Ref A: EBE60E91D0D244A4850DE88A2664A3E0 Ref B: CO6AA3150218049 Ref C: 2025-09-12T06:31:50Z' status: code: 200 message: OK @@ -3157,7 +869,7 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 response: @@ -3172,15 +884,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:02:56 GMT + - Fri, 12 Sep 2025 06:31:52 GMT elapsed-time: - - '643' + - '650' expires: - '-1' pragma: - no-cache request-id: - - b26dbf03-324d-11f0-a9a0-644ed7a2823f + - 2a51295e-8fa2-11f0-9282-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3188,11 +900,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/766c600e-0745-4691-b51a-c1f6cb3c8e3f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/f9c9cda8-e903-4593-83cd-2d4a33cfe77d + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 5F80EAC317C249539EB9A8F2F5A526D0 Ref B: TYO201151006036 Ref C: 2025-05-16T12:02:55Z' + - 'Ref A: 8AE5E5B1F7614C3C812E5F73CE0CE8B1 Ref B: MWH011020809060 Ref C: 2025-09-12T06:31:51Z' status: code: 200 message: OK @@ -3210,7 +922,7 @@ interactions: ParameterSetName: - --service-name -g --name User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -3225,15 +937,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:03:01 GMT + - Fri, 12 Sep 2025 06:31:53 GMT elapsed-time: - - '749' + - '742' expires: - '-1' pragma: - no-cache request-id: - - b3e0ba58-324d-11f0-9d28-644ed7a2823f + - 2b1859aa-8fa2-11f0-a115-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3241,11 +953,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/097c2421-c353-4e3f-a679-76bb86b99c30 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/0b1ba7ce-f6fb-4453-9560-fd5d5afaf3ce x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D9F6A80945144C63A6DCD328B9E6EE26 Ref B: TYO201151006031 Ref C: 2025-05-16T12:02:57Z' + - 'Ref A: 57197143E2EF4BE68DFD967C9E138129 Ref B: MWH011020808034 Ref C: 2025-09-12T06:31:52Z' status: code: 200 message: OK @@ -3265,7 +977,7 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: @@ -3273,21 +985,21 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/9a3e72c3-246f-4644-a16a-1980a73eb943?api-version=2024-11-01&t=638829937852766217&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=evSmxCQ4NACPAsEQOL3VKYQnD9KjQB8sZRpRvLXw0GUzho3UbVB676OMJxcVdQ28LbLXKsa5fdDXHamZIzddbHSL9fKdV6FjMiqDK8cXHjtTJ5On2hKjo-VJXOsOLdj_AxGEUmiJFfLM5syAJladL8mqL4uFn28GeFPpiCCQWVrEXZtwPKJJShOmDjNGFgBxce552gUKWhS8E5LsVMJP5eAFStfyKrvQnQ4qDnpMA17ZMV6jt_kFCnWkLHZxb2vwVCaScKYBl-rKreXpPgId6kPEYhGq8e0rU1qbZGAqZAggujuVUc9hu4zhdKdeF1uiHaHwsZF0K361YDBrRwm62w&h=to_Bt6_PuZZ1RZwP9NEd6RjbprwVZLu97_P6iNdJ39E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/fc03287a-1938-4600-a830-f87202e14637?api-version=2022-09-01&t=638932555154072329&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=N3ahgSzjgL1KcTH-UwZTAbqMtz_Ssxvmq4LvoLGZ8sybTy1cqXq2AxcNFlW-ptOxLLt9e6tqBW6ryP4psvaJ8nKMEHrPwHldYx1VFxl8NFz_IbiCbHWgA6ame5meM8CyFA4xU4SutsqthLrZKDACb5UTenI4PzuMmxQzPv17vmdosegHpIt3UC9HWmHDWzfVikUI9VZAO_QZRGP9GvO-0ZiYz257vU4WS6SZ0CKut_CjDAPq2qGi4TANggy2cj9J20tluWXMxP4Y-wZ0qteoPMiSIRZ1-Ml4oWClO-AqPyaGx9Q5a6zlxyisH-2Ps0Yqs8lZ9tPclBcr8AoMKCTbyg&h=A6ttAmXyOMcsS8ME5C_pFisC14slHEPLrniqMoetVRc cache-control: - no-cache content-length: - '0' date: - - Fri, 16 May 2025 12:03:04 GMT + - Fri, 12 Sep 2025 06:31:55 GMT elapsed-time: - - '1418' + - '1262' expires: - '-1' pragma: - no-cache request-id: - - b7154ff6-324d-11f0-927b-644ed7a2823f + - 2ba87ff3-8fa2-11f0-9ddc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3297,13 +1009,13 @@ interactions: x-ms-async-operation-timeout: - PT50M x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/199894ad-9d47-4f99-8271-11a542061628 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/31306535-d41f-4446-8386-8ea4f36f3b16 x-ms-ratelimit-remaining-subscription-deletes: - - '199' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '799' + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 4DD63F075A8D4CA4BB570F0C8CBA221C Ref B: TYO201151001052 Ref C: 2025-05-16T12:03:02Z' + - 'Ref A: 3492C94B957742F6A40AA2ED458905E4 Ref B: CO6AA3150219047 Ref C: 2025-09-12T06:31:53Z' status: code: 202 message: Accepted @@ -3321,9 +1033,9 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/9a3e72c3-246f-4644-a16a-1980a73eb943?api-version=2024-11-01&t=638829937852766217&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=evSmxCQ4NACPAsEQOL3VKYQnD9KjQB8sZRpRvLXw0GUzho3UbVB676OMJxcVdQ28LbLXKsa5fdDXHamZIzddbHSL9fKdV6FjMiqDK8cXHjtTJ5On2hKjo-VJXOsOLdj_AxGEUmiJFfLM5syAJladL8mqL4uFn28GeFPpiCCQWVrEXZtwPKJJShOmDjNGFgBxce552gUKWhS8E5LsVMJP5eAFStfyKrvQnQ4qDnpMA17ZMV6jt_kFCnWkLHZxb2vwVCaScKYBl-rKreXpPgId6kPEYhGq8e0rU1qbZGAqZAggujuVUc9hu4zhdKdeF1uiHaHwsZF0K361YDBrRwm62w&h=to_Bt6_PuZZ1RZwP9NEd6RjbprwVZLu97_P6iNdJ39E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/fc03287a-1938-4600-a830-f87202e14637?api-version=2022-09-01&t=638932555154072329&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=N3ahgSzjgL1KcTH-UwZTAbqMtz_Ssxvmq4LvoLGZ8sybTy1cqXq2AxcNFlW-ptOxLLt9e6tqBW6ryP4psvaJ8nKMEHrPwHldYx1VFxl8NFz_IbiCbHWgA6ame5meM8CyFA4xU4SutsqthLrZKDACb5UTenI4PzuMmxQzPv17vmdosegHpIt3UC9HWmHDWzfVikUI9VZAO_QZRGP9GvO-0ZiYz257vU4WS6SZ0CKut_CjDAPq2qGi4TANggy2cj9J20tluWXMxP4Y-wZ0qteoPMiSIRZ1-Ml4oWClO-AqPyaGx9Q5a6zlxyisH-2Ps0Yqs8lZ9tPclBcr8AoMKCTbyg&h=A6ttAmXyOMcsS8ME5C_pFisC14slHEPLrniqMoetVRc response: body: string: '{"status":"InProgress"}' @@ -3335,15 +1047,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:03:05 GMT + - Fri, 12 Sep 2025 06:31:55 GMT elapsed-time: - - '119' + - '115' expires: - '-1' pragma: - no-cache request-id: - - b7154ff6-324d-11f0-927b-644ed7a2823f + - 2ba87ff3-8fa2-11f0-9ddc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3351,11 +1063,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/ec5b0fb2-d076-4383-90d2-f675bdd52b6f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/3280552e-072a-4516-8b27-738e40359477 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 44FC03CB09AE43C5A8C93DF98C1FD3E9 Ref B: TYO201151001052 Ref C: 2025-05-16T12:03:05Z' + - 'Ref A: 4A3C02F16C414E978BB5A9806E563A1C Ref B: MWH011020807054 Ref C: 2025-09-12T06:31:55Z' status: code: 200 message: OK @@ -3373,9 +1085,9 @@ interactions: ParameterSetName: - --service-name -g --name -y User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/9a3e72c3-246f-4644-a16a-1980a73eb943?api-version=2024-11-01&t=638829937852766217&c=MIIHhzCCBm-gAwIBAgITHgbLuWlxY4-k_d1algAABsu5aTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNDE5MTMxMzMyWhcNMjUxMDE2MTMxMzMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMvHJaUg0aA6C-P-W7rBOoZfQCieq667lznMrFDPEeiLJs-W58e8I_jHbBheje2C5g9-qBPHK6VQBBfZrcs9tzrupbS7wUKQvBkbEEqj19vo7jPtiN4hWOYzxijvMpObILP6eyLeXsL3K6b3th6Mzu1YEGETh8Lh9lsKsgT-uiTSC52uYnO63jpJBr83ivLckQDLkpMN21cpEJpaenMoBGBtKAmREs19pJv5r4HQS73KA4NZgjOChwFPAD7cIPY8jFZduW--1Ej4woncGGu117cZcM1yffltg1tqs5vmfgVc4ru4VoMm2UUdWXj6t8VoG1yJ8zasfOiUeO4CjEJgU0ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQDmHWGUrNZmFtIfL14RXoPR4LL6zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJcF-z2HGOD5vBAPAiibLynJVPemcCzI2SbO4rX-E6AhWLEMIGFO4peavwLv9iPrFKY29lbs6SxVSu5q_hj7y932SCf-JNEeue2cfiDCPv3T6f2-EAZTfMXrH_G7MaJXKiT0W9b7aewbcPT4xAGaldOb8n9yZp0vrNp9qEtWLm-_bvUf_3_eHf6Iml0lQ01vTCc-k265OG5t1GXtk819ayqNBui5LchwPrubIwRT_p2bmkDy4M-NKrweDScQY2PyCsUp_kdZXbvXoLWAHVgrY7Jq_YDJtDv71360dQ2_5FYlmToG9vPIsDq3H-rE22IKrM8CQsR3ta6g7CXSflNNquQ&s=evSmxCQ4NACPAsEQOL3VKYQnD9KjQB8sZRpRvLXw0GUzho3UbVB676OMJxcVdQ28LbLXKsa5fdDXHamZIzddbHSL9fKdV6FjMiqDK8cXHjtTJ5On2hKjo-VJXOsOLdj_AxGEUmiJFfLM5syAJladL8mqL4uFn28GeFPpiCCQWVrEXZtwPKJJShOmDjNGFgBxce552gUKWhS8E5LsVMJP5eAFStfyKrvQnQ4qDnpMA17ZMV6jt_kFCnWkLHZxb2vwVCaScKYBl-rKreXpPgId6kPEYhGq8e0rU1qbZGAqZAggujuVUc9hu4zhdKdeF1uiHaHwsZF0K361YDBrRwm62w&h=to_Bt6_PuZZ1RZwP9NEd6RjbprwVZLu97_P6iNdJ39E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure_search_cli_test000001/providers/Microsoft.Search/searchServices/azstest000003/sharedPrivateLinkResources/spltest000004/operationStatuses/fc03287a-1938-4600-a830-f87202e14637?api-version=2022-09-01&t=638932555154072329&c=MIIHhjCCBm6gAwIBAgITHgdcHrRLNWOyRnVyKwAAB1wetDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwODIxMTIzODQ3WhcNMjUxMTE5MTIzODQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJq8SCGFx-fWhyjET0PoCR11VqjJgzRrXr9uy-0NZHrGGmTeWSmNEocBW3oCaIhu_1FGrjVfhXjIdFcU-lkQh_IbesS4duDxPn7z_jYWhWf-RD-ic_TcluQA5YvreOIU3J40oxZyNxD2ksYbHBoKoF_HM9zCav24xX32K3zk0U8X7uH3ZZBeX84AFdHvMOlNGebVQfXG3vVMoW_3fPn4JFMxHk7TuZQJ9zi_BtS8LsymbVA7dlWRLEoGzMatnGnZdfdbsBUXKjf75hBgS0ovjMY_BhDmV8Ap2R7gLwc0VGWjCtZvuz6GXYP-A0EAfISrkXQJyHPklm1HOyJhDv1ZUMkCAwEAAaOCBHMwggRvMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwIwCgYIKwYBBQUHAwEwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFgh8fIENbYcQIBZAIBBjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFHTcmOIkz8D5rarMHtYs8qd2MmTRMA4GA1UdDwEB_wQEAwIFoDCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATANBgkqhkiG9w0BAQsFAAOCAQEAKKJAzFL4kJWYLj_6hXiucZYVZ5vv4_NDGHQCwNAZ2V9EZQtlet5i2wzRCgI3dANPOXTgM64Ny3W4eTS0HN7j9usx_3AmNIax3QLDcKbtzienAjHeUjFg023nYGpDcw2OlDzq6ajXRFMwy6XN5imiLfcK4FAD2rbf69gSeUkmNW33pzbBGbOwCONDDRXlEjjtOMZ4B-Ih7CZ3_C8bR6cwzmuLx-tMqanHXr_yYj3sGqpUgtN7s6GrVLOKMW558xDP8ibkNToqQ3kbMK5k64buRYE6MH6n6dvd2bG0SSeffIVePpw02T9oel65Jus9VBlxaqsXiXIdeRPVBbFO2GecPA&s=N3ahgSzjgL1KcTH-UwZTAbqMtz_Ssxvmq4LvoLGZ8sybTy1cqXq2AxcNFlW-ptOxLLt9e6tqBW6ryP4psvaJ8nKMEHrPwHldYx1VFxl8NFz_IbiCbHWgA6ame5meM8CyFA4xU4SutsqthLrZKDACb5UTenI4PzuMmxQzPv17vmdosegHpIt3UC9HWmHDWzfVikUI9VZAO_QZRGP9GvO-0ZiYz257vU4WS6SZ0CKut_CjDAPq2qGi4TANggy2cj9J20tluWXMxP4Y-wZ0qteoPMiSIRZ1-Ml4oWClO-AqPyaGx9Q5a6zlxyisH-2Ps0Yqs8lZ9tPclBcr8AoMKCTbyg&h=A6ttAmXyOMcsS8ME5C_pFisC14slHEPLrniqMoetVRc response: body: string: '{"status":"Succeeded"}' @@ -3387,15 +1099,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:03:37 GMT + - Fri, 12 Sep 2025 06:32:26 GMT elapsed-time: - - '116' + - '130' expires: - '-1' pragma: - no-cache request-id: - - b7154ff6-324d-11f0-927b-644ed7a2823f + - 2ba87ff3-8fa2-11f0-9ddc-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3403,11 +1115,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/1e976df1-c7b9-4ed8-87ab-3787e075ba9e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/e0708726-22dc-4e9c-9fdb-ada171fd6473 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0C530556BF5C449D91F43F8F244F9A3F Ref B: TYO201151001052 Ref C: 2025-05-16T12:03:37Z' + - 'Ref A: 03FF8C4354CA46FBB3C787FC5C8ACB6E Ref B: MWH011020807034 Ref C: 2025-09-12T06:32:26Z' status: code: 200 message: OK @@ -3425,7 +1137,7 @@ interactions: ParameterSetName: - --service-name -g User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources?api-version=2022-09-01 response: @@ -3439,15 +1151,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:03:39 GMT + - Fri, 12 Sep 2025 06:32:26 GMT elapsed-time: - - '130' + - '135' expires: - '-1' pragma: - no-cache request-id: - - ccd35c93-324d-11f0-ae9d-644ed7a2823f + - 3f500e64-8fa2-11f0-bd93-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3455,11 +1167,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/9a6d5ff8-430b-42e7-89ca-949a40ede22f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/eastus2euap/b7706c23-1fa3-401f-8b9b-062766d6a93e + x-ms-throttling-version: + - v2 x-msedge-ref: - - 'Ref A: 7B33992589D244D490842A2881830221 Ref B: TYO201151003034 Ref C: 2025-05-16T12:03:39Z' + - 'Ref A: 8CCB93A0F8494523A27D4C33F1006F5B Ref B: MWH011020808031 Ref C: 2025-09-12T06:32:26Z' status: code: 200 message: OK @@ -3477,14 +1189,14 @@ interactions: ParameterSetName: - --service-name -g --name User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-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/azstest000003/sharedPrivateLinkResources/spltest000004?api-version=2022-09-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"Could not find sharedPrivateLinkResource - ''spltest000004'' for searchService ''azstest000003'' in subscription ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', - resourceGroupName ''azure_search_cli_test000001''. RequestId: bb604fe5-d1eb-4a4e-9e61-f76c99494096","target":null,"details":null}}' + ''spltest000004'' for searchService ''azstest000003'' in subscription ''a4337210-c6b0-4de4-907a-688f1c120d9a'', + resourceGroupName ''azure_search_cli_test000001''. RequestId: 630add90-25e8-4312-9417-5f29ebaaac2f","target":null,"details":null}}' headers: cache-control: - no-store, no-cache @@ -3495,15 +1207,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 12:03:40 GMT + - Fri, 12 Sep 2025 06:32:27 GMT elapsed-time: - - '112' + - '95' expires: - '-1' pragma: - no-cache request-id: - - cdb6e9c8-324d-11f0-8499-644ed7a2823f + - 3fc744dc-8fa2-11f0-9f8e-683421896a24 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -3511,11 +1223,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/aaa58b5a-89f1-4a09-9aa2-962cc47e197c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=36c383ff-e0fb-4818-8b53-3e88239797c1/westcentralus/427eb558-4801-4d1a-a5c8-5b597ff7c8b6 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 25572BB8121740F6B215873AA97AE9A1 Ref B: TYO201100116019 Ref C: 2025-05-16T12:03:40Z' + - 'Ref A: 734B49A0F6A14FE9926490A7948F7050 Ref B: MWH011020808029 Ref C: 2025-09-12T06:32:27Z' status: code: 404 message: Not Found diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py index ad2a70de939..6f3a93723d9 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_admin_key.py @@ -4,11 +4,16 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer +from .recording_processors import KeyReplacer import unittest class AzureSearchAdminKeysTests(ScenarioTest): - + def __init__(self, method_name): + super(AzureSearchAdminKeysTests, self).__init__( + method_name, recording_processors=[KeyReplacer()] + ) + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching def setUp(self): self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py index 69a9ddc0c19..6b42e287d96 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_endpoint_connection.py @@ -35,7 +35,7 @@ def test_private_endpoint_connection_crud(self, resource_group): # create search service _search_service = self.cmd( - 'az search service create -n {search_service_name} -g {rg} --sku {sku_name} --public-access {public_network_access}', + 'az search service create -n {search_service_name} -g {rg} --sku {sku_name} --public-network-access {public_network_access}', checks=[self.check('name', '{search_service_name}'), self.check('sku.name', '{sku_name}'), self.check('publicNetworkAccess', '{public_network_access}')]).get_output_in_json() diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py index 0de7a255c07..d609d16e06a 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_private_link_resources.py @@ -25,7 +25,7 @@ def test_list_private_link_resources(self, resource_group): }) self.cmd( - 'az search service create -n {name} -g {rg} --sku {sku_name} --public-access {public_network_access}', + 'az search service create -n {name} -g {rg} --sku {sku_name} --public-network-access {public_network_access}', checks=[self.check('name', '{name}'), self.check('sku.name', '{sku_name}'), self.check('publicNetworkAccess', '{public_network_access}')]) diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py index e4a8984f53f..b01e50fa1a3 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_query_key.py @@ -4,11 +4,16 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer +from .recording_processors import KeyReplacer import unittest class AzureSearchQueryKeysTests(ScenarioTest): - + def __init__(self, method_name): + super(AzureSearchQueryKeysTests, self).__init__( + method_name, recording_processors=[KeyReplacer()] + ) + # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching def setUp(self): self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' 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 e37dda155ad..05443f8c107 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 @@ -14,7 +14,7 @@ def setUp(self): self.vcr.match_on = ['scheme', 'method', 'path', 'query'] # not 'host', 'port' super().setUp() - @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westcentralus') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') def test_service_create_skus(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -120,7 +120,7 @@ def test_service_create_private_endpoint(self, resource_group): }) self.cmd( - 'az search service create -n {name} -g {rg} --sku {sku_name} --public-access {public_network_access}', + 'az search service create -n {name} -g {rg} --sku {sku_name} --public-network-access {public_network_access}', checks=[self.check('name', '{name}'), self.check('sku.name', '{sku_name}'), self.check('publicNetworkAccess', '{public_network_access}')]) @@ -139,7 +139,7 @@ def test_service_create_msi(self, resource_group): self.check('sku.name', '{sku_name}'), self.check('identity.type', '{identity_type}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westus') def test_service_update(self, resource_group): self.kwargs.update({ 'sku_name': 'standard', @@ -227,7 +227,7 @@ def test_service_update_ip_rules(self, resource_group): self.check('publicNetworkAccess', '{public_network_access}')]).get_output_in_json() self.assertTrue(len(_search_service['networkRuleSet']['ipRules']) == 0) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westus') def test_service_update_private_endpoint(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -236,7 +236,7 @@ def test_service_update_private_endpoint(self, resource_group): }) self.cmd( - 'az search service create -n {name} -g {rg} --sku {sku_name} --public-access {public_network_access}', + 'az search service create -n {name} -g {rg} --sku {sku_name} --public-network-access {public_network_access}', checks=[self.check('name', '{name}'), self.check('sku.name', '{sku_name}'), self.check('publicNetworkAccess', '{public_network_access}')]) @@ -246,7 +246,7 @@ def test_service_update_private_endpoint(self, resource_group): }) self.cmd( - 'az search service update -n {name} -g {rg} --public-access {public_network_access}', + 'az search service update -n {name} -g {rg} --public-network-access {public_network_access}', checks=[self.check('name', '{name}'), self.check('publicNetworkAccess', '{public_network_access}')]) @@ -255,11 +255,11 @@ def test_service_update_private_endpoint(self, resource_group): }) self.cmd( - 'az search service update -n {name} -g {rg} --public-access {public_network_access}', + 'az search service update -n {name} -g {rg} --public-network-access {public_network_access}', checks=[self.check('name', '{name}'), self.check('publicNetworkAccess', '{public_network_access}')]) - @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westcentralus') def test_service_update_msi(self, resource_group): self.kwargs.update({ 'sku_name': 'basic', @@ -459,5 +459,46 @@ def test_service_create_semantic_search(self, resource_group): self.check('partitionCount', '{partition_count}'), self.check('semanticSearch', '{semantic_search}')]) + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + def test_service_create_compute_type(self, resource_group): + self.kwargs.update({ + 'sku_name': 'basic', + 'name': self.create_random_name(prefix='test', length=24), + 'replica_count': 1, + 'partition_count': 1, + 'compute_type': 'default' + }) + + self.cmd( + 'az search service create -n {name} -g {rg} --sku {sku_name}' + ' --replica-count {replica_count} --partition-count {partition_count}' + ' --compute-type {compute_type}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}'), + self.check('computeType', '{compute_type}')]) + + @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='eastus2euap') + def test_service_create_data_exfiltration_protections(self, resource_group): + self.kwargs.update({ + 'sku_name': 'basic', + 'name': self.create_random_name(prefix='test', length=24), + 'replica_count': 1, + 'partition_count': 1, + 'dataExfiltrationProtections': 'BlockAll' + }) + + _search_service = self.cmd( + 'az search service create -n {name} -g {rg} --sku {sku_name}' + ' --replica-count {replica_count} --partition-count {partition_count}' + ' --data-exfiltration-protections {dataExfiltrationProtections}', + checks=[self.check('name', '{name}'), + self.check('sku.name', '{sku_name}'), + self.check('replicaCount', '{replica_count}'), + self.check('partitionCount', '{partition_count}')]).get_output_in_json() + self.assertTrue(len(_search_service['dataExfiltrationProtections']) == 1) + self.assertTrue(_search_service['dataExfiltrationProtections'][0] == 'BlockAll') + if __name__ == '__main__': unittest.main() diff --git a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py index 300a007565e..e387b6604af 100644 --- a/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py +++ b/src/azure-cli/azure/cli/command_modules/search/tests/latest/test_shared_private_link_resource.py @@ -15,7 +15,7 @@ def setUp(self): super().setUp() @ResourceGroupPreparer(name_prefix='azure_search_cli_test', location='westcentralus') - @StorageAccountPreparer(name_prefix='satest', kind='StorageV2') + @StorageAccountPreparer(name_prefix='satest', kind='StorageV2', allow_shared_key_access=False) def test_shared_private_link_resource_crud(self, resource_group, storage_account): self.kwargs.update({ 'sku_name': 'basic',