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.batch.network_security_perimeter_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
The operation was successful. The response contains the NSP configuration.
Name | Datatype | Description |
---|---|---|
properties | object | Network security configuration properties. |
The operation was successful. The response contains a list of NSP configurations associated with the account.
Name | Datatype | Description |
---|---|---|
properties | object | Network security configuration properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , accountName , networkSecurityPerimeterConfigurationName | Gets information about the specified NSP configuration. | |
list | select | subscriptionId , resourceGroupName , accountName | Lists all of the NSP configurations in the specified account. |
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 |
---|---|---|
accountName | string | The name of the Batch account. |
networkSecurityPerimeterConfigurationName | string | The name for Network Security Perimeter configuration |
resourceGroupName | string | The name of the resource group that contains the Batch account. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
SELECT
examples
- get
- list
Gets information about the specified NSP configuration.
SELECT
properties
FROM azure.batch.network_security_perimeter_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND networkSecurityPerimeterConfigurationName = '{{ networkSecurityPerimeterConfigurationName }}' -- required
;
Lists all of the NSP configurations in the specified account.
SELECT
properties
FROM azure.batch.network_security_perimeter_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;