checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
checkpoint.getManagementDataServiceDceRpc
Start a Neo task
Explain and create a checkpoint.getManagementDataServiceDceRpc 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 Service Dce Rpc.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const serviceDceRpc = new checkpoint.ManagementServiceDceRpc("serviceDceRpc", {interfaceUuid: "97aeb460-9aea-11d5-bd16-0090272ccb30"});
const dataServiceDceRpc = checkpoint.getManagementDataServiceDceRpcOutput({
name: serviceDceRpc.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
service_dce_rpc = checkpoint.ManagementServiceDceRpc("serviceDceRpc", interface_uuid="97aeb460-9aea-11d5-bd16-0090272ccb30")
data_service_dce_rpc = checkpoint.get_management_data_service_dce_rpc_output(name=service_dce_rpc.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 {
serviceDceRpc, err := checkpoint.NewManagementServiceDceRpc(ctx, "serviceDceRpc", &checkpoint.ManagementServiceDceRpcArgs{
InterfaceUuid: pulumi.String("97aeb460-9aea-11d5-bd16-0090272ccb30"),
})
if err != nil {
return err
}
_ = checkpoint.GetManagementDataServiceDceRpcOutput(ctx, checkpoint.GetManagementDataServiceDceRpcOutputArgs{
Name: serviceDceRpc.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var serviceDceRpc = new Checkpoint.ManagementServiceDceRpc("serviceDceRpc", new()
{
InterfaceUuid = "97aeb460-9aea-11d5-bd16-0090272ccb30",
});
var dataServiceDceRpc = Checkpoint.GetManagementDataServiceDceRpc.Invoke(new()
{
Name = serviceDceRpc.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementServiceDceRpc;
import com.pulumi.checkpoint.ManagementServiceDceRpcArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementDataServiceDceRpcArgs;
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 serviceDceRpc = new ManagementServiceDceRpc("serviceDceRpc", ManagementServiceDceRpcArgs.builder()
.interfaceUuid("97aeb460-9aea-11d5-bd16-0090272ccb30")
.build());
final var dataServiceDceRpc = CheckpointFunctions.getManagementDataServiceDceRpc(GetManagementDataServiceDceRpcArgs.builder()
.name(serviceDceRpc.name())
.build());
}
}
resources:
serviceDceRpc:
type: checkpoint:ManagementServiceDceRpc
properties:
interfaceUuid: 97aeb460-9aea-11d5-bd16-0090272ccb30
variables:
dataServiceDceRpc:
fn::invoke:
function: checkpoint:getManagementDataServiceDceRpc
arguments:
name: ${serviceDceRpc.name}
Using getManagementDataServiceDceRpc
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 getManagementDataServiceDceRpc(args: GetManagementDataServiceDceRpcArgs, opts?: InvokeOptions): Promise<GetManagementDataServiceDceRpcResult>
function getManagementDataServiceDceRpcOutput(args: GetManagementDataServiceDceRpcOutputArgs, opts?: InvokeOptions): Output<GetManagementDataServiceDceRpcResult>def get_management_data_service_dce_rpc(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementDataServiceDceRpcResult
def get_management_data_service_dce_rpc_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataServiceDceRpcResult]func GetManagementDataServiceDceRpc(ctx *Context, args *GetManagementDataServiceDceRpcArgs, opts ...InvokeOption) (*GetManagementDataServiceDceRpcResult, error)
func GetManagementDataServiceDceRpcOutput(ctx *Context, args *GetManagementDataServiceDceRpcOutputArgs, opts ...InvokeOption) GetManagementDataServiceDceRpcResultOutput> Note: This function is named GetManagementDataServiceDceRpc in the Go SDK.
public static class GetManagementDataServiceDceRpc
{
public static Task<GetManagementDataServiceDceRpcResult> InvokeAsync(GetManagementDataServiceDceRpcArgs args, InvokeOptions? opts = null)
public static Output<GetManagementDataServiceDceRpcResult> Invoke(GetManagementDataServiceDceRpcInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementDataServiceDceRpcResult> getManagementDataServiceDceRpc(GetManagementDataServiceDceRpcArgs args, InvokeOptions options)
public static Output<GetManagementDataServiceDceRpcResult> getManagementDataServiceDceRpc(GetManagementDataServiceDceRpcArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementDataServiceDceRpc:getManagementDataServiceDceRpc
arguments:
# arguments dictionaryThe following arguments are supported:
getManagementDataServiceDceRpc Result
The following output properties are available:
- Color string
- Comments string
- Groups List<string>
- Id string
- Interface
Uuid string - Keep
Connections boolOpen After Policy Installation - List<string>
- Name string
- Uid string
- Color string
- Comments string
- Groups []string
- Id string
- Interface
Uuid string - Keep
Connections boolOpen After Policy Installation - []string
- Name string
- Uid string
- color String
- comments String
- groups List<String>
- id String
- interface
Uuid String - keep
Connections BooleanOpen After Policy Installation - List<String>
- name String
- uid String
- color string
- comments string
- groups string[]
- id string
- interface
Uuid string - keep
Connections booleanOpen After Policy Installation - string[]
- name string
- uid string
- color str
- comments str
- groups Sequence[str]
- id str
- interface_
uuid str - keep_
connections_ boolopen_ after_ policy_ installation - Sequence[str]
- name str
- uid str
- color String
- comments String
- groups List<String>
- id String
- interface
Uuid String - keep
Connections BooleanOpen After Policy Installation - List<String>
- name String
- uid String
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
