Skip to main content

data_collection_endpoints_nsps

Creates, updates, deletes, gets or lists a data_collection_endpoints_nsps resource.

Overview

Namedata_collection_endpoints_nsps
TypeResource
Idazure.monitor.data_collection_endpoints_nsps

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the config.

NameDatatypeDescription
idstringAzure resource Id
namestringAzure resource name
propertiesobjectNetwork security configuration properties.
typestringAzure resource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, dataCollectionEndpointName, networkSecurityPerimeterConfigurationName
listselectsubscriptionId, resourceGroupName, dataCollectionEndpointName

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
dataCollectionEndpointNamestringThe name of the data collection endpoint. The name is case insensitive.
networkSecurityPerimeterConfigurationNamestringThe name for a network security perimeter configuration
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Successfully retrieved the config.

SELECT
id,
name,
properties,
type
FROM azure.monitor.data_collection_endpoints_nsps
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND dataCollectionEndpointName = '{{ dataCollectionEndpointName }}' -- required
AND networkSecurityPerimeterConfigurationName = '{{ networkSecurityPerimeterConfigurationName }}' -- required
;