network_security_perimeter_configuration
Creates, updates, deletes, gets or lists a network_security_perimeter_configuration resource.
Overview
| Name | network_security_perimeter_configuration |
| Type | Resource |
| Id | azure.event_hub.network_security_perimeter_configuration |
Fields
The following fields are returned by SELECT queries:
- 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 | Resource location. |
networkSecurityPerimeter | object | NetworkSecurityPerimeter related information. |
profile | object | Information about current network profile. |
provisioningIssues | array | List of Provisioning Issues if any. |
provisioningState | string | Provisioning state of NetworkSecurityPerimeter configuration propagation. Known values are: "Unknown", "Creating", "Updating", "Accepted", "InvalidResponse", "Succeeded", "SucceededWithIssues", "Failed", "Deleting", "Deleted", and "Canceled". |
resourceAssociation | object | Information about resource association. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, namespace_name, subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
namespace_name | string | The Namespace name. Required. |
resource_group_name | string | Name of the resource group within the azure subscription. Required. |
subscription_id | string |
SELECT examples
- list
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
;