Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
Use this data source to get information on an existing Check Point Requirement.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const dataTest = checkpoint.getManagementRequirement({
name: "requirement1",
});
import pulumi
import pulumi_checkpoint as checkpoint
data_test = checkpoint.get_management_requirement(name="requirement1")
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.LookupManagementRequirement(ctx, &checkpoint.LookupManagementRequirementArgs{
Name: pulumi.StringRef("requirement1"),
}, nil)
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 dataTest = Checkpoint.GetManagementRequirement.Invoke(new()
{
Name = "requirement1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementRequirementArgs;
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) {
final var dataTest = CheckpointFunctions.getManagementRequirement(GetManagementRequirementArgs.builder()
.name("requirement1")
.build());
}
}
variables:
dataTest:
fn::invoke:
function: checkpoint:getManagementRequirement
arguments:
name: requirement1
Example coming soon!
Using getManagementRequirement
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 getManagementRequirement(args: GetManagementRequirementArgs, opts?: InvokeOptions): Promise<GetManagementRequirementResult>
function getManagementRequirementOutput(args: GetManagementRequirementOutputArgs, opts?: InvokeOptions): Output<GetManagementRequirementResult>def get_management_requirement(id: Optional[str] = None,
name: Optional[str] = None,
regulation: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementRequirementResult
def get_management_requirement_output(id: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
regulation: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementRequirementResult]func LookupManagementRequirement(ctx *Context, args *LookupManagementRequirementArgs, opts ...InvokeOption) (*LookupManagementRequirementResult, error)
func LookupManagementRequirementOutput(ctx *Context, args *LookupManagementRequirementOutputArgs, opts ...InvokeOption) LookupManagementRequirementResultOutput> Note: This function is named LookupManagementRequirement in the Go SDK.
public static class GetManagementRequirement
{
public static Task<GetManagementRequirementResult> InvokeAsync(GetManagementRequirementArgs args, InvokeOptions? opts = null)
public static Output<GetManagementRequirementResult> Invoke(GetManagementRequirementInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementRequirementResult> getManagementRequirement(GetManagementRequirementArgs args, InvokeOptions options)
public static Output<GetManagementRequirementResult> getManagementRequirement(GetManagementRequirementArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementRequirement:getManagementRequirement
arguments:
# arguments dictionarydata "checkpoint_get_management_requirement" "name" {
# arguments
}The following arguments are supported:
- Id string
- Name string
- Requirement name.
- Regulation string
- The relevant regulation of the requirement, identified by name.
- Id string
- Name string
- Requirement name.
- Regulation string
- The relevant regulation of the requirement, identified by name.
- id string
- name string
- Requirement name.
- regulation string
- The relevant regulation of the requirement, identified by name.
- id String
- name String
- Requirement name.
- regulation String
- The relevant regulation of the requirement, identified by name.
- id string
- name string
- Requirement name.
- regulation string
- The relevant regulation of the requirement, identified by name.
- id str
- name str
- Requirement name.
- regulation str
- The relevant regulation of the requirement, identified by name.
- id String
- name String
- Requirement name.
- regulation String
- The relevant regulation of the requirement, identified by name.
getManagementRequirement Result
The following output properties are available:
- Best
Practices List<string> - Color string
- Comments string
- Icon string
- Id string
- Score double
- Score
Level string - List<string>
- Uid string
- User
Defined bool - Name string
- Regulation string
- Best
Practices []string - Color string
- Comments string
- Icon string
- Id string
- Score float64
- Score
Level string - []string
- Uid string
- User
Defined bool - Name string
- Regulation string
- best_
practices list(string) - color string
- comments string
- icon string
- id string
- score number
- score_
level string - list(string)
- uid string
- user_
defined bool - name string
- regulation string
- best
Practices List<String> - color String
- comments String
- icon String
- id String
- score Double
- score
Level String - List<String>
- uid String
- user
Defined Boolean - name String
- regulation String
- best
Practices string[] - color string
- comments string
- icon string
- id string
- score number
- score
Level string - string[]
- uid string
- user
Defined boolean - name string
- regulation string
- best_
practices Sequence[str] - color str
- comments str
- icon str
- id str
- score float
- score_
level str - Sequence[str]
- uid str
- user_
defined bool - name str
- regulation str
- best
Practices List<String> - color String
- comments String
- icon String
- id String
- score Number
- score
Level String - List<String>
- uid String
- user
Defined Boolean - name String
- regulation String
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw