1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. getManagementDataServiceOther
Viewing docs for checkpoint 3.1.0
published on Saturday, Jun 6, 2026 by checkpointsw
Viewing docs for checkpoint 3.1.0
published on Saturday, Jun 6, 2026 by checkpointsw

    Use this data source to get information on an existing Check Point Service Other.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const serviceOther = new checkpoint.ManagementServiceOther("service_other", {
        name: "service other",
        keepConnectionsOpenAfterPolicyInstallation: false,
        sessionTimeout: 100,
        matchForAny: true,
        syncConnectionsOnCluster: true,
        ipProtocol: 51,
        aggressiveAging: {
            useDefaultTimeout: true,
            enable: true,
            defaultTimeout: 600,
            timeout: 600,
        },
    });
    const dataServiceOther = checkpoint.getManagementDataServiceOtherOutput({
        name: serviceOther.name,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    service_other = checkpoint.ManagementServiceOther("service_other",
        name="service other",
        keep_connections_open_after_policy_installation=False,
        session_timeout=100,
        match_for_any=True,
        sync_connections_on_cluster=True,
        ip_protocol=51,
        aggressive_aging={
            "use_default_timeout": True,
            "enable": True,
            "default_timeout": 600,
            "timeout": 600,
        })
    data_service_other = checkpoint.get_management_data_service_other_output(name=service_other.name)
    
    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 {
    		serviceOther, err := checkpoint.NewManagementServiceOther(ctx, "service_other", &checkpoint.ManagementServiceOtherArgs{
    			Name: pulumi.String("service other"),
    			KeepConnectionsOpenAfterPolicyInstallation: pulumi.Bool(false),
    			SessionTimeout:           pulumi.Float64(100),
    			MatchForAny:              pulumi.Bool(true),
    			SyncConnectionsOnCluster: pulumi.Bool(true),
    			IpProtocol:               pulumi.Float64(51),
    			AggressiveAging: &checkpoint.ManagementServiceOtherAggressiveAgingArgs{
    				UseDefaultTimeout: pulumi.Bool(true),
    				Enable:            pulumi.Bool(true),
    				DefaultTimeout:    pulumi.Float64(600),
    				Timeout:           pulumi.Float64(600),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_ = checkpoint.GetManagementDataServiceOtherOutput(ctx, checkpoint.GetManagementDataServiceOtherOutputArgs{
    			Name: serviceOther.Name,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var serviceOther = new Checkpoint.ManagementServiceOther("service_other", new()
        {
            Name = "service other",
            KeepConnectionsOpenAfterPolicyInstallation = false,
            SessionTimeout = 100,
            MatchForAny = true,
            SyncConnectionsOnCluster = true,
            IpProtocol = 51,
            AggressiveAging = new Checkpoint.Inputs.ManagementServiceOtherAggressiveAgingArgs
            {
                UseDefaultTimeout = true,
                Enable = true,
                DefaultTimeout = 600,
                Timeout = 600,
            },
        });
    
        var dataServiceOther = Checkpoint.GetManagementDataServiceOther.Invoke(new()
        {
            Name = serviceOther.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementServiceOther;
    import com.pulumi.checkpoint.ManagementServiceOtherArgs;
    import com.pulumi.checkpoint.inputs.ManagementServiceOtherAggressiveAgingArgs;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementDataServiceOtherArgs;
    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 serviceOther = new ManagementServiceOther("serviceOther", ManagementServiceOtherArgs.builder()
                .name("service other")
                .keepConnectionsOpenAfterPolicyInstallation(false)
                .sessionTimeout(100.0)
                .matchForAny(true)
                .syncConnectionsOnCluster(true)
                .ipProtocol(51.0)
                .aggressiveAging(ManagementServiceOtherAggressiveAgingArgs.builder()
                    .useDefaultTimeout(true)
                    .enable(true)
                    .defaultTimeout(600.0)
                    .timeout(600.0)
                    .build())
                .build());
    
            final var dataServiceOther = CheckpointFunctions.getManagementDataServiceOther(GetManagementDataServiceOtherArgs.builder()
                .name(serviceOther.name())
                .build());
    
        }
    }
    
    resources:
      serviceOther:
        type: checkpoint:ManagementServiceOther
        name: service_other
        properties:
          name: service other
          keepConnectionsOpenAfterPolicyInstallation: false
          sessionTimeout: 100
          matchForAny: true
          syncConnectionsOnCluster: true
          ipProtocol: 51
          aggressiveAging:
            useDefaultTimeout: true
            enable: true
            defaultTimeout: 600
            timeout: 600
    variables:
      dataServiceOther:
        fn::invoke:
          function: checkpoint:getManagementDataServiceOther
          arguments:
            name: ${serviceOther.name}
    
    Example coming soon!
    

    Using getManagementDataServiceOther

    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 getManagementDataServiceOther(args: GetManagementDataServiceOtherArgs, opts?: InvokeOptions): Promise<GetManagementDataServiceOtherResult>
    function getManagementDataServiceOtherOutput(args: GetManagementDataServiceOtherOutputArgs, opts?: InvokeOptions): Output<GetManagementDataServiceOtherResult>
    def get_management_data_service_other(comments: Optional[str] = None,
                                          id: Optional[str] = None,
                                          name: Optional[str] = None,
                                          uid: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetManagementDataServiceOtherResult
    def get_management_data_service_other_output(comments: pulumi.Input[Optional[str]] = None,
                                          id: pulumi.Input[Optional[str]] = None,
                                          name: pulumi.Input[Optional[str]] = None,
                                          uid: pulumi.Input[Optional[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetManagementDataServiceOtherResult]
    func GetManagementDataServiceOther(ctx *Context, args *GetManagementDataServiceOtherArgs, opts ...InvokeOption) (*GetManagementDataServiceOtherResult, error)
    func GetManagementDataServiceOtherOutput(ctx *Context, args *GetManagementDataServiceOtherOutputArgs, opts ...InvokeOption) GetManagementDataServiceOtherResultOutput

    > Note: This function is named GetManagementDataServiceOther in the Go SDK.

    public static class GetManagementDataServiceOther 
    {
        public static Task<GetManagementDataServiceOtherResult> InvokeAsync(GetManagementDataServiceOtherArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementDataServiceOtherResult> Invoke(GetManagementDataServiceOtherInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementDataServiceOtherResult> getManagementDataServiceOther(GetManagementDataServiceOtherArgs args, InvokeOptions options)
    public static Output<GetManagementDataServiceOtherResult> getManagementDataServiceOther(GetManagementDataServiceOtherArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementDataServiceOther:getManagementDataServiceOther
      arguments:
        # arguments dictionary
    data "checkpoint_getmanagementdataserviceother" "name" {
        # arguments
    }

    The following arguments are supported:

    Comments string
    Comments string.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    Comments string
    Comments string.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    comments string
    Comments string.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    comments String
    Comments string.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.
    comments string
    Comments string.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    comments str
    Comments string.
    id str
    name str
    Object name.
    uid str
    Object unique identifier.
    comments String
    Comments string.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.

    getManagementDataServiceOther Result

    The following output properties are available:

    Supporting Types

    GetManagementDataServiceOtherAggressiveAging

    DefaultTimeout double
    Default aggressive aging timeout in seconds.
    Enable bool
    Timeout double
    Aggressive aging timeout in seconds.
    UseDefaultTimeout bool
    DefaultTimeout float64
    Default aggressive aging timeout in seconds.
    Enable bool
    Timeout float64
    Aggressive aging timeout in seconds.
    UseDefaultTimeout bool
    default_timeout number
    Default aggressive aging timeout in seconds.
    enable bool
    timeout number
    Aggressive aging timeout in seconds.
    use_default_timeout bool
    defaultTimeout Double
    Default aggressive aging timeout in seconds.
    enable Boolean
    timeout Double
    Aggressive aging timeout in seconds.
    useDefaultTimeout Boolean
    defaultTimeout number
    Default aggressive aging timeout in seconds.
    enable boolean
    timeout number
    Aggressive aging timeout in seconds.
    useDefaultTimeout boolean
    default_timeout float
    Default aggressive aging timeout in seconds.
    enable bool
    timeout float
    Aggressive aging timeout in seconds.
    use_default_timeout bool
    defaultTimeout Number
    Default aggressive aging timeout in seconds.
    enable Boolean
    timeout Number
    Aggressive aging timeout in seconds.
    useDefaultTimeout Boolean

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.1.0
    published on Saturday, Jun 6, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial