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

Fields

The following fields are returned by SELECT queries:

OK -- Get the Network Security Perimeter configuration successfully.

NameDatatypeDescription
idstringFully qualified identifier of the resource
namestringName of the resource
propertiesobjectProperties of the Network Security Perimeter configuration
typestringType of the resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, networkSecurityPerimeterConfigurationNameGets the specified Network Security Perimeter configuration associated with the Bot.
listselectsubscriptionId, resourceGroupName, resourceNameList Network Security Perimeter configurations associated with the Bot.
reconcileexecsubscriptionId, resourceGroupName, resourceName, networkSecurityPerimeterConfigurationNameReconcile the specified Network Security Perimeter configuration associated with the Bot.

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
networkSecurityPerimeterConfigurationNamestringThe resource association Name. Composed of parameter guid and association name.
resourceGroupNamestringThe name of the Bot resource group in the user subscription.
resourceNamestringThe name of the Bot resource.
subscriptionIdstringAzure Subscription ID.

SELECT examples

Gets the specified Network Security Perimeter configuration associated with the Bot.

SELECT
id,
name,
properties,
type
FROM azure.bot_service.network_security_perimeter_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND networkSecurityPerimeterConfigurationName = '{{ networkSecurityPerimeterConfigurationName }}' -- required
;

Lifecycle Methods

Reconcile the specified Network Security Perimeter configuration associated with the Bot.

EXEC azure.bot_service.network_security_perimeter_configurations.reconcile 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@resourceName='{{ resourceName }}' --required,
@networkSecurityPerimeterConfigurationName='{{ networkSecurityPerimeterConfigurationName }}' --required
;