published on Thursday, Jul 30, 2026 by checkpointsw
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.
- 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 stringEvent Id - Name string
- Object name.
- Schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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.
- 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 stringEvent Id - Name string
- Object name.
- Schedule
Management
Scheduled Event Schedule Args - Schedule Configuration.schedule blocks are documented below.
- []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_ stringevent_ id - name string
- Object name.
- schedule object
- Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Scheduled StringEvent Id - name String
- Object name.
- schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Scheduled stringEvent Id - name string
- Object name.
- schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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_ strevent_ id - name str
- Object name.
- schedule
Management
Scheduled Event Schedule Args - Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Scheduled StringEvent Id - name String
- Object name.
- schedule Property Map
- Schedule Configuration.schedule blocks are documented below.
- 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) -> ManagementScheduledEventfunc 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.
- 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 stringEvent Id - Name string
- Object name.
- Schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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.
- 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 stringEvent Id - Name string
- Object name.
- Schedule
Management
Scheduled Event Schedule Args - Schedule Configuration.schedule blocks are documented below.
- []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_ stringevent_ id - name string
- Object name.
- schedule object
- Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Scheduled StringEvent Id - name String
- Object name.
- schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Scheduled stringEvent Id - name string
- Object name.
- schedule
Management
Scheduled Event Schedule - Schedule Configuration.schedule blocks are documented below.
- 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_ strevent_ id - name str
- Object name.
- schedule
Management
Scheduled Event Schedule Args - Schedule Configuration.schedule blocks are documented below.
- 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.
- ignore
Errors 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.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Scheduled StringEvent Id - name String
- Object name.
- schedule Property Map
- Schedule Configuration.schedule blocks are documented below.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Supporting Types
ManagementScheduledEventSchedule, ManagementScheduledEventScheduleArgs
- Recurrence
Management
Scheduled Event Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- Recurrence
Management
Scheduled Event Schedule Recurrence - 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
Management
Scheduled Event Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
- recurrence
Management
Scheduled Event Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time string
- Time in format HH:mm.
- recurrence
Management
Scheduled Event Schedule Recurrence - 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.
- Interval
Hours double - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- Interval
Minutes double - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- Interval
Seconds 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.
- Interval
Hours float64 - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- Interval
Minutes float64 - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- Interval
Seconds 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.
- interval
Hours Double - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- interval
Minutes Double - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- interval
Seconds 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.
- 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 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.
- 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.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Thursday, Jul 30, 2026 by checkpointsw