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.event_grid.network_security_perimeter_configurations

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
nametextThe name of the resource
associationNametextfield from the properties object
network_security_perimetertextfield from the properties object
perimeterGuidtextfield 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
resourceNametextfield from the properties object
resourceTypetextfield from the properties object
resource_associationtextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTassociationName, perimeterGuid, resourceGroupName, resourceName, resourceType, subscriptionIdGet a specific network security perimeter configuration with a topic or domain.
listSELECTresourceGroupName, resourceName, resourceType, subscriptionIdGet all network security perimeter configurations associated with a topic or domain.
reconcileEXECassociationName, perimeterGuid, resourceGroupName, resourceName, resourceType, subscriptionIdReconcile a specific network security perimeter configuration for a given network security perimeter association with a topic or domain.

SELECT examples

Get all network security perimeter configurations associated with a topic or domain.

SELECT
id,
name,
associationName,
network_security_perimeter,
perimeterGuid,
profile,
provisioning_issues,
provisioning_state,
resourceGroupName,
resourceName,
resourceType,
resource_association,
subscriptionId,
system_data,
type
FROM azure.event_grid.vw_network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND resourceType = '{{ resourceType }}'
AND subscriptionId = '{{ subscriptionId }}';