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_hubs.network_security_perimeter_configurations |
Fields
The following fields are returned by SELECT
queries:
- list
Network Security Perimeter Configuration List
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
location | string | The geo-location where the resource lives |
properties | object | Properties of the Network Security Perimeter Configuration |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , namespaceName , subscriptionId | Gets list of current NetworkSecurityPerimeterConfiguration for Namespace | |
create_or_update | insert | subscriptionId , resourceGroupName , namespaceName , resourceAssociationName | Refreshes 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.
Name | Datatype | Description |
---|---|---|
namespaceName | string | The Namespace name |
resourceAssociationName | string | The ResourceAssociation Name |
resourceGroupName | string | Name of the resource group within the azure subscription. |
subscriptionId | string | Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
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
- create_or_update
- Manifest
Refreshes any information about the association.
INSERT INTO azure.event_hubs.network_security_perimeter_configurations (
subscriptionId,
resourceGroupName,
namespaceName,
resourceAssociationName
)
SELECT
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ namespaceName }}',
'{{ resourceAssociationName }}'
;
# Description fields are for documentation purposes
- name: network_security_perimeter_configurations
props:
- name: subscriptionId
value: string
description: Required parameter for the network_security_perimeter_configurations resource.
- name: resourceGroupName
value: string
description: Required parameter for the network_security_perimeter_configurations resource.
- name: namespaceName
value: string
description: Required parameter for the network_security_perimeter_configurations resource.
- name: resourceAssociationName
value: string
description: Required parameter for the network_security_perimeter_configurations resource.