1. Packages
  2. CrowdStrike
  3. API Docs
  4. FilevantagePolicy
CrowdStrike v0.0.7 published on Tuesday, Jan 14, 2025 by CrowdStrike

crowdstrike.FilevantagePolicy

Explore with Pulumi AI

crowdstrike logo
CrowdStrike v0.0.7 published on Tuesday, Jan 14, 2025 by CrowdStrike

    This resource allows management of a FileVantage policy. A FileVantage policy is a collection of file integrity rules and rule groups that you can apply to host groups.

    API Scopes

    The following API scopes are required:

    • Falcon FileVantage | Read & Write

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.crowdstrike.FilevantageRuleGroup;
    import com.pulumi.crowdstrike.FilevantageRuleGroupArgs;
    import com.pulumi.crowdstrike.inputs.FilevantageRuleGroupRuleArgs;
    import com.pulumi.crowdstrike.FilevantagePolicy;
    import com.pulumi.crowdstrike.FilevantagePolicyArgs;
    import com.pulumi.crowdstrike.inputs.FilevantagePolicyScheduledExclusionArgs;
    import com.pulumi.crowdstrike.inputs.FilevantagePolicyScheduledExclusionRepeatedArgs;
    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 exampleFilevantageRuleGroup = new FilevantageRuleGroup("exampleFilevantageRuleGroup", FilevantageRuleGroupArgs.builder()
                .description("Made with Pulumi")
                .type("MacFiles")
                .rules(FilevantageRuleGroupRuleArgs.builder()
                    .description("first rule")
                    .path("/path/to/example/")
                    .severity("High")
                    .depth("ANY")
                    .build())
                .build());
    
            var example2 = new FilevantageRuleGroup("example2", FilevantageRuleGroupArgs.builder()
                .description("Made with Pulumi")
                .type("MacFiles")
                .rules(FilevantageRuleGroupRuleArgs.builder()
                    .description("first rule")
                    .path("/path/to/example/")
                    .severity("High")
                    .depth("ANY")
                    .enable_content_capture(true)
                    .watch_file_write_changes(true)
                    .file_names("example.exe")
                    .build())
                .build());
    
            var exampleFilevantagePolicy = new FilevantagePolicy("exampleFilevantagePolicy", FilevantagePolicyArgs.builder()
                .enabled(true)
                .description("Made with Pulumi")
                .platformName("Mac")
                .ruleGroups(            
                    exampleFilevantageRuleGroup.id(),
                    example2.id())
                .scheduledExclusions(            
                    FilevantagePolicyScheduledExclusionArgs.builder()
                        .name("policy1")
                        .description("Run the first 3 days of the month. All day.")
                        .start_date("2024-05-21")
                        .start_time("11:09")
                        .timezone("US/Central")
                        .processes("**/example.exe,/path/to/example2.exe")
                        .repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
                            .allDay(true)
                            .frequency("monthly")
                            .monthlyOccurrence("Days")
                            .daysOfMonth(                        
                                1,
                                2,
                                3)
                            .build())
                        .build(),
                    FilevantagePolicyScheduledExclusionArgs.builder()
                        .name("policy2")
                        .description("Run monday, tuesday, wednesday. 11:09 - 12:10.")
                        .start_date("2024-05-21")
                        .start_time("11:09")
                        .users("admin*,example")
                        .timezone("US/Central")
                        .repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
                            .allDay(false)
                            .startTime("11:09")
                            .endTime("12:10")
                            .frequency("weekly")
                            .daysOfWeek(                        
                                "Monday",
                                "Tuesday",
                                "Wednesday")
                            .build())
                        .build())
                .build());
    
            ctx.export("filevantagePolicy", exampleFilevantagePolicy);
        }
    }
    
    resources:
      exampleFilevantageRuleGroup:
        type: crowdstrike:FilevantageRuleGroup
        properties:
          description: Made with Pulumi
          type: MacFiles
          rules:
            - description: first rule
              path: /path/to/example/
              severity: High
              depth: ANY
      example2:
        type: crowdstrike:FilevantageRuleGroup
        properties:
          description: Made with Pulumi
          type: MacFiles
          rules:
            - description: first rule
              path: /path/to/example/
              severity: High
              depth: ANY
              enable_content_capture: true
              watch_file_write_changes: true
              file_names:
                - example.exe
      exampleFilevantagePolicy:
        type: crowdstrike:FilevantagePolicy
        properties:
          enabled: true
          description: Made with Pulumi
          platformName: Mac
          # host_groups   = ["1232313"]
          ruleGroups:
            - ${exampleFilevantageRuleGroup.id}
            - ${example2.id}
          scheduledExclusions:
            - name: policy1
              description: Run the first 3 days of the month. All day.
              start_date: 2024-05-21
              start_time: 11:09
              timezone: US/Central
              processes: '**/example.exe,/path/to/example2.exe'
              repeated:
                allDay: true
                frequency: monthly
                monthlyOccurrence: Days
                daysOfMonth:
                  - 1
                  - 2
                  - 3
            - name: policy2
              description: Run monday, tuesday, wednesday. 11:09 - 12:10.
              start_date: 2024-05-21
              start_time: 11:09
              users: admin*,example
              timezone: US/Central
              repeated:
                allDay: false
                startTime: 11:09
                endTime: 12:10
                frequency: weekly
                daysOfWeek:
                  - Monday
                  - Tuesday
                  - Wednesday
    outputs:
      filevantagePolicy: ${exampleFilevantagePolicy}
    

    Create FilevantagePolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FilevantagePolicy(name: string, args: FilevantagePolicyArgs, opts?: CustomResourceOptions);
    @overload
    def FilevantagePolicy(resource_name: str,
                          args: FilevantagePolicyArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def FilevantagePolicy(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          platform_name: Optional[str] = None,
                          description: Optional[str] = None,
                          enabled: Optional[bool] = None,
                          host_groups: Optional[Sequence[str]] = None,
                          name: Optional[str] = None,
                          rule_groups: Optional[Sequence[str]] = None,
                          scheduled_exclusions: Optional[Sequence[FilevantagePolicyScheduledExclusionArgs]] = None)
    func NewFilevantagePolicy(ctx *Context, name string, args FilevantagePolicyArgs, opts ...ResourceOption) (*FilevantagePolicy, error)
    public FilevantagePolicy(string name, FilevantagePolicyArgs args, CustomResourceOptions? opts = null)
    public FilevantagePolicy(String name, FilevantagePolicyArgs args)
    public FilevantagePolicy(String name, FilevantagePolicyArgs args, CustomResourceOptions options)
    
    type: crowdstrike:FilevantagePolicy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FilevantagePolicyArgs
    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 FilevantagePolicyArgs
    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 FilevantagePolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FilevantagePolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FilevantagePolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var filevantagePolicyResource = new Crowdstrike.FilevantagePolicy("filevantagePolicyResource", new()
    {
        PlatformName = "string",
        Description = "string",
        Enabled = false,
        HostGroups = new[]
        {
            "string",
        },
        Name = "string",
        RuleGroups = new[]
        {
            "string",
        },
        ScheduledExclusions = new[]
        {
            new Crowdstrike.Inputs.FilevantagePolicyScheduledExclusionArgs
            {
                Name = "string",
                StartDate = "string",
                StartTime = "string",
                Timezone = "string",
                Description = "string",
                EndDate = "string",
                EndTime = "string",
                Id = "string",
                Processes = "string",
                Repeated = new Crowdstrike.Inputs.FilevantagePolicyScheduledExclusionRepeatedArgs
                {
                    AllDay = false,
                    Frequency = "string",
                    DaysOfMonths = new[]
                    {
                        0,
                    },
                    DaysOfWeeks = new[]
                    {
                        "string",
                    },
                    EndTime = "string",
                    MonthlyOccurrence = "string",
                    StartTime = "string",
                },
                Users = "string",
            },
        },
    });
    
    example, err := crowdstrike.NewFilevantagePolicy(ctx, "filevantagePolicyResource", &crowdstrike.FilevantagePolicyArgs{
    	PlatformName: pulumi.String("string"),
    	Description:  pulumi.String("string"),
    	Enabled:      pulumi.Bool(false),
    	HostGroups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	RuleGroups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ScheduledExclusions: crowdstrike.FilevantagePolicyScheduledExclusionArray{
    		&crowdstrike.FilevantagePolicyScheduledExclusionArgs{
    			Name:        pulumi.String("string"),
    			StartDate:   pulumi.String("string"),
    			StartTime:   pulumi.String("string"),
    			Timezone:    pulumi.String("string"),
    			Description: pulumi.String("string"),
    			EndDate:     pulumi.String("string"),
    			EndTime:     pulumi.String("string"),
    			Id:          pulumi.String("string"),
    			Processes:   pulumi.String("string"),
    			Repeated: &crowdstrike.FilevantagePolicyScheduledExclusionRepeatedArgs{
    				AllDay:    pulumi.Bool(false),
    				Frequency: pulumi.String("string"),
    				DaysOfMonths: pulumi.IntArray{
    					pulumi.Int(0),
    				},
    				DaysOfWeeks: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				EndTime:           pulumi.String("string"),
    				MonthlyOccurrence: pulumi.String("string"),
    				StartTime:         pulumi.String("string"),
    			},
    			Users: pulumi.String("string"),
    		},
    	},
    })
    
    var filevantagePolicyResource = new FilevantagePolicy("filevantagePolicyResource", FilevantagePolicyArgs.builder()
        .platformName("string")
        .description("string")
        .enabled(false)
        .hostGroups("string")
        .name("string")
        .ruleGroups("string")
        .scheduledExclusions(FilevantagePolicyScheduledExclusionArgs.builder()
            .name("string")
            .startDate("string")
            .startTime("string")
            .timezone("string")
            .description("string")
            .endDate("string")
            .endTime("string")
            .id("string")
            .processes("string")
            .repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
                .allDay(false)
                .frequency("string")
                .daysOfMonths(0)
                .daysOfWeeks("string")
                .endTime("string")
                .monthlyOccurrence("string")
                .startTime("string")
                .build())
            .users("string")
            .build())
        .build());
    
    filevantage_policy_resource = crowdstrike.FilevantagePolicy("filevantagePolicyResource",
        platform_name="string",
        description="string",
        enabled=False,
        host_groups=["string"],
        name="string",
        rule_groups=["string"],
        scheduled_exclusions=[{
            "name": "string",
            "start_date": "string",
            "start_time": "string",
            "timezone": "string",
            "description": "string",
            "end_date": "string",
            "end_time": "string",
            "id": "string",
            "processes": "string",
            "repeated": {
                "all_day": False,
                "frequency": "string",
                "days_of_months": [0],
                "days_of_weeks": ["string"],
                "end_time": "string",
                "monthly_occurrence": "string",
                "start_time": "string",
            },
            "users": "string",
        }])
    
    const filevantagePolicyResource = new crowdstrike.FilevantagePolicy("filevantagePolicyResource", {
        platformName: "string",
        description: "string",
        enabled: false,
        hostGroups: ["string"],
        name: "string",
        ruleGroups: ["string"],
        scheduledExclusions: [{
            name: "string",
            startDate: "string",
            startTime: "string",
            timezone: "string",
            description: "string",
            endDate: "string",
            endTime: "string",
            id: "string",
            processes: "string",
            repeated: {
                allDay: false,
                frequency: "string",
                daysOfMonths: [0],
                daysOfWeeks: ["string"],
                endTime: "string",
                monthlyOccurrence: "string",
                startTime: "string",
            },
            users: "string",
        }],
    });
    
    type: crowdstrike:FilevantagePolicy
    properties:
        description: string
        enabled: false
        hostGroups:
            - string
        name: string
        platformName: string
        ruleGroups:
            - string
        scheduledExclusions:
            - description: string
              endDate: string
              endTime: string
              id: string
              name: string
              processes: string
              repeated:
                allDay: false
                daysOfMonths:
                    - 0
                daysOfWeeks:
                    - string
                endTime: string
                frequency: string
                monthlyOccurrence: string
                startTime: string
              startDate: string
              startTime: string
              timezone: string
              users: string
    

    FilevantagePolicy Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The FilevantagePolicy resource accepts the following input properties:

    PlatformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    Description string
    Description of the filevantage policy.
    Enabled bool
    Enable the filevantage policy.
    HostGroups List<string>
    Host Group ids to attach to the filevantage policy.
    Name string
    Name of the filevantage policy.
    RuleGroups List<string>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    ScheduledExclusions List<CrowdStrike.Crowdstrike.Inputs.FilevantagePolicyScheduledExclusion>
    Scheduled exclusions for the filevantage policy.
    PlatformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    Description string
    Description of the filevantage policy.
    Enabled bool
    Enable the filevantage policy.
    HostGroups []string
    Host Group ids to attach to the filevantage policy.
    Name string
    Name of the filevantage policy.
    RuleGroups []string
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    ScheduledExclusions []FilevantagePolicyScheduledExclusionArgs
    Scheduled exclusions for the filevantage policy.
    platformName String
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    description String
    Description of the filevantage policy.
    enabled Boolean
    Enable the filevantage policy.
    hostGroups List<String>
    Host Group ids to attach to the filevantage policy.
    name String
    Name of the filevantage policy.
    ruleGroups List<String>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions List<FilevantagePolicyScheduledExclusion>
    Scheduled exclusions for the filevantage policy.
    platformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    description string
    Description of the filevantage policy.
    enabled boolean
    Enable the filevantage policy.
    hostGroups string[]
    Host Group ids to attach to the filevantage policy.
    name string
    Name of the filevantage policy.
    ruleGroups string[]
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions FilevantagePolicyScheduledExclusion[]
    Scheduled exclusions for the filevantage policy.
    platform_name str
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    description str
    Description of the filevantage policy.
    enabled bool
    Enable the filevantage policy.
    host_groups Sequence[str]
    Host Group ids to attach to the filevantage policy.
    name str
    Name of the filevantage policy.
    rule_groups Sequence[str]
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduled_exclusions Sequence[FilevantagePolicyScheduledExclusionArgs]
    Scheduled exclusions for the filevantage policy.
    platformName String
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    description String
    Description of the filevantage policy.
    enabled Boolean
    Enable the filevantage policy.
    hostGroups List<String>
    Host Group ids to attach to the filevantage policy.
    name String
    Name of the filevantage policy.
    ruleGroups List<String>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions List<Property Map>
    Scheduled exclusions for the filevantage policy.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdated string
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdated string
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdated String
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdated string
    id str
    The provider-assigned unique ID for this managed resource.
    last_updated str
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdated String

    Look up Existing FilevantagePolicy Resource

    Get an existing FilevantagePolicy 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?: FilevantagePolicyState, opts?: CustomResourceOptions): FilevantagePolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            enabled: Optional[bool] = None,
            host_groups: Optional[Sequence[str]] = None,
            last_updated: Optional[str] = None,
            name: Optional[str] = None,
            platform_name: Optional[str] = None,
            rule_groups: Optional[Sequence[str]] = None,
            scheduled_exclusions: Optional[Sequence[FilevantagePolicyScheduledExclusionArgs]] = None) -> FilevantagePolicy
    func GetFilevantagePolicy(ctx *Context, name string, id IDInput, state *FilevantagePolicyState, opts ...ResourceOption) (*FilevantagePolicy, error)
    public static FilevantagePolicy Get(string name, Input<string> id, FilevantagePolicyState? state, CustomResourceOptions? opts = null)
    public static FilevantagePolicy get(String name, Output<String> id, FilevantagePolicyState state, CustomResourceOptions options)
    resources:  _:    type: crowdstrike:FilevantagePolicy    get:      id: ${id}
    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:
    Description string
    Description of the filevantage policy.
    Enabled bool
    Enable the filevantage policy.
    HostGroups List<string>
    Host Group ids to attach to the filevantage policy.
    LastUpdated string
    Name string
    Name of the filevantage policy.
    PlatformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    RuleGroups List<string>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    ScheduledExclusions List<CrowdStrike.Crowdstrike.Inputs.FilevantagePolicyScheduledExclusion>
    Scheduled exclusions for the filevantage policy.
    Description string
    Description of the filevantage policy.
    Enabled bool
    Enable the filevantage policy.
    HostGroups []string
    Host Group ids to attach to the filevantage policy.
    LastUpdated string
    Name string
    Name of the filevantage policy.
    PlatformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    RuleGroups []string
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    ScheduledExclusions []FilevantagePolicyScheduledExclusionArgs
    Scheduled exclusions for the filevantage policy.
    description String
    Description of the filevantage policy.
    enabled Boolean
    Enable the filevantage policy.
    hostGroups List<String>
    Host Group ids to attach to the filevantage policy.
    lastUpdated String
    name String
    Name of the filevantage policy.
    platformName String
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    ruleGroups List<String>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions List<FilevantagePolicyScheduledExclusion>
    Scheduled exclusions for the filevantage policy.
    description string
    Description of the filevantage policy.
    enabled boolean
    Enable the filevantage policy.
    hostGroups string[]
    Host Group ids to attach to the filevantage policy.
    lastUpdated string
    name string
    Name of the filevantage policy.
    platformName string
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    ruleGroups string[]
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions FilevantagePolicyScheduledExclusion[]
    Scheduled exclusions for the filevantage policy.
    description str
    Description of the filevantage policy.
    enabled bool
    Enable the filevantage policy.
    host_groups Sequence[str]
    Host Group ids to attach to the filevantage policy.
    last_updated str
    name str
    Name of the filevantage policy.
    platform_name str
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    rule_groups Sequence[str]
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduled_exclusions Sequence[FilevantagePolicyScheduledExclusionArgs]
    Scheduled exclusions for the filevantage policy.
    description String
    Description of the filevantage policy.
    enabled Boolean
    Enable the filevantage policy.
    hostGroups List<String>
    Host Group ids to attach to the filevantage policy.
    lastUpdated String
    name String
    Name of the filevantage policy.
    platformName String
    Platform for the filevantage policy to manage. (Windows, Mac, Linux)
    ruleGroups List<String>
    Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
    scheduledExclusions List<Property Map>
    Scheduled exclusions for the filevantage policy.

    Supporting Types

    FilevantagePolicyScheduledExclusion, FilevantagePolicyScheduledExclusionArgs

    Name string
    Name of the scheduled exclusion.
    StartDate string
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    StartTime string
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    Timezone string
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    Description string
    Description of the scheduled exclusion.
    EndDate string
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    EndTime string
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    Id string
    Identifier for the scheduled exclusion.
    Processes string
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    Repeated CrowdStrike.Crowdstrike.Inputs.FilevantagePolicyScheduledExclusionRepeated
    Repeated scheduled exclusion
    Users string
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
    Name string
    Name of the scheduled exclusion.
    StartDate string
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    StartTime string
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    Timezone string
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    Description string
    Description of the scheduled exclusion.
    EndDate string
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    EndTime string
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    Id string
    Identifier for the scheduled exclusion.
    Processes string
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    Repeated FilevantagePolicyScheduledExclusionRepeated
    Repeated scheduled exclusion
    Users string
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
    name String
    Name of the scheduled exclusion.
    startDate String
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    startTime String
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    timezone String
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    description String
    Description of the scheduled exclusion.
    endDate String
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    endTime String
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    id String
    Identifier for the scheduled exclusion.
    processes String
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    repeated FilevantagePolicyScheduledExclusionRepeated
    Repeated scheduled exclusion
    users String
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
    name string
    Name of the scheduled exclusion.
    startDate string
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    startTime string
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    timezone string
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    description string
    Description of the scheduled exclusion.
    endDate string
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    endTime string
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    id string
    Identifier for the scheduled exclusion.
    processes string
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    repeated FilevantagePolicyScheduledExclusionRepeated
    Repeated scheduled exclusion
    users string
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
    name str
    Name of the scheduled exclusion.
    start_date str
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    start_time str
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    timezone str
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    description str
    Description of the scheduled exclusion.
    end_date str
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    end_time str
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    id str
    Identifier for the scheduled exclusion.
    processes str
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    repeated FilevantagePolicyScheduledExclusionRepeated
    Repeated scheduled exclusion
    users str
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
    name String
    Name of the scheduled exclusion.
    startDate String
    The start date of the scheduled exclusion. Format: YYYY-MM-DD
    startTime String
    The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
    timezone String
    The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
    description String
    Description of the scheduled exclusion.
    endDate String
    The end date of the scheduled exclusion. Format: YYYY-MM-DD
    endTime String
    The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
    id String
    Identifier for the scheduled exclusion.
    processes String
    A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
    repeated Property Map
    Repeated scheduled exclusion
    users String
    A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin

    FilevantagePolicyScheduledExclusionRepeated, FilevantagePolicyScheduledExclusionRepeatedArgs

    AllDay bool
    If the exclusion is all day.
    Frequency string
    The frequency of the exclusion. Options: daily, weekly, monthly
    DaysOfMonths List<int>
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    DaysOfWeeks List<string>
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    EndTime string
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    MonthlyOccurrence string
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    StartTime string
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    AllDay bool
    If the exclusion is all day.
    Frequency string
    The frequency of the exclusion. Options: daily, weekly, monthly
    DaysOfMonths []int
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    DaysOfWeeks []string
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    EndTime string
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    MonthlyOccurrence string
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    StartTime string
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    allDay Boolean
    If the exclusion is all day.
    frequency String
    The frequency of the exclusion. Options: daily, weekly, monthly
    daysOfMonths List<Integer>
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    daysOfWeeks List<String>
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    endTime String
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    monthlyOccurrence String
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    startTime String
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    allDay boolean
    If the exclusion is all day.
    frequency string
    The frequency of the exclusion. Options: daily, weekly, monthly
    daysOfMonths number[]
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    daysOfWeeks string[]
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    endTime string
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    monthlyOccurrence string
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    startTime string
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    all_day bool
    If the exclusion is all day.
    frequency str
    The frequency of the exclusion. Options: daily, weekly, monthly
    days_of_months Sequence[int]
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    days_of_weeks Sequence[str]
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    end_time str
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    monthly_occurrence str
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    start_time str
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    allDay Boolean
    If the exclusion is all day.
    frequency String
    The frequency of the exclusion. Options: daily, weekly, monthly
    daysOfMonths List<Number>
    The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
    daysOfWeeks List<String>
    The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
    endTime String
    The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
    monthlyOccurrence String
    The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
    startTime String
    The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false

    Import

    filvantage policy can be imported by specifying the policy id.

    $ pulumi import crowdstrike:index/filevantagePolicy:FilevantagePolicy example 7fb858a949034a0cbca175f660f1e769
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    crowdstrike crowdstrike/pulumi-crowdstrike
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the crowdstrike Terraform Provider.
    crowdstrike logo
    CrowdStrike v0.0.7 published on Tuesday, Jan 14, 2025 by CrowdStrike