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.event_grid.network_security_perimeter_configurations |
Fields
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | text | The name of the resource |
associationName | text | field from the properties object |
network_security_perimeter | text | field from the properties object |
perimeterGuid | 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 |
resourceName | text | field from the properties object |
resourceType | text | field from the properties object |
resource_association | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Network security perimeter configuration information to reflect latest association and nsp profile configuration. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | associationName, perimeterGuid, resourceGroupName, resourceName, resourceType, subscriptionId | Get a specific network security perimeter configuration with a topic or domain. |
list | SELECT | resourceGroupName, resourceName, resourceType, subscriptionId | Get all network security perimeter configurations associated with a topic or domain. |
reconcile | EXEC | associationName, perimeterGuid, resourceGroupName, resourceName, resourceType, subscriptionId | Reconcile 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.
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND resourceType = '{{ resourceType }}'
AND subscriptionId = '{{ subscriptionId }}';