1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementTime
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementTime

Explore with Pulumi AI

This resource allows you to execute Check Point Time.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";

const example = new checkpoint.ManagementApplicationSite("example", {});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

example = checkpoint.ManagementApplicationSite("example")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := checkpoint.NewManagementApplicationSite(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var example = new Checkpoint.ManagementApplicationSite("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementApplicationSite;
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 ManagementApplicationSite("example");

    }
}
Copy
resources:
  example:
    type: checkpoint:ManagementApplicationSite
Copy

Create ManagementTime Resource

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

Constructor syntax

new ManagementTime(name: string, args?: ManagementTimeArgs, opts?: CustomResourceOptions);
@overload
def ManagementTime(resource_name: str,
                   args: Optional[ManagementTimeArgs] = None,
                   opts: Optional[ResourceOptions] = None)

@overload
def ManagementTime(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   color: Optional[str] = None,
                   comments: Optional[str] = None,
                   end: Optional[Mapping[str, str]] = None,
                   end_never: Optional[bool] = None,
                   hours_ranges: Optional[Sequence[ManagementTimeHoursRangeArgs]] = None,
                   ignore_errors: Optional[bool] = None,
                   ignore_warnings: Optional[bool] = None,
                   management_time_id: Optional[str] = None,
                   name: Optional[str] = None,
                   recurrence: Optional[ManagementTimeRecurrenceArgs] = None,
                   start: Optional[Mapping[str, str]] = None,
                   start_now: Optional[bool] = None,
                   tags: Optional[Sequence[str]] = None)
func NewManagementTime(ctx *Context, name string, args *ManagementTimeArgs, opts ...ResourceOption) (*ManagementTime, error)
public ManagementTime(string name, ManagementTimeArgs? args = null, CustomResourceOptions? opts = null)
public ManagementTime(String name, ManagementTimeArgs args)
public ManagementTime(String name, ManagementTimeArgs args, CustomResourceOptions options)
type: checkpoint:ManagementTime
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ManagementTimeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ManagementTimeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ManagementTimeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ManagementTimeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementTimeArgs
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 managementTimeResource = new Checkpoint.ManagementTime("managementTimeResource", new()
{
    Color = "string",
    Comments = "string",
    End = 
    {
        { "string", "string" },
    },
    EndNever = false,
    HoursRanges = new[]
    {
        new Checkpoint.Inputs.ManagementTimeHoursRangeArgs
        {
            Enabled = false,
            From = "string",
            Index = 0,
            To = "string",
        },
    },
    IgnoreErrors = false,
    IgnoreWarnings = false,
    ManagementTimeId = "string",
    Name = "string",
    Recurrence = new Checkpoint.Inputs.ManagementTimeRecurrenceArgs
    {
        Days = new[]
        {
            "string",
        },
        Month = "string",
        Pattern = "string",
        Weekdays = new[]
        {
            "string",
        },
    },
    Start = 
    {
        { "string", "string" },
    },
    StartNow = false,
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := checkpoint.NewManagementTime(ctx, "managementTimeResource", &checkpoint.ManagementTimeArgs{
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
End: pulumi.StringMap{
"string": pulumi.String("string"),
},
EndNever: pulumi.Bool(false),
HoursRanges: .ManagementTimeHoursRangeArray{
&.ManagementTimeHoursRangeArgs{
Enabled: pulumi.Bool(false),
From: pulumi.String("string"),
Index: pulumi.Float64(0),
To: pulumi.String("string"),
},
},
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementTimeId: pulumi.String("string"),
Name: pulumi.String("string"),
Recurrence: &.ManagementTimeRecurrenceArgs{
Days: pulumi.StringArray{
pulumi.String("string"),
},
Month: pulumi.String("string"),
Pattern: pulumi.String("string"),
Weekdays: pulumi.StringArray{
pulumi.String("string"),
},
},
Start: pulumi.StringMap{
"string": pulumi.String("string"),
},
StartNow: pulumi.Bool(false),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var managementTimeResource = new ManagementTime("managementTimeResource", ManagementTimeArgs.builder()
    .color("string")
    .comments("string")
    .end(Map.of("string", "string"))
    .endNever(false)
    .hoursRanges(ManagementTimeHoursRangeArgs.builder()
        .enabled(false)
        .from("string")
        .index(0)
        .to("string")
        .build())
    .ignoreErrors(false)
    .ignoreWarnings(false)
    .managementTimeId("string")
    .name("string")
    .recurrence(ManagementTimeRecurrenceArgs.builder()
        .days("string")
        .month("string")
        .pattern("string")
        .weekdays("string")
        .build())
    .start(Map.of("string", "string"))
    .startNow(false)
    .tags("string")
    .build());
Copy
management_time_resource = checkpoint.ManagementTime("managementTimeResource",
    color="string",
    comments="string",
    end={
        "string": "string",
    },
    end_never=False,
    hours_ranges=[{
        "enabled": False,
        "from_": "string",
        "index": 0,
        "to": "string",
    }],
    ignore_errors=False,
    ignore_warnings=False,
    management_time_id="string",
    name="string",
    recurrence={
        "days": ["string"],
        "month": "string",
        "pattern": "string",
        "weekdays": ["string"],
    },
    start={
        "string": "string",
    },
    start_now=False,
    tags=["string"])
Copy
const managementTimeResource = new checkpoint.ManagementTime("managementTimeResource", {
    color: "string",
    comments: "string",
    end: {
        string: "string",
    },
    endNever: false,
    hoursRanges: [{
        enabled: false,
        from: "string",
        index: 0,
        to: "string",
    }],
    ignoreErrors: false,
    ignoreWarnings: false,
    managementTimeId: "string",
    name: "string",
    recurrence: {
        days: ["string"],
        month: "string",
        pattern: "string",
        weekdays: ["string"],
    },
    start: {
        string: "string",
    },
    startNow: false,
    tags: ["string"],
});
Copy
type: checkpoint:ManagementTime
properties:
    color: string
    comments: string
    end:
        string: string
    endNever: false
    hoursRanges:
        - enabled: false
          from: string
          index: 0
          to: string
    ignoreErrors: false
    ignoreWarnings: false
    managementTimeId: string
    name: string
    recurrence:
        days:
            - string
        month: string
        pattern: string
        weekdays:
            - string
    start:
        string: string
    startNow: false
    tags:
        - string
Copy

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

Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
End Dictionary<string, string>
End time. Note: Each gateway may interpret this time differently according to its time zone.
EndNever bool
End never.
HoursRanges List<ManagementTimeHoursRange>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
ManagementTimeId string
Name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
Recurrence ManagementTimeRecurrence
Days recurrence.
Start Dictionary<string, string>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
StartNow bool
Start immediately.
Tags List<string>
Collection of tag identifiers.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
End map[string]string
End time. Note: Each gateway may interpret this time differently according to its time zone.
EndNever bool
End never.
HoursRanges []ManagementTimeHoursRangeArgs
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
ManagementTimeId string
Name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
Recurrence ManagementTimeRecurrenceArgs
Days recurrence.
Start map[string]string
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
StartNow bool
Start immediately.
Tags []string
Collection of tag identifiers.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
end Map<String,String>
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever Boolean
End never.
hoursRanges List<ManagementTimeHoursRange>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId String
name String
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrence
Days recurrence.
start Map<String,String>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow Boolean
Start immediately.
tags List<String>
Collection of tag identifiers.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
end {[key: string]: string}
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever boolean
End never.
hoursRanges ManagementTimeHoursRange[]
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId string
name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrence
Days recurrence.
start {[key: string]: string}
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow boolean
Start immediately.
tags string[]
Collection of tag identifiers.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
end Mapping[str, str]
End time. Note: Each gateway may interpret this time differently according to its time zone.
end_never bool
End never.
hours_ranges Sequence[ManagementTimeHoursRangeArgs]
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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_time_id str
name str
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrenceArgs
Days recurrence.
start Mapping[str, str]
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
start_now bool
Start immediately.
tags Sequence[str]
Collection of tag identifiers.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
end Map<String>
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever Boolean
End never.
hoursRanges List<Property Map>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId String
name String
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence Property Map
Days recurrence.
start Map<String>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow Boolean
Start immediately.
tags List<String>
Collection of tag identifiers.

Outputs

All input properties are implicitly available as output properties. Additionally, the ManagementTime 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 str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ManagementTime Resource

Get an existing ManagementTime 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?: ManagementTimeState, opts?: CustomResourceOptions): ManagementTime
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        end: Optional[Mapping[str, str]] = None,
        end_never: Optional[bool] = None,
        hours_ranges: Optional[Sequence[ManagementTimeHoursRangeArgs]] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        management_time_id: Optional[str] = None,
        name: Optional[str] = None,
        recurrence: Optional[ManagementTimeRecurrenceArgs] = None,
        start: Optional[Mapping[str, str]] = None,
        start_now: Optional[bool] = None,
        tags: Optional[Sequence[str]] = None) -> ManagementTime
func GetManagementTime(ctx *Context, name string, id IDInput, state *ManagementTimeState, opts ...ResourceOption) (*ManagementTime, error)
public static ManagementTime Get(string name, Input<string> id, ManagementTimeState? state, CustomResourceOptions? opts = null)
public static ManagementTime get(String name, Output<String> id, ManagementTimeState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementTime    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
End Dictionary<string, string>
End time. Note: Each gateway may interpret this time differently according to its time zone.
EndNever bool
End never.
HoursRanges List<ManagementTimeHoursRange>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
ManagementTimeId string
Name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
Recurrence ManagementTimeRecurrence
Days recurrence.
Start Dictionary<string, string>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
StartNow bool
Start immediately.
Tags List<string>
Collection of tag identifiers.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
End map[string]string
End time. Note: Each gateway may interpret this time differently according to its time zone.
EndNever bool
End never.
HoursRanges []ManagementTimeHoursRangeArgs
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
ManagementTimeId string
Name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
Recurrence ManagementTimeRecurrenceArgs
Days recurrence.
Start map[string]string
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
StartNow bool
Start immediately.
Tags []string
Collection of tag identifiers.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
end Map<String,String>
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever Boolean
End never.
hoursRanges List<ManagementTimeHoursRange>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId String
name String
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrence
Days recurrence.
start Map<String,String>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow Boolean
Start immediately.
tags List<String>
Collection of tag identifiers.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
end {[key: string]: string}
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever boolean
End never.
hoursRanges ManagementTimeHoursRange[]
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId string
name string
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrence
Days recurrence.
start {[key: string]: string}
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow boolean
Start immediately.
tags string[]
Collection of tag identifiers.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
end Mapping[str, str]
End time. Note: Each gateway may interpret this time differently according to its time zone.
end_never bool
End never.
hours_ranges Sequence[ManagementTimeHoursRangeArgs]
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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_time_id str
name str
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence ManagementTimeRecurrenceArgs
Days recurrence.
start Mapping[str, str]
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
start_now bool
Start immediately.
tags Sequence[str]
Collection of tag identifiers.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
end Map<String>
End time. Note: Each gateway may interpret this time differently according to its time zone.
endNever Boolean
End never.
hoursRanges List<Property Map>
Hours recurrence. Note: Each gateway may interpret this time differently according to its time zone.
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.
managementTimeId String
name String
Time object name. Cannot be more than 11 characters. Should be unique in the domain.
recurrence Property Map
Days recurrence.
start Map<String>
Starting time. Note: Each gateway may interpret this time differently according to its time zone.
startNow Boolean
Start immediately.
tags List<String>
Collection of tag identifiers.

Supporting Types

ManagementTimeHoursRange
, ManagementTimeHoursRangeArgs

Enabled bool
Is hour range enabled.
From string
Time in format HH:MM.
Index double
Hour range index.
To string
Time in format HH:MM.
Enabled bool
Is hour range enabled.
From string
Time in format HH:MM.
Index float64
Hour range index.
To string
Time in format HH:MM.
enabled Boolean
Is hour range enabled.
from String
Time in format HH:MM.
index Double
Hour range index.
to String
Time in format HH:MM.
enabled boolean
Is hour range enabled.
from string
Time in format HH:MM.
index number
Hour range index.
to string
Time in format HH:MM.
enabled bool
Is hour range enabled.
from_ str
Time in format HH:MM.
index float
Hour range index.
to str
Time in format HH:MM.
enabled Boolean
Is hour range enabled.
from String
Time in format HH:MM.
index Number
Hour range index.
to String
Time in format HH:MM.

ManagementTimeRecurrence
, ManagementTimeRecurrenceArgs

Days List<string>
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
Month string
Valid on month. Example: "1", "2","12","Any".
Pattern string
Valid on "Daily", "Weekly", "Monthly" base.
Weekdays List<string>
Valid on weekdays. Example: "Sun", "Mon"..."Sat".
Days []string
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
Month string
Valid on month. Example: "1", "2","12","Any".
Pattern string
Valid on "Daily", "Weekly", "Monthly" base.
Weekdays []string
Valid on weekdays. Example: "Sun", "Mon"..."Sat".
days List<String>
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
month String
Valid on month. Example: "1", "2","12","Any".
pattern String
Valid on "Daily", "Weekly", "Monthly" base.
weekdays List<String>
Valid on weekdays. Example: "Sun", "Mon"..."Sat".
days string[]
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
month string
Valid on month. Example: "1", "2","12","Any".
pattern string
Valid on "Daily", "Weekly", "Monthly" base.
weekdays string[]
Valid on weekdays. Example: "Sun", "Mon"..."Sat".
days Sequence[str]
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
month str
Valid on month. Example: "1", "2","12","Any".
pattern str
Valid on "Daily", "Weekly", "Monthly" base.
weekdays Sequence[str]
Valid on weekdays. Example: "Sun", "Mon"..."Sat".
days List<String>
Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].
month String
Valid on month. Example: "1", "2","12","Any".
pattern String
Valid on "Daily", "Weekly", "Monthly" base.
weekdays List<String>
Valid on weekdays. Example: "Sun", "Mon"..."Sat".

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.