Skip to main content

network_security_perimeter_configurations

Creates, updates, deletes, gets or lists a network_security_perimeter_configurations resource.

Overview

Namenetwork_security_perimeter_configurations
TypeResource
Idazure.search.network_security_perimeter_configurations

Fields

NameDatatypeDescription
network_security_perimetertextfield from the properties object
nspConfigNametextfield from the properties object
profiletextfield from the properties object
provisioning_issuestextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resource_associationtextfield from the properties object
searchServiceNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTnspConfigName, resourceGroupName, searchServiceName, subscriptionIdGets a network security perimeter configuration.
list_by_serviceSELECTresourceGroupName, searchServiceName, subscriptionIdGets a list of network security perimeter configurations for a search service.
reconcileEXECnspConfigName, resourceGroupName, searchServiceName, subscriptionIdReconcile 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.

SELECT examples

Gets a list of network security perimeter configurations for a search service.

SELECT
network_security_perimeter,
nspConfigName,
profile,
provisioning_issues,
provisioning_state,
resourceGroupName,
resource_association,
searchServiceName,
subscriptionId
FROM azure.search.vw_network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND searchServiceName = '{{ searchServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';