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.bot_service.network_security_perimeter_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK -- Get the Network Security Perimeter configuration successfully.
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource |
name | string | Name of the resource |
properties | object | Properties of the Network Security Perimeter configuration |
type | string | Type of the resource |
OK -- List the Network Security Perimeter configurations successfully.
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource |
name | string | Name of the resource |
properties | object | Properties of the Network Security Perimeter configuration |
type | string | Type of the resource |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , resourceName , networkSecurityPerimeterConfigurationName | Gets the specified Network Security Perimeter configuration associated with the Bot. | |
list | select | subscriptionId , resourceGroupName , resourceName | List Network Security Perimeter configurations associated with the Bot. | |
reconcile | exec | subscriptionId , resourceGroupName , resourceName , networkSecurityPerimeterConfigurationName | Reconcile 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.
Name | Datatype | Description |
---|---|---|
networkSecurityPerimeterConfigurationName | string | The resource association Name. Composed of parameter guid and association name. |
resourceGroupName | string | The name of the Bot resource group in the user subscription. |
resourceName | string | The name of the Bot resource. |
subscriptionId | string | Azure Subscription ID. |
SELECT
examples
- get
- list
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
;
List Network Security Perimeter configurations 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
;
Lifecycle Methods
- reconcile
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
;