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.hybrid_compute.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.
networkSecurityPerimeterobjectThe Network Security Perimeter associated with this configuration.
profileobjectNetwork Security Perimeter profile.
provisioningIssuesarrayProvisioning issues.
provisioningStatestringCurrent state of this NetworkSecurityPerimeter: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Provisioning ,Succeeded, Canceled and Failed.
resourceAssociationobjectThe Resource Association.
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
get_by_private_link_scopeselectresource_group_name, scope_name, perimeter_name, subscription_idGets the network security perimeter configuration for a private link scope.
list_by_private_link_scopeselectresource_group_name, scope_name, subscription_idLists the network security perimeter configurations for a private link scope.
reconcile_for_private_link_scopeexecresource_group_name, scope_name, perimeter_name, subscription_idForces the network security perimeter configuration to refresh for a private link scope.

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
perimeter_namestringThe name, in the format {perimeterGuid}.{associationName}, of the Network Security Perimeter resource. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
scope_namestringThe name of the Azure Arc PrivateLinkScope resource. Required.
subscription_idstring

SELECT examples

Gets the network security perimeter configuration for a private link scope.

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

Lifecycle Methods

Forces the network security perimeter configuration to refresh for a private link scope.

EXEC azure.hybrid_compute.network_security_perimeter_configurations.reconcile_for_private_link_scope 
@resource_group_name='{{ resource_group_name }}' --required,
@scope_name='{{ scope_name }}' --required,
@perimeter_name='{{ perimeter_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;