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 Cloud License Scope.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const scope = checkpoint.getManagementCloudLicenseScope({});
import pulumi
import pulumi_checkpoint as checkpoint
scope = checkpoint.get_management_cloud_license_scope()
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.GetManagementCloudLicenseScope(ctx, &checkpoint.GetManagementCloudLicenseScopeArgs{}, 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 scope = Checkpoint.GetManagementCloudLicenseScope.Invoke();
});
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.GetManagementCloudLicenseScopeArgs;
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 scope = CheckpointFunctions.getManagementCloudLicenseScope(GetManagementCloudLicenseScopeArgs.builder()
.build());
}
}
variables:
scope:
fn::invoke:
function: checkpoint:getManagementCloudLicenseScope
arguments: {}
Example coming soon!
Using getManagementCloudLicenseScope
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 getManagementCloudLicenseScope(args: GetManagementCloudLicenseScopeArgs, opts?: InvokeOptions): Promise<GetManagementCloudLicenseScopeResult>
function getManagementCloudLicenseScopeOutput(args: GetManagementCloudLicenseScopeOutputArgs, opts?: InvokeOptions): Output<GetManagementCloudLicenseScopeResult>def get_management_cloud_license_scope(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementCloudLicenseScopeResult
def get_management_cloud_license_scope_output(id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementCloudLicenseScopeResult]func GetManagementCloudLicenseScope(ctx *Context, args *GetManagementCloudLicenseScopeArgs, opts ...InvokeOption) (*GetManagementCloudLicenseScopeResult, error)
func GetManagementCloudLicenseScopeOutput(ctx *Context, args *GetManagementCloudLicenseScopeOutputArgs, opts ...InvokeOption) GetManagementCloudLicenseScopeResultOutput> Note: This function is named GetManagementCloudLicenseScope in the Go SDK.
public static class GetManagementCloudLicenseScope
{
public static Task<GetManagementCloudLicenseScopeResult> InvokeAsync(GetManagementCloudLicenseScopeArgs args, InvokeOptions? opts = null)
public static Output<GetManagementCloudLicenseScopeResult> Invoke(GetManagementCloudLicenseScopeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementCloudLicenseScopeResult> getManagementCloudLicenseScope(GetManagementCloudLicenseScopeArgs args, InvokeOptions options)
public static Output<GetManagementCloudLicenseScopeResult> getManagementCloudLicenseScope(GetManagementCloudLicenseScopeArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementCloudLicenseScope:getManagementCloudLicenseScope
arguments:
# arguments dictionarydata "checkpoint_get_management_cloud_license_scope" "name" {
# arguments
}The following arguments are supported:
- Id string
- Id string
- id string
- id String
- id string
- id str
- id String
getManagementCloudLicenseScope Result
The following output properties are available:
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