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

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.
networkSecurityPerimeterobjectInformation about a network security perimeter (NSP).
profileobject:vartype profile: ~azure.mgmt.appconfiguration.models.NetworkSecurityProfile
provisioningIssuesarrayList of provisioning issues, if any.
provisioningStatestringKnown values are: "Succeeded", "Creating", "Updating", "Deleting", "Accepted", "Failed", and "Canceled". (Succeeded, Creating, Updating, Deleting, Accepted, Failed, Canceled)
resourceAssociationobject:vartype resource_association: ~azure.mgmt.appconfiguration.models.ResourceAssociation
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
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
getselectresource_group_name, config_store_name, network_security_perimeter_configuration_name, subscription_idGets the specified network security perimeter configuration associated with the configuration store.
list_by_configuration_storeselectresource_group_name, config_store_name, subscription_idLists all network security perimeter configurations for a configuration store.
reconcileexecresource_group_name, config_store_name, network_security_perimeter_configuration_name, subscription_idForces a refresh of the specified network security perimeter configuration.

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
config_store_namestringThe name of the configuration store. Required.
network_security_perimeter_configuration_namestringThe name of the NetworkSecurityPerimeterConfiguration. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets the specified network security perimeter configuration associated with the configuration store.

SELECT
id,
name,
networkSecurityPerimeter,
profile,
provisioningIssues,
provisioningState,
resourceAssociation,
systemData,
type
FROM azure.app_configuration.network_security_perimeter_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND config_store_name = '{{ config_store_name }}' -- required
AND network_security_perimeter_configuration_name = '{{ network_security_perimeter_configuration_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

Forces a refresh of the specified network security perimeter configuration.

EXEC azure.app_configuration.network_security_perimeter_configurations.reconcile 
@resource_group_name='{{ resource_group_name }}' --required,
@config_store_name='{{ config_store_name }}' --required,
@network_security_perimeter_configuration_name='{{ network_security_perimeter_configuration_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;