1. Packages
  2. Datadog
  3. API Docs
  4. SecurityMonitoringFilter
Datadog v4.23.0 published on Wednesday, Sep 27, 2023 by Pulumi

datadog.SecurityMonitoringFilter

Explore with Pulumi AI

datadog logo
Datadog v4.23.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Provides a Datadog Security Monitoring Rule API resource for security filters.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        var myFilter = new Datadog.SecurityMonitoringFilter("myFilter", new()
        {
            ExclusionFilters = new[]
            {
                new Datadog.Inputs.SecurityMonitoringFilterExclusionFilterArgs
                {
                    Name = "first",
                    Query = "exclude some logs",
                },
                new Datadog.Inputs.SecurityMonitoringFilterExclusionFilterArgs
                {
                    Name = "second",
                    Query = "exclude some other logs",
                },
            },
            IsEnabled = true,
            Name = "My filter",
            Query = "The filter is filtering.",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datadog.NewSecurityMonitoringFilter(ctx, "myFilter", &datadog.SecurityMonitoringFilterArgs{
    			ExclusionFilters: datadog.SecurityMonitoringFilterExclusionFilterArray{
    				&datadog.SecurityMonitoringFilterExclusionFilterArgs{
    					Name:  pulumi.String("first"),
    					Query: pulumi.String("exclude some logs"),
    				},
    				&datadog.SecurityMonitoringFilterExclusionFilterArgs{
    					Name:  pulumi.String("second"),
    					Query: pulumi.String("exclude some other logs"),
    				},
    			},
    			IsEnabled: pulumi.Bool(true),
    			Name:      pulumi.String("My filter"),
    			Query:     pulumi.String("The filter is filtering."),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.SecurityMonitoringFilter;
    import com.pulumi.datadog.SecurityMonitoringFilterArgs;
    import com.pulumi.datadog.inputs.SecurityMonitoringFilterExclusionFilterArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myFilter = new SecurityMonitoringFilter("myFilter", SecurityMonitoringFilterArgs.builder()        
                .exclusionFilters(            
                    SecurityMonitoringFilterExclusionFilterArgs.builder()
                        .name("first")
                        .query("exclude some logs")
                        .build(),
                    SecurityMonitoringFilterExclusionFilterArgs.builder()
                        .name("second")
                        .query("exclude some other logs")
                        .build())
                .isEnabled(true)
                .name("My filter")
                .query("The filter is filtering.")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_datadog as datadog
    
    my_filter = datadog.SecurityMonitoringFilter("myFilter",
        exclusion_filters=[
            datadog.SecurityMonitoringFilterExclusionFilterArgs(
                name="first",
                query="exclude some logs",
            ),
            datadog.SecurityMonitoringFilterExclusionFilterArgs(
                name="second",
                query="exclude some other logs",
            ),
        ],
        is_enabled=True,
        name="My filter",
        query="The filter is filtering.")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    const myFilter = new datadog.SecurityMonitoringFilter("myFilter", {
        exclusionFilters: [
            {
                name: "first",
                query: "exclude some logs",
            },
            {
                name: "second",
                query: "exclude some other logs",
            },
        ],
        isEnabled: true,
        name: "My filter",
        query: "The filter is filtering.",
    });
    
    resources:
      myFilter:
        type: datadog:SecurityMonitoringFilter
        properties:
          exclusionFilters:
            - name: first
              query: exclude some logs
            - name: second
              query: exclude some other logs
          isEnabled: true
          name: My filter
          query: The filter is filtering.
    

    Create SecurityMonitoringFilter Resource

    new SecurityMonitoringFilter(name: string, args: SecurityMonitoringFilterArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityMonitoringFilter(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 exclusion_filters: Optional[Sequence[SecurityMonitoringFilterExclusionFilterArgs]] = None,
                                 filtered_data_type: Optional[str] = None,
                                 is_enabled: Optional[bool] = None,
                                 name: Optional[str] = None,
                                 query: Optional[str] = None)
    @overload
    def SecurityMonitoringFilter(resource_name: str,
                                 args: SecurityMonitoringFilterArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewSecurityMonitoringFilter(ctx *Context, name string, args SecurityMonitoringFilterArgs, opts ...ResourceOption) (*SecurityMonitoringFilter, error)
    public SecurityMonitoringFilter(string name, SecurityMonitoringFilterArgs args, CustomResourceOptions? opts = null)
    public SecurityMonitoringFilter(String name, SecurityMonitoringFilterArgs args)
    public SecurityMonitoringFilter(String name, SecurityMonitoringFilterArgs args, CustomResourceOptions options)
    
    type: datadog:SecurityMonitoringFilter
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SecurityMonitoringFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SecurityMonitoringFilterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SecurityMonitoringFilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityMonitoringFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityMonitoringFilterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SecurityMonitoringFilter Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SecurityMonitoringFilter resource accepts the following input properties:

    IsEnabled bool

    Whether the security filter is enabled.

    Name string

    The name of the security filter.

    Query string

    The query of the security filter.

    ExclusionFilters List<SecurityMonitoringFilterExclusionFilter>

    Exclusion filters to exclude some logs from the security filter.

    FilteredDataType string

    The filtered data type. Valid values are logs.

    IsEnabled bool

    Whether the security filter is enabled.

    Name string

    The name of the security filter.

    Query string

    The query of the security filter.

    ExclusionFilters []SecurityMonitoringFilterExclusionFilterArgs

    Exclusion filters to exclude some logs from the security filter.

    FilteredDataType string

    The filtered data type. Valid values are logs.

    isEnabled Boolean

    Whether the security filter is enabled.

    name String

    The name of the security filter.

    query String

    The query of the security filter.

    exclusionFilters List<SecurityMonitoringFilterExclusionFilter>

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType String

    The filtered data type. Valid values are logs.

    isEnabled boolean

    Whether the security filter is enabled.

    name string

    The name of the security filter.

    query string

    The query of the security filter.

    exclusionFilters SecurityMonitoringFilterExclusionFilter[]

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType string

    The filtered data type. Valid values are logs.

    is_enabled bool

    Whether the security filter is enabled.

    name str

    The name of the security filter.

    query str

    The query of the security filter.

    exclusion_filters Sequence[SecurityMonitoringFilterExclusionFilterArgs]

    Exclusion filters to exclude some logs from the security filter.

    filtered_data_type str

    The filtered data type. Valid values are logs.

    isEnabled Boolean

    Whether the security filter is enabled.

    name String

    The name of the security filter.

    query String

    The query of the security filter.

    exclusionFilters List<Property Map>

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType String

    The filtered data type. Valid values are logs.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SecurityMonitoringFilter resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Version int

    The version of the security filter.

    Id string

    The provider-assigned unique ID for this managed resource.

    Version int

    The version of the security filter.

    id String

    The provider-assigned unique ID for this managed resource.

    version Integer

    The version of the security filter.

    id string

    The provider-assigned unique ID for this managed resource.

    version number

    The version of the security filter.

    id str

    The provider-assigned unique ID for this managed resource.

    version int

    The version of the security filter.

    id String

    The provider-assigned unique ID for this managed resource.

    version Number

    The version of the security filter.

    Look up Existing SecurityMonitoringFilter Resource

    Get an existing SecurityMonitoringFilter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SecurityMonitoringFilterState, opts?: CustomResourceOptions): SecurityMonitoringFilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            exclusion_filters: Optional[Sequence[SecurityMonitoringFilterExclusionFilterArgs]] = None,
            filtered_data_type: Optional[str] = None,
            is_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            query: Optional[str] = None,
            version: Optional[int] = None) -> SecurityMonitoringFilter
    func GetSecurityMonitoringFilter(ctx *Context, name string, id IDInput, state *SecurityMonitoringFilterState, opts ...ResourceOption) (*SecurityMonitoringFilter, error)
    public static SecurityMonitoringFilter Get(string name, Input<string> id, SecurityMonitoringFilterState? state, CustomResourceOptions? opts = null)
    public static SecurityMonitoringFilter get(String name, Output<String> id, SecurityMonitoringFilterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ExclusionFilters List<SecurityMonitoringFilterExclusionFilter>

    Exclusion filters to exclude some logs from the security filter.

    FilteredDataType string

    The filtered data type. Valid values are logs.

    IsEnabled bool

    Whether the security filter is enabled.

    Name string

    The name of the security filter.

    Query string

    The query of the security filter.

    Version int

    The version of the security filter.

    ExclusionFilters []SecurityMonitoringFilterExclusionFilterArgs

    Exclusion filters to exclude some logs from the security filter.

    FilteredDataType string

    The filtered data type. Valid values are logs.

    IsEnabled bool

    Whether the security filter is enabled.

    Name string

    The name of the security filter.

    Query string

    The query of the security filter.

    Version int

    The version of the security filter.

    exclusionFilters List<SecurityMonitoringFilterExclusionFilter>

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType String

    The filtered data type. Valid values are logs.

    isEnabled Boolean

    Whether the security filter is enabled.

    name String

    The name of the security filter.

    query String

    The query of the security filter.

    version Integer

    The version of the security filter.

    exclusionFilters SecurityMonitoringFilterExclusionFilter[]

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType string

    The filtered data type. Valid values are logs.

    isEnabled boolean

    Whether the security filter is enabled.

    name string

    The name of the security filter.

    query string

    The query of the security filter.

    version number

    The version of the security filter.

    exclusion_filters Sequence[SecurityMonitoringFilterExclusionFilterArgs]

    Exclusion filters to exclude some logs from the security filter.

    filtered_data_type str

    The filtered data type. Valid values are logs.

    is_enabled bool

    Whether the security filter is enabled.

    name str

    The name of the security filter.

    query str

    The query of the security filter.

    version int

    The version of the security filter.

    exclusionFilters List<Property Map>

    Exclusion filters to exclude some logs from the security filter.

    filteredDataType String

    The filtered data type. Valid values are logs.

    isEnabled Boolean

    Whether the security filter is enabled.

    name String

    The name of the security filter.

    query String

    The query of the security filter.

    version Number

    The version of the security filter.

    Supporting Types

    SecurityMonitoringFilterExclusionFilter, SecurityMonitoringFilterExclusionFilterArgs

    Name string

    Exclusion filter name.

    Query string

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    Name string

    Exclusion filter name.

    Query string

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    name String

    Exclusion filter name.

    query String

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    name string

    Exclusion filter name.

    query string

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    name str

    Exclusion filter name.

    query str

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    name String

    Exclusion filter name.

    query String

    Exclusion filter query. Logs that match this query are excluded from the security filter.

    Import

    Security monitoring filters can be imported using ID, e.g.

     $ pulumi import datadog:index/securityMonitoringFilter:SecurityMonitoringFilter my_filter m0o-hto-lkb
    

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the datadog Terraform Provider.

    datadog logo
    Datadog v4.23.0 published on Wednesday, Sep 27, 2023 by Pulumi