checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
checkpoint.getManagementDataHttpsLayer
Start a Neo task
Explain and create a checkpoint.getManagementDataHttpsLayer resource
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Https Layer.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const httpsLayer = new checkpoint.ManagementHttpsLayer("httpsLayer", {});
const dataHttpsLayer = checkpoint.getManagementDataHttpsLayerOutput({
name: httpsLayer.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
https_layer = checkpoint.ManagementHttpsLayer("httpsLayer")
data_https_layer = checkpoint.get_management_data_https_layer_output(name=https_layer.name)
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 {
httpsLayer, err := checkpoint.NewManagementHttpsLayer(ctx, "httpsLayer", nil)
if err != nil {
return err
}
_ = checkpoint.GetManagementDataHttpsLayerOutput(ctx, checkpoint.GetManagementDataHttpsLayerOutputArgs{
Name: httpsLayer.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var httpsLayer = new Checkpoint.ManagementHttpsLayer("httpsLayer");
var dataHttpsLayer = Checkpoint.GetManagementDataHttpsLayer.Invoke(new()
{
Name = httpsLayer.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementHttpsLayer;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataHttpsLayerArgs;
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 httpsLayer = new ManagementHttpsLayer("httpsLayer");
final var dataHttpsLayer = CheckpointFunctions.getManagementDataHttpsLayer(GetManagementDataHttpsLayerArgs.builder()
.name(httpsLayer.name())
.build());
}
}
resources:
httpsLayer:
type: checkpoint:ManagementHttpsLayer
variables:
dataHttpsLayer:
fn::invoke:
function: checkpoint:getManagementDataHttpsLayer
arguments:
name: ${httpsLayer.name}
Using getManagementDataHttpsLayer
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 getManagementDataHttpsLayer(args: GetManagementDataHttpsLayerArgs, opts?: InvokeOptions): Promise<GetManagementDataHttpsLayerResult>
function getManagementDataHttpsLayerOutput(args: GetManagementDataHttpsLayerOutputArgs, opts?: InvokeOptions): Output<GetManagementDataHttpsLayerResult>def get_management_data_https_layer(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataHttpsLayerResult
def get_management_data_https_layer_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataHttpsLayerResult]func GetManagementDataHttpsLayer(ctx *Context, args *GetManagementDataHttpsLayerArgs, opts ...InvokeOption) (*GetManagementDataHttpsLayerResult, error)
func GetManagementDataHttpsLayerOutput(ctx *Context, args *GetManagementDataHttpsLayerOutputArgs, opts ...InvokeOption) GetManagementDataHttpsLayerResultOutput> Note: This function is named GetManagementDataHttpsLayer in the Go SDK.
public static class GetManagementDataHttpsLayer
{
public static Task<GetManagementDataHttpsLayerResult> InvokeAsync(GetManagementDataHttpsLayerArgs args, InvokeOptions? opts = null)
public static Output<GetManagementDataHttpsLayerResult> Invoke(GetManagementDataHttpsLayerInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementDataHttpsLayerResult> getManagementDataHttpsLayer(GetManagementDataHttpsLayerArgs args, InvokeOptions options)
public static Output<GetManagementDataHttpsLayerResult> getManagementDataHttpsLayer(GetManagementDataHttpsLayerArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataHttpsLayer:getManagementDataHttpsLayer
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementDataHttpsLayer 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.
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
