Skip to main content

create_and_associate_pl_filter

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

Overview

Namecreate_and_associate_pl_filter
TypeResource
Idazure_isv.elastic.create_and_associate_pl_filter

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertresource_group_name, monitor_name, subscription_idname, privateEndpointGuid, privateEndpointNameCreate and associate a PL filter with your Elastic monitor resource to control and manage network traffic. Create and associate a PL filter with your Elastic monitor resource to control and manage network traffic.

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
monitor_namestringMonitor resource name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
namestringName of the traffic filter. Default value is None.
privateEndpointGuidstringGuid of the private endpoint. Default value is None.
privateEndpointNamestringName of the private endpoint. Default value is None.

INSERT examples

Create and associate a PL filter with your Elastic monitor resource to control and manage network traffic. Create and associate a PL filter with your Elastic monitor resource to control and manage network traffic.

INSERT INTO azure_isv.elastic.create_and_associate_pl_filter (
resource_group_name,
monitor_name,
subscription_id,
name,
privateEndpointGuid,
privateEndpointName
)
SELECT
'{{ resource_group_name }}',
'{{ monitor_name }}',
'{{ subscription_id }}',
'{{ name }}',
'{{ privateEndpointGuid }}',
'{{ privateEndpointName }}'
;