network_security_perimeter_configurations
Creates, updates, deletes, gets or lists a network_security_perimeter_configurations
resource.
Overview
Name | network_security_perimeter_configurations |
Type | Resource |
Id | azure.search.network_security_perimeter_configurations |
Fields
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
Name | Datatype | Description |
---|---|---|
network_security_perimeter | text | field from the properties object |
nspConfigName | text | field from the properties object |
profile | text | field from the properties object |
provisioning_issues | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_association | text | field from the properties object |
searchServiceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a network security perimeter configuration. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | nspConfigName, resourceGroupName, searchServiceName, subscriptionId | Gets a network security perimeter configuration. |
list_by_service | SELECT | resourceGroupName, searchServiceName, subscriptionId | Gets a list of network security perimeter configurations for a search service. |
reconcile | EXEC | nspConfigName, resourceGroupName, searchServiceName, subscriptionId | 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. |
SELECT
examples
Gets a list of network security perimeter configurations for a search service.
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
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 }}';
SELECT
properties
FROM azure.search.network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND searchServiceName = '{{ searchServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';