1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementScheduledEvent
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw

    This resource allows you to execute Check Point Scheduled Event.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementScheduledEvent("example", {
        name: "Daily Event",
        comments: "Scheduled event for daily backup operations",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementScheduledEvent("example",
        name="Daily Event",
        comments="Scheduled event for daily backup operations")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementScheduledEvent(ctx, "example", &checkpoint.ManagementScheduledEventArgs{
    			Name:     pulumi.String("Daily Event"),
    			Comments: pulumi.String("Scheduled event for daily backup operations"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Checkpoint.ManagementScheduledEvent("example", new()
        {
            Name = "Daily Event",
            Comments = "Scheduled event for daily backup operations",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementScheduledEvent;
    import com.pulumi.checkpoint.ManagementScheduledEventArgs;
    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 example = new ManagementScheduledEvent("example", ManagementScheduledEventArgs.builder()
                .name("Daily Event")
                .comments("Scheduled event for daily backup operations")
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementScheduledEvent
        properties:
          name: Daily Event
          comments: Scheduled event for daily backup operations
    
    Example coming soon!
    

    Create ManagementScheduledEvent Resource

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

    Constructor syntax

    new ManagementScheduledEvent(name: string, args?: ManagementScheduledEventArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementScheduledEvent(resource_name: str,
                                 args: Optional[ManagementScheduledEventArgs] = None,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementScheduledEvent(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 color: Optional[str] = None,
                                 comments: Optional[str] = None,
                                 ignore_errors: Optional[bool] = None,
                                 ignore_warnings: Optional[bool] = None,
                                 management_scheduled_event_id: Optional[str] = None,
                                 name: Optional[str] = None,
                                 schedule: Optional[ManagementScheduledEventScheduleArgs] = None,
                                 tags: Optional[Sequence[str]] = None)
    func NewManagementScheduledEvent(ctx *Context, name string, args *ManagementScheduledEventArgs, opts ...ResourceOption) (*ManagementScheduledEvent, error)
    public ManagementScheduledEvent(string name, ManagementScheduledEventArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementScheduledEvent(String name, ManagementScheduledEventArgs args)
    public ManagementScheduledEvent(String name, ManagementScheduledEventArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementScheduledEvent
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_scheduled_event" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementScheduledEventArgs
    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 ManagementScheduledEventArgs
    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 ManagementScheduledEventArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementScheduledEventArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementScheduledEventArgs
    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 managementScheduledEventResource = new Checkpoint.ManagementScheduledEvent("managementScheduledEventResource", new()
    {
        Color = "string",
        Comments = "string",
        IgnoreErrors = false,
        IgnoreWarnings = false,
        ManagementScheduledEventId = "string",
        Name = "string",
        Schedule = new Checkpoint.Inputs.ManagementScheduledEventScheduleArgs
        {
            Recurrence = new Checkpoint.Inputs.ManagementScheduledEventScheduleRecurrenceArgs
            {
                Days = new[]
                {
                    "string",
                },
                IntervalHours = 0,
                IntervalMinutes = 0,
                IntervalSeconds = 0,
                Pattern = "string",
                Weekdays = new[]
                {
                    "string",
                },
            },
            Time = "string",
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := checkpoint.NewManagementScheduledEvent(ctx, "managementScheduledEventResource", &checkpoint.ManagementScheduledEventArgs{
    	Color:                      pulumi.String("string"),
    	Comments:                   pulumi.String("string"),
    	IgnoreErrors:               pulumi.Bool(false),
    	IgnoreWarnings:             pulumi.Bool(false),
    	ManagementScheduledEventId: pulumi.String("string"),
    	Name:                       pulumi.String("string"),
    	Schedule: &checkpoint.ManagementScheduledEventScheduleArgs{
    		Recurrence: &checkpoint.ManagementScheduledEventScheduleRecurrenceArgs{
    			Days: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			IntervalHours:   pulumi.Float64(0),
    			IntervalMinutes: pulumi.Float64(0),
    			IntervalSeconds: pulumi.Float64(0),
    			Pattern:         pulumi.String("string"),
    			Weekdays: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		Time: pulumi.String("string"),
    	},
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "checkpoint_management_scheduled_event" "managementScheduledEventResource" {
      lifecycle {
        create_before_destroy = true
      }
      color                         = "string"
      comments                      = "string"
      ignore_errors                 = false
      ignore_warnings               = false
      management_scheduled_event_id = "string"
      name                          = "string"
      schedule = {
        recurrence = {
          days             = ["string"]
          interval_hours   = 0
          interval_minutes = 0
          interval_seconds = 0
          pattern          = "string"
          weekdays         = ["string"]
        }
        time = "string"
      }
      tags = ["string"]
    }
    
    var managementScheduledEventResource = new ManagementScheduledEvent("managementScheduledEventResource", ManagementScheduledEventArgs.builder()
        .color("string")
        .comments("string")
        .ignoreErrors(false)
        .ignoreWarnings(false)
        .managementScheduledEventId("string")
        .name("string")
        .schedule(ManagementScheduledEventScheduleArgs.builder()
            .recurrence(ManagementScheduledEventScheduleRecurrenceArgs.builder()
                .days("string")
                .intervalHours(0.0)
                .intervalMinutes(0.0)
                .intervalSeconds(0.0)
                .pattern("string")
                .weekdays("string")
                .build())
            .time("string")
            .build())
        .tags("string")
        .build());
    
    management_scheduled_event_resource = checkpoint.ManagementScheduledEvent("managementScheduledEventResource",
        color="string",
        comments="string",
        ignore_errors=False,
        ignore_warnings=False,
        management_scheduled_event_id="string",
        name="string",
        schedule={
            "recurrence": {
                "days": ["string"],
                "interval_hours": float(0),
                "interval_minutes": float(0),
                "interval_seconds": float(0),
                "pattern": "string",
                "weekdays": ["string"],
            },
            "time": "string",
        },
        tags=["string"])
    
    const managementScheduledEventResource = new checkpoint.ManagementScheduledEvent("managementScheduledEventResource", {
        color: "string",
        comments: "string",
        ignoreErrors: false,
        ignoreWarnings: false,
        managementScheduledEventId: "string",
        name: "string",
        schedule: {
            recurrence: {
                days: ["string"],
                intervalHours: 0,
                intervalMinutes: 0,
                intervalSeconds: 0,
                pattern: "string",
                weekdays: ["string"],
            },
            time: "string",
        },
        tags: ["string"],
    });
    
    type: checkpoint:ManagementScheduledEvent
    properties:
        color: string
        comments: string
        ignoreErrors: false
        ignoreWarnings: false
        managementScheduledEventId: string
        name: string
        schedule:
            recurrence:
                days:
                    - string
                intervalHours: 0
                intervalMinutes: 0
                intervalSeconds: 0
                pattern: string
                weekdays:
                    - string
            time: string
        tags:
            - string
    

    ManagementScheduledEvent 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 ManagementScheduledEvent resource accepts the following input properties:

    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementScheduledEventId string
    Name string
    Object name.
    Schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementScheduledEventId string
    Name string
    Object name.
    Schedule ManagementScheduledEventScheduleArgs
    Schedule Configuration.schedule blocks are documented below.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_scheduled_event_id string
    name string
    Object name.
    schedule object
    Schedule Configuration.schedule blocks are documented below.
    tags list(string)
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementScheduledEventId String
    name String
    Object name.
    schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementScheduledEventId string
    name string
    Object name.
    schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_scheduled_event_id str
    name str
    Object name.
    schedule ManagementScheduledEventScheduleArgs
    Schedule Configuration.schedule blocks are documented below.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementScheduledEventId String
    name String
    Object name.
    schedule Property Map
    Schedule Configuration.schedule blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Outputs

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

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

    Look up Existing ManagementScheduledEvent Resource

    Get an existing ManagementScheduledEvent 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?: ManagementScheduledEventState, opts?: CustomResourceOptions): ManagementScheduledEvent
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[str] = None,
            comments: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            ignore_warnings: Optional[bool] = None,
            management_scheduled_event_id: Optional[str] = None,
            name: Optional[str] = None,
            schedule: Optional[ManagementScheduledEventScheduleArgs] = None,
            tags: Optional[Sequence[str]] = None) -> ManagementScheduledEvent
    func GetManagementScheduledEvent(ctx *Context, name string, id IDInput, state *ManagementScheduledEventState, opts ...ResourceOption) (*ManagementScheduledEvent, error)
    public static ManagementScheduledEvent Get(string name, Input<string> id, ManagementScheduledEventState? state, CustomResourceOptions? opts = null)
    public static ManagementScheduledEvent get(String name, Output<String> id, ManagementScheduledEventState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementScheduledEvent    get:      id: ${id}
    import {
      to = checkpoint_management_scheduled_event.example
      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:
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementScheduledEventId string
    Name string
    Object name.
    Schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    Tags List<string>
    Collection of tag identifiers.tags blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    IgnoreErrors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    IgnoreWarnings bool
    Apply changes ignoring warnings.
    ManagementScheduledEventId string
    Name string
    Object name.
    Schedule ManagementScheduledEventScheduleArgs
    Schedule Configuration.schedule blocks are documented below.
    Tags []string
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_scheduled_event_id string
    name string
    Object name.
    schedule object
    Schedule Configuration.schedule blocks are documented below.
    tags list(string)
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementScheduledEventId String
    name String
    Object name.
    schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    ignoreErrors boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings boolean
    Apply changes ignoring warnings.
    managementScheduledEventId string
    name string
    Object name.
    schedule ManagementScheduledEventSchedule
    Schedule Configuration.schedule blocks are documented below.
    tags string[]
    Collection of tag identifiers.tags blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    ignore_errors bool
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignore_warnings bool
    Apply changes ignoring warnings.
    management_scheduled_event_id str
    name str
    Object name.
    schedule ManagementScheduledEventScheduleArgs
    Schedule Configuration.schedule blocks are documented below.
    tags Sequence[str]
    Collection of tag identifiers.tags blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    ignoreErrors Boolean
    Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
    ignoreWarnings Boolean
    Apply changes ignoring warnings.
    managementScheduledEventId String
    name String
    Object name.
    schedule Property Map
    Schedule Configuration.schedule blocks are documented below.
    tags List<String>
    Collection of tag identifiers.tags blocks are documented below.

    Supporting Types

    ManagementScheduledEventSchedule, ManagementScheduledEventScheduleArgs

    Recurrence ManagementScheduledEventScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    Recurrence ManagementScheduledEventScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    recurrence object
    Days recurrence.recurrence blocks are documented below.
    time string
    Time in format HH:mm.
    recurrence ManagementScheduledEventScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.
    recurrence ManagementScheduledEventScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time string
    Time in format HH:mm.
    recurrence ManagementScheduledEventScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time str
    Time in format HH:mm.
    recurrence Property Map
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.

    ManagementScheduledEventScheduleRecurrence, ManagementScheduledEventScheduleRecurrenceArgs

    Days List<string>
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    IntervalHours double
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    IntervalMinutes double
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    IntervalSeconds double
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    Pattern string
    Days recurrence pattern.
    Weekdays List<string>
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    Days []string
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    IntervalHours float64
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    IntervalMinutes float64
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    IntervalSeconds float64
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    Pattern string
    Days recurrence pattern.
    Weekdays []string
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    days list(string)
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    interval_hours number
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    interval_minutes number
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    interval_seconds number
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    pattern string
    Days recurrence pattern.
    weekdays list(string)
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    days List<String>
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    intervalHours Double
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    intervalMinutes Double
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    intervalSeconds Double
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    pattern String
    Days recurrence pattern.
    weekdays List<String>
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    days string[]
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    intervalHours number
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    intervalMinutes number
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    intervalSeconds number
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    pattern string
    Days recurrence pattern.
    weekdays string[]
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    days Sequence[str]
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    interval_hours float
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    interval_minutes float
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    interval_seconds float
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    pattern str
    Days recurrence pattern.
    weekdays Sequence[str]
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.
    days List<String>
    Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.days blocks are documented below.
    intervalHours Number
    The amount of hours between updates. Required only when pattern is set to 'Interval'.
    intervalMinutes Number
    The amount of minutes between updates. Required only when pattern is set to 'Interval'.
    intervalSeconds Number
    The amount of seconds between updates. Required only when pattern is set to 'Interval'.
    pattern String
    Days recurrence pattern.
    weekdays List<String>
    Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.weekdays blocks are documented below.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial