Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Use this data source to get information on an existing Check Point Time.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementTime("example", {name: "time1"});
const dataTime = checkpoint.getManagementTimeOutput({
name: example.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementTime("example", name="time1")
data_time = checkpoint.get_management_time_output(name=example.name)
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 {
example, err := checkpoint.NewManagementTime(ctx, "example", &checkpoint.ManagementTimeArgs{
Name: pulumi.String("time1"),
})
if err != nil {
return err
}
_ = checkpoint.LookupManagementTimeOutput(ctx, checkpoint.GetManagementTimeOutputArgs{
Name: example.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementTime("example", new()
{
Name = "time1",
});
var dataTime = Checkpoint.GetManagementTime.Invoke(new()
{
Name = example.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementTime;
import com.pulumi.checkpoint.ManagementTimeArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementTimeArgs;
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 ManagementTime("example", ManagementTimeArgs.builder()
.name("time1")
.build());
final var dataTime = CheckpointFunctions.getManagementTime(GetManagementTimeArgs.builder()
.name(example.name())
.build());
}
}
resources:
example:
type: checkpoint:ManagementTime
properties:
name: time1
variables:
dataTime:
fn::invoke:
function: checkpoint:getManagementTime
arguments:
name: ${example.name}
Using getManagementTime
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagementTime(args: GetManagementTimeArgs, opts?: InvokeOptions): Promise<GetManagementTimeResult>
function getManagementTimeOutput(args: GetManagementTimeOutputArgs, opts?: InvokeOptions): Output<GetManagementTimeResult>def get_management_time(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementTimeResult
def get_management_time_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementTimeResult]func LookupManagementTime(ctx *Context, args *LookupManagementTimeArgs, opts ...InvokeOption) (*LookupManagementTimeResult, error)
func LookupManagementTimeOutput(ctx *Context, args *LookupManagementTimeOutputArgs, opts ...InvokeOption) LookupManagementTimeResultOutput> Note: This function is named LookupManagementTime in the Go SDK.
public static class GetManagementTime
{
public static Task<GetManagementTimeResult> InvokeAsync(GetManagementTimeArgs args, InvokeOptions? opts = null)
public static Output<GetManagementTimeResult> Invoke(GetManagementTimeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementTimeResult> getManagementTime(GetManagementTimeArgs args, InvokeOptions options)
public static Output<GetManagementTimeResult> getManagementTime(GetManagementTimeArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementTime:getManagementTime
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementTime Result
The following output properties are available:
- Color string
- Comments string
- End
Never bool - Ends
List<Get
Management Time End> - Hours
Ranges List<GetManagement Time Hours Range> - Id string
- Recurrences
List<Get
Management Time Recurrence> - Start
Now bool - Starts
List<Get
Management Time Start> - List<string>
- Name string
- Uid string
- Color string
- Comments string
- End
Never bool - Ends
[]Get
Management Time End - Hours
Ranges []GetManagement Time Hours Range - Id string
- Recurrences
[]Get
Management Time Recurrence - Start
Now bool - Starts
[]Get
Management Time Start - []string
- Name string
- Uid string
- color String
- comments String
- end
Never Boolean - ends
List<Get
Management Time End> - hours
Ranges List<GetManagement Time Hours Range> - id String
- recurrences
List<Get
Management Time Recurrence> - start
Now Boolean - starts
List<Get
Management Time Start> - List<String>
- name String
- uid String
- color string
- comments string
- end
Never boolean - ends
Get
Management Time End[] - hours
Ranges GetManagement Time Hours Range[] - id string
- recurrences
Get
Management Time Recurrence[] - start
Now boolean - starts
Get
Management Time Start[] - string[]
- name string
- uid string
- color String
- comments String
- end
Never Boolean - ends List<Property Map>
- hours
Ranges List<Property Map> - id String
- recurrences List<Property Map>
- start
Now Boolean - starts List<Property Map>
- List<String>
- name String
- uid String
Supporting Types
GetManagementTimeEnd
GetManagementTimeHoursRange
GetManagementTimeRecurrence
GetManagementTimeStart
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
