checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw
checkpoint.getManagementDataServiceIcmp6
Explore with Pulumi AI
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Service Icmp6.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const serviceIcmp6 = new checkpoint.ManagementServiceIcmp6("serviceIcmp6", {});
const dataServiceIcmp6 = checkpoint.getManagementDataServiceIcmp6Output({
name: serviceIcmp6.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
service_icmp6 = checkpoint.ManagementServiceIcmp6("serviceIcmp6")
data_service_icmp6 = checkpoint.get_management_data_service_icmp6_output(name=service_icmp6.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 {
serviceIcmp6, err := checkpoint.NewManagementServiceIcmp6(ctx, "serviceIcmp6", nil)
if err != nil {
return err
}
_ = checkpoint.GetManagementDataServiceIcmp6Output(ctx, checkpoint.GetManagementDataServiceIcmp6OutputArgs{
Name: serviceIcmp6.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var serviceIcmp6 = new Checkpoint.ManagementServiceIcmp6("serviceIcmp6");
var dataServiceIcmp6 = Checkpoint.GetManagementDataServiceIcmp6.Invoke(new()
{
Name = serviceIcmp6.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementServiceIcmp6;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataServiceIcmp6Args;
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 serviceIcmp6 = new ManagementServiceIcmp6("serviceIcmp6");
final var dataServiceIcmp6 = CheckpointFunctions.getManagementDataServiceIcmp6(GetManagementDataServiceIcmp6Args.builder()
.name(serviceIcmp6.name())
.build());
}
}
resources:
serviceIcmp6:
type: checkpoint:ManagementServiceIcmp6
variables:
dataServiceIcmp6:
fn::invoke:
function: checkpoint:getManagementDataServiceIcmp6
arguments:
name: ${serviceIcmp6.name}
Using getManagementDataServiceIcmp6
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 getManagementDataServiceIcmp6(args: GetManagementDataServiceIcmp6Args, opts?: InvokeOptions): Promise<GetManagementDataServiceIcmp6Result>
function getManagementDataServiceIcmp6Output(args: GetManagementDataServiceIcmp6OutputArgs, opts?: InvokeOptions): Output<GetManagementDataServiceIcmp6Result>
def get_management_data_service_icmp6(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataServiceIcmp6Result
def get_management_data_service_icmp6_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataServiceIcmp6Result]
func GetManagementDataServiceIcmp6(ctx *Context, args *GetManagementDataServiceIcmp6Args, opts ...InvokeOption) (*GetManagementDataServiceIcmp6Result, error)
func GetManagementDataServiceIcmp6Output(ctx *Context, args *GetManagementDataServiceIcmp6OutputArgs, opts ...InvokeOption) GetManagementDataServiceIcmp6ResultOutput
> Note: This function is named GetManagementDataServiceIcmp6
in the Go SDK.
public static class GetManagementDataServiceIcmp6
{
public static Task<GetManagementDataServiceIcmp6Result> InvokeAsync(GetManagementDataServiceIcmp6Args args, InvokeOptions? opts = null)
public static Output<GetManagementDataServiceIcmp6Result> Invoke(GetManagementDataServiceIcmp6InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagementDataServiceIcmp6Result> getManagementDataServiceIcmp6(GetManagementDataServiceIcmp6Args args, InvokeOptions options)
public static Output<GetManagementDataServiceIcmp6Result> getManagementDataServiceIcmp6(GetManagementDataServiceIcmp6Args args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataServiceIcmp6:getManagementDataServiceIcmp6
arguments:
# arguments dictionary
The following arguments are supported:
getManagementDataServiceIcmp6 Result
The following output properties are available:
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw