Skip to main content

network_security_perimeter_configuration

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

Overview

Namenetwork_security_perimeter_configuration
TypeResource
Idazure.event_hub.network_security_perimeter_configuration

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
locationstringResource location.
networkSecurityPerimeterobjectNetworkSecurityPerimeter related information.
profileobjectInformation about current network profile.
provisioningIssuesarrayList of Provisioning Issues if any.
provisioningStatestringProvisioning state of NetworkSecurityPerimeter configuration propagation. Known values are: "Unknown", "Creating", "Updating", "Accepted", "InvalidResponse", "Succeeded", "SucceededWithIssues", "Failed", "Deleting", "Deleted", and "Canceled".
resourceAssociationobjectInformation about resource association.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, namespace_name, subscription_idGets list of current NetworkSecurityPerimeterConfiguration for Namespace.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
namespace_namestringThe Namespace name. Required.
resource_group_namestringName of the resource group within the azure subscription. Required.
subscription_idstring

SELECT examples

Gets list of current NetworkSecurityPerimeterConfiguration for Namespace.

SELECT
id,
name,
location,
networkSecurityPerimeter,
profile,
provisioningIssues,
provisioningState,
resourceAssociation,
tags,
type
FROM azure.event_hub.network_security_perimeter_configuration
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND namespace_name = '{{ namespace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;