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

Fields

The following fields are returned by SELECT queries:

Network Security Perimeter Configuration List

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
locationstringThe geo-location where the resource lives
propertiesobjectProperties of the Network Security Perimeter Configuration
typestringThe type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, namespaceName, subscriptionIdGets list of current NetworkSecurityPerimeterConfiguration for Namespace
create_or_updateinsertsubscriptionId, resourceGroupName, namespaceName, resourceAssociationNameRefreshes any information about the association.

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
namespaceNamestringThe Namespace name
resourceAssociationNamestringThe ResourceAssociation Name
resourceGroupNamestringName of the resource group within the azure subscription.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets list of current NetworkSecurityPerimeterConfiguration for Namespace

SELECT
id,
name,
location,
properties,
type
FROM azure.event_hubs.network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;

INSERT examples

Refreshes any information about the association.

INSERT INTO azure.event_hubs.network_security_perimeter_configurations (
subscriptionId,
resourceGroupName,
namespaceName,
resourceAssociationName
)
SELECT
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ namespaceName }}',
'{{ resourceAssociationName }}'
;