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
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified identifier of the resource |
name | text | Name of the resource |
networkSecurityPerimeterConfigurationName | text | field from the properties object |
network_security_perimeter | text | field from the properties object |
profile | text | field from the properties object |
provisioning_issues | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
resource_association | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the resource |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource |
name | string | Name of the resource |
properties | object | Properties of Network Security Perimeter configuration |
type | string | Type of the resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | networkSecurityPerimeterConfigurationName, resourceGroupName, resourceName, subscriptionId | Gets the specified Network Security Perimeter configuration associated with the Bot. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | List Network Security Perimeter configurations associated with the Bot. |
reconcile | EXEC | networkSecurityPerimeterConfigurationName, resourceGroupName, resourceName, subscriptionId | Reconcile the specified Network Security Perimeter configuration associated with the Bot. |
SELECT
examples
List Network Security Perimeter configurations associated with the Bot.
- vw_network_security_perimeter_configurations
- network_security_perimeter_configurations
SELECT
id,
name,
networkSecurityPerimeterConfigurationName,
network_security_perimeter,
profile,
provisioning_issues,
provisioning_state,
resourceGroupName,
resourceName,
resource_association,
subscriptionId,
type
FROM azure.bot_service.vw_network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.bot_service.network_security_perimeter_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';