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
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 NetworkSecurityPerimeterConfiguration |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | namespaceName, resourceGroupName, subscriptionId | Gets list of current NetworkSecurityPerimeterConfiguration for Namespace |
create_or_update | INSERT | namespaceName, resourceAssociationName, resourceGroupName, subscriptionId | Refreshes any information about the association. |
SELECT
examples
Gets list of current NetworkSecurityPerimeterConfiguration for Namespace
SELECT
id,
name,
location,
properties,
type
FROM azure.event_hubs.network_security_perimeter_configurations
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new network_security_perimeter_configurations
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.event_hubs.network_security_perimeter_configurations (
namespaceName,
resourceAssociationName,
resourceGroupName,
subscriptionId
)
SELECT
'{{ namespaceName }}',
'{{ resourceAssociationName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}'
;
- name: your_resource_model_name
props: []