1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementSetIpsUpdateSchedule
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw

    Create ManagementSetIpsUpdateSchedule Resource

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

    Constructor syntax

    new ManagementSetIpsUpdateSchedule(name: string, args?: ManagementSetIpsUpdateScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementSetIpsUpdateSchedule(resource_name: str,
                                       args: Optional[ManagementSetIpsUpdateScheduleArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementSetIpsUpdateSchedule(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       enabled: Optional[bool] = None,
                                       management_set_ips_update_schedule_id: Optional[str] = None,
                                       recurrence: Optional[ManagementSetIpsUpdateScheduleRecurrenceArgs] = None,
                                       time: Optional[str] = None)
    func NewManagementSetIpsUpdateSchedule(ctx *Context, name string, args *ManagementSetIpsUpdateScheduleArgs, opts ...ResourceOption) (*ManagementSetIpsUpdateSchedule, error)
    public ManagementSetIpsUpdateSchedule(string name, ManagementSetIpsUpdateScheduleArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementSetIpsUpdateSchedule(String name, ManagementSetIpsUpdateScheduleArgs args)
    public ManagementSetIpsUpdateSchedule(String name, ManagementSetIpsUpdateScheduleArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementSetIpsUpdateSchedule
    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 ManagementSetIpsUpdateScheduleArgs
    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 ManagementSetIpsUpdateScheduleArgs
    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 ManagementSetIpsUpdateScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementSetIpsUpdateScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementSetIpsUpdateScheduleArgs
    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 managementSetIpsUpdateScheduleResource = new Checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", new()
    {
        Enabled = false,
        ManagementSetIpsUpdateScheduleId = "string",
        Recurrence = new Checkpoint.Inputs.ManagementSetIpsUpdateScheduleRecurrenceArgs
        {
            Days = new[]
            {
                "string",
            },
            Minutes = 0,
            Pattern = "string",
            Weekdays = new[]
            {
                "string",
            },
        },
        Time = "string",
    });
    
    example, err := checkpoint.NewManagementSetIpsUpdateSchedule(ctx, "managementSetIpsUpdateScheduleResource", &checkpoint.ManagementSetIpsUpdateScheduleArgs{
    	Enabled:                          pulumi.Bool(false),
    	ManagementSetIpsUpdateScheduleId: pulumi.String("string"),
    	Recurrence: &checkpoint.ManagementSetIpsUpdateScheduleRecurrenceArgs{
    		Days: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Minutes: pulumi.Float64(0),
    		Pattern: pulumi.String("string"),
    		Weekdays: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Time: pulumi.String("string"),
    })
    
    var managementSetIpsUpdateScheduleResource = new ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", ManagementSetIpsUpdateScheduleArgs.builder()
        .enabled(false)
        .managementSetIpsUpdateScheduleId("string")
        .recurrence(ManagementSetIpsUpdateScheduleRecurrenceArgs.builder()
            .days("string")
            .minutes(0.0)
            .pattern("string")
            .weekdays("string")
            .build())
        .time("string")
        .build());
    
    management_set_ips_update_schedule_resource = checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource",
        enabled=False,
        management_set_ips_update_schedule_id="string",
        recurrence={
            "days": ["string"],
            "minutes": float(0),
            "pattern": "string",
            "weekdays": ["string"],
        },
        time="string")
    
    const managementSetIpsUpdateScheduleResource = new checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", {
        enabled: false,
        managementSetIpsUpdateScheduleId: "string",
        recurrence: {
            days: ["string"],
            minutes: 0,
            pattern: "string",
            weekdays: ["string"],
        },
        time: "string",
    });
    
    type: checkpoint:ManagementSetIpsUpdateSchedule
    properties:
        enabled: false
        managementSetIpsUpdateScheduleId: string
        recurrence:
            days:
                - string
            minutes: 0
            pattern: string
            weekdays:
                - string
        time: string
    

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

    Enabled bool
    Enable/Disable IPS Update Schedule.
    ManagementSetIpsUpdateScheduleId string
    Recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    Enabled bool
    Enable/Disable IPS Update Schedule.
    ManagementSetIpsUpdateScheduleId string
    Recurrence ManagementSetIpsUpdateScheduleRecurrenceArgs
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    enabled Boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId String
    recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.
    enabled boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId string
    recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time string
    Time in format HH:mm.
    enabled bool
    Enable/Disable IPS Update Schedule.
    management_set_ips_update_schedule_id str
    recurrence ManagementSetIpsUpdateScheduleRecurrenceArgs
    Days recurrence.recurrence blocks are documented below.
    time str
    Time in format HH:mm.
    enabled Boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId String
    recurrence Property Map
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementSetIpsUpdateSchedule 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 ManagementSetIpsUpdateSchedule Resource

    Get an existing ManagementSetIpsUpdateSchedule 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?: ManagementSetIpsUpdateScheduleState, opts?: CustomResourceOptions): ManagementSetIpsUpdateSchedule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            management_set_ips_update_schedule_id: Optional[str] = None,
            recurrence: Optional[ManagementSetIpsUpdateScheduleRecurrenceArgs] = None,
            time: Optional[str] = None) -> ManagementSetIpsUpdateSchedule
    func GetManagementSetIpsUpdateSchedule(ctx *Context, name string, id IDInput, state *ManagementSetIpsUpdateScheduleState, opts ...ResourceOption) (*ManagementSetIpsUpdateSchedule, error)
    public static ManagementSetIpsUpdateSchedule Get(string name, Input<string> id, ManagementSetIpsUpdateScheduleState? state, CustomResourceOptions? opts = null)
    public static ManagementSetIpsUpdateSchedule get(String name, Output<String> id, ManagementSetIpsUpdateScheduleState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementSetIpsUpdateSchedule    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:
    Enabled bool
    Enable/Disable IPS Update Schedule.
    ManagementSetIpsUpdateScheduleId string
    Recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    Enabled bool
    Enable/Disable IPS Update Schedule.
    ManagementSetIpsUpdateScheduleId string
    Recurrence ManagementSetIpsUpdateScheduleRecurrenceArgs
    Days recurrence.recurrence blocks are documented below.
    Time string
    Time in format HH:mm.
    enabled Boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId String
    recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.
    enabled boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId string
    recurrence ManagementSetIpsUpdateScheduleRecurrence
    Days recurrence.recurrence blocks are documented below.
    time string
    Time in format HH:mm.
    enabled bool
    Enable/Disable IPS Update Schedule.
    management_set_ips_update_schedule_id str
    recurrence ManagementSetIpsUpdateScheduleRecurrenceArgs
    Days recurrence.recurrence blocks are documented below.
    time str
    Time in format HH:mm.
    enabled Boolean
    Enable/Disable IPS Update Schedule.
    managementSetIpsUpdateScheduleId String
    recurrence Property Map
    Days recurrence.recurrence blocks are documented below.
    time String
    Time in format HH:mm.

    Supporting Types

    ManagementSetIpsUpdateScheduleRecurrence, ManagementSetIpsUpdateScheduleRecurrenceArgs

    Days List<string>
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    Minutes double
    Valid on interval. The length of time in minutes between updates.
    Pattern string
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    Weekdays List<string>
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".weekdays blocks are documented below.
    Days []string
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    Minutes float64
    Valid on interval. The length of time in minutes between updates.
    Pattern string
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    Weekdays []string
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".weekdays blocks are documented below.
    days List<String>
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    minutes Double
    Valid on interval. The length of time in minutes between updates.
    pattern String
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    weekdays List<String>
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".weekdays blocks are documented below.
    days string[]
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    minutes number
    Valid on interval. The length of time in minutes between updates.
    pattern string
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    weekdays string[]
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".weekdays blocks are documented below.
    days Sequence[str]
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    minutes float
    Valid on interval. The length of time in minutes between updates.
    pattern str
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    weekdays Sequence[str]
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".weekdays blocks are documented below.
    days List<String>
    Valid on specific days. Multiple options, support range of days in months. Example:["1","3","9-20"].days blocks are documented below.
    minutes Number
    Valid on interval. The length of time in minutes between updates.
    pattern String
    Valid on "Interval", "Daily", "Weekly", "Monthly" base.
    weekdays List<String>
    Valid on weekdays. Example: "Sun", "Mon"..."Sat".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.0.0
    published on Monday, Mar 30, 2026 by checkpointsw
      Try Pulumi Cloud free. Your team will thank you.