1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaDns
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw
Viewing docs for checkpoint 3.2.0
published on Monday, Jun 15, 2026 by checkpointsw

    This resource allows you to execute Check Point Dns.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaDns("example", {
        primary: "1.2.3.4",
        secondary: "2.3.4.5",
        tertiary: "3.4.5.6",
        suffix: "checkpoint.com",
        listeningInterfaces: ["all"],
        forwardingDomains: [{
            suffix: "google.com",
            primary: "1.1.1.1",
            secondary: "2.2.2.2",
            tertiary: "4.4.2.2",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaDns("example",
        primary="1.2.3.4",
        secondary="2.3.4.5",
        tertiary="3.4.5.6",
        suffix="checkpoint.com",
        listening_interfaces=["all"],
        forwarding_domains=[{
            "suffix": "google.com",
            "primary": "1.1.1.1",
            "secondary": "2.2.2.2",
            "tertiary": "4.4.2.2",
        }])
    
    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.NewGaiaDns(ctx, "example", &checkpoint.GaiaDnsArgs{
    			Primary:   pulumi.String("1.2.3.4"),
    			Secondary: pulumi.String("2.3.4.5"),
    			Tertiary:  pulumi.String("3.4.5.6"),
    			Suffix:    pulumi.String("checkpoint.com"),
    			ListeningInterfaces: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			ForwardingDomains: checkpoint.GaiaDnsForwardingDomainArray{
    				&checkpoint.GaiaDnsForwardingDomainArgs{
    					Suffix:    pulumi.String("google.com"),
    					Primary:   pulumi.String("1.1.1.1"),
    					Secondary: pulumi.String("2.2.2.2"),
    					Tertiary:  pulumi.String("4.4.2.2"),
    				},
    			},
    		})
    		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 example = new Checkpoint.GaiaDns("example", new()
        {
            Primary = "1.2.3.4",
            Secondary = "2.3.4.5",
            Tertiary = "3.4.5.6",
            Suffix = "checkpoint.com",
            ListeningInterfaces = new[]
            {
                "all",
            },
            ForwardingDomains = new[]
            {
                new Checkpoint.Inputs.GaiaDnsForwardingDomainArgs
                {
                    Suffix = "google.com",
                    Primary = "1.1.1.1",
                    Secondary = "2.2.2.2",
                    Tertiary = "4.4.2.2",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaDns;
    import com.pulumi.checkpoint.GaiaDnsArgs;
    import com.pulumi.checkpoint.inputs.GaiaDnsForwardingDomainArgs;
    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 example = new GaiaDns("example", GaiaDnsArgs.builder()
                .primary("1.2.3.4")
                .secondary("2.3.4.5")
                .tertiary("3.4.5.6")
                .suffix("checkpoint.com")
                .listeningInterfaces("all")
                .forwardingDomains(GaiaDnsForwardingDomainArgs.builder()
                    .suffix("google.com")
                    .primary("1.1.1.1")
                    .secondary("2.2.2.2")
                    .tertiary("4.4.2.2")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaDns
        properties:
          primary: 1.2.3.4
          secondary: 2.3.4.5
          tertiary: 3.4.5.6
          suffix: checkpoint.com
          listeningInterfaces:
            - all
          forwardingDomains:
            - suffix: google.com
              primary: 1.1.1.1
              secondary: 2.2.2.2
              tertiary: 4.4.2.2
    
    Example coming soon!
    

    Create GaiaDns Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GaiaDns(name: string, args?: GaiaDnsArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaDns(resource_name: str,
                args: Optional[GaiaDnsArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaDns(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                debug: Optional[bool] = None,
                forwarding_domains: Optional[Sequence[GaiaDnsForwardingDomainArgs]] = None,
                gaia_dns_id: Optional[str] = None,
                listening_interfaces: Optional[Sequence[str]] = None,
                member_id: Optional[str] = None,
                primary: Optional[str] = None,
                secondary: Optional[str] = None,
                suffix: Optional[str] = None,
                tertiary: Optional[str] = None,
                virtual_system_id: Optional[float] = None)
    func NewGaiaDns(ctx *Context, name string, args *GaiaDnsArgs, opts ...ResourceOption) (*GaiaDns, error)
    public GaiaDns(string name, GaiaDnsArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaDns(String name, GaiaDnsArgs args)
    public GaiaDns(String name, GaiaDnsArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaDns
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiadns" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaDnsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GaiaDnsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GaiaDnsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaDnsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaDnsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var gaiaDnsResource = new Checkpoint.GaiaDns("gaiaDnsResource", new()
    {
        Debug = false,
        ForwardingDomains = new[]
        {
            new Checkpoint.Inputs.GaiaDnsForwardingDomainArgs
            {
                Primary = "string",
                Secondary = "string",
                Suffix = "string",
                Tertiary = "string",
            },
        },
        GaiaDnsId = "string",
        ListeningInterfaces = new[]
        {
            "string",
        },
        MemberId = "string",
        Primary = "string",
        Secondary = "string",
        Suffix = "string",
        Tertiary = "string",
        VirtualSystemId = 0,
    });
    
    example, err := checkpoint.NewGaiaDns(ctx, "gaiaDnsResource", &checkpoint.GaiaDnsArgs{
    	Debug: pulumi.Bool(false),
    	ForwardingDomains: checkpoint.GaiaDnsForwardingDomainArray{
    		&checkpoint.GaiaDnsForwardingDomainArgs{
    			Primary:   pulumi.String("string"),
    			Secondary: pulumi.String("string"),
    			Suffix:    pulumi.String("string"),
    			Tertiary:  pulumi.String("string"),
    		},
    	},
    	GaiaDnsId: pulumi.String("string"),
    	ListeningInterfaces: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	MemberId:        pulumi.String("string"),
    	Primary:         pulumi.String("string"),
    	Secondary:       pulumi.String("string"),
    	Suffix:          pulumi.String("string"),
    	Tertiary:        pulumi.String("string"),
    	VirtualSystemId: pulumi.Float64(0),
    })
    
    resource "checkpoint_gaiadns" "gaiaDnsResource" {
      debug = false
      forwarding_domains {
        primary   = "string"
        secondary = "string"
        suffix    = "string"
        tertiary  = "string"
      }
      gaia_dns_id          = "string"
      listening_interfaces = ["string"]
      member_id            = "string"
      primary              = "string"
      secondary            = "string"
      suffix               = "string"
      tertiary             = "string"
      virtual_system_id    = 0
    }
    
    var gaiaDnsResource = new GaiaDns("gaiaDnsResource", GaiaDnsArgs.builder()
        .debug(false)
        .forwardingDomains(GaiaDnsForwardingDomainArgs.builder()
            .primary("string")
            .secondary("string")
            .suffix("string")
            .tertiary("string")
            .build())
        .gaiaDnsId("string")
        .listeningInterfaces("string")
        .memberId("string")
        .primary("string")
        .secondary("string")
        .suffix("string")
        .tertiary("string")
        .virtualSystemId(0.0)
        .build());
    
    gaia_dns_resource = checkpoint.GaiaDns("gaiaDnsResource",
        debug=False,
        forwarding_domains=[{
            "primary": "string",
            "secondary": "string",
            "suffix": "string",
            "tertiary": "string",
        }],
        gaia_dns_id="string",
        listening_interfaces=["string"],
        member_id="string",
        primary="string",
        secondary="string",
        suffix="string",
        tertiary="string",
        virtual_system_id=float(0))
    
    const gaiaDnsResource = new checkpoint.GaiaDns("gaiaDnsResource", {
        debug: false,
        forwardingDomains: [{
            primary: "string",
            secondary: "string",
            suffix: "string",
            tertiary: "string",
        }],
        gaiaDnsId: "string",
        listeningInterfaces: ["string"],
        memberId: "string",
        primary: "string",
        secondary: "string",
        suffix: "string",
        tertiary: "string",
        virtualSystemId: 0,
    });
    
    type: checkpoint:GaiaDns
    properties:
        debug: false
        forwardingDomains:
            - primary: string
              secondary: string
              suffix: string
              tertiary: string
        gaiaDnsId: string
        listeningInterfaces:
            - string
        memberId: string
        primary: string
        secondary: string
        suffix: string
        tertiary: string
        virtualSystemId: 0
    

    GaiaDns Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GaiaDns resource accepts the following input properties:

    Debug bool
    Enable debug logging for this resource.
    ForwardingDomains List<GaiaDnsForwardingDomain>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    GaiaDnsId string
    ListeningInterfaces List<string>
    DNS proxy listening interfaces
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Primary string
    Use empty-string in order to remove the setting
    Secondary string
    Use empty-string in order to remove the setting
    Suffix string
    Use empty-string in order to remove the setting
    Tertiary string
    Use empty-string in order to remove the setting
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Debug bool
    Enable debug logging for this resource.
    ForwardingDomains []GaiaDnsForwardingDomainArgs
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    GaiaDnsId string
    ListeningInterfaces []string
    DNS proxy listening interfaces
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Primary string
    Use empty-string in order to remove the setting
    Secondary string
    Use empty-string in order to remove the setting
    Suffix string
    Use empty-string in order to remove the setting
    Tertiary string
    Use empty-string in order to remove the setting
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    forwarding_domains list(object)
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaia_dns_id string
    listening_interfaces list(string)
    DNS proxy listening interfaces
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary string
    Use empty-string in order to remove the setting
    secondary string
    Use empty-string in order to remove the setting
    suffix string
    Use empty-string in order to remove the setting
    tertiary string
    Use empty-string in order to remove the setting
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    forwardingDomains List<GaiaDnsForwardingDomain>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId String
    listeningInterfaces List<String>
    DNS proxy listening interfaces
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary String
    Use empty-string in order to remove the setting
    secondary String
    Use empty-string in order to remove the setting
    suffix String
    Use empty-string in order to remove the setting
    tertiary String
    Use empty-string in order to remove the setting
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    debug boolean
    Enable debug logging for this resource.
    forwardingDomains GaiaDnsForwardingDomain[]
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId string
    listeningInterfaces string[]
    DNS proxy listening interfaces
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary string
    Use empty-string in order to remove the setting
    secondary string
    Use empty-string in order to remove the setting
    suffix string
    Use empty-string in order to remove the setting
    tertiary string
    Use empty-string in order to remove the setting
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    forwarding_domains Sequence[GaiaDnsForwardingDomainArgs]
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaia_dns_id str
    listening_interfaces Sequence[str]
    DNS proxy listening interfaces
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary str
    Use empty-string in order to remove the setting
    secondary str
    Use empty-string in order to remove the setting
    suffix str
    Use empty-string in order to remove the setting
    tertiary str
    Use empty-string in order to remove the setting
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    forwardingDomains List<Property Map>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId String
    listeningInterfaces List<String>
    DNS proxy listening interfaces
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary String
    Use empty-string in order to remove the setting
    secondary String
    Use empty-string in order to remove the setting
    suffix String
    Use empty-string in order to remove the setting
    tertiary String
    Use empty-string in order to remove the setting
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaDns resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GaiaDns Resource

    Get an existing GaiaDns resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GaiaDnsState, opts?: CustomResourceOptions): GaiaDns
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            forwarding_domains: Optional[Sequence[GaiaDnsForwardingDomainArgs]] = None,
            gaia_dns_id: Optional[str] = None,
            listening_interfaces: Optional[Sequence[str]] = None,
            member_id: Optional[str] = None,
            primary: Optional[str] = None,
            secondary: Optional[str] = None,
            suffix: Optional[str] = None,
            tertiary: Optional[str] = None,
            virtual_system_id: Optional[float] = None) -> GaiaDns
    func GetGaiaDns(ctx *Context, name string, id IDInput, state *GaiaDnsState, opts ...ResourceOption) (*GaiaDns, error)
    public static GaiaDns Get(string name, Input<string> id, GaiaDnsState? state, CustomResourceOptions? opts = null)
    public static GaiaDns get(String name, Output<String> id, GaiaDnsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaDns    get:      id: ${id}
    import {
      to = checkpoint_gaiadns.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Debug bool
    Enable debug logging for this resource.
    ForwardingDomains List<GaiaDnsForwardingDomain>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    GaiaDnsId string
    ListeningInterfaces List<string>
    DNS proxy listening interfaces
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Primary string
    Use empty-string in order to remove the setting
    Secondary string
    Use empty-string in order to remove the setting
    Suffix string
    Use empty-string in order to remove the setting
    Tertiary string
    Use empty-string in order to remove the setting
    VirtualSystemId double
    Virtual System ID. Relevant for VSNext setups
    Debug bool
    Enable debug logging for this resource.
    ForwardingDomains []GaiaDnsForwardingDomainArgs
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    GaiaDnsId string
    ListeningInterfaces []string
    DNS proxy listening interfaces
    MemberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    Primary string
    Use empty-string in order to remove the setting
    Secondary string
    Use empty-string in order to remove the setting
    Suffix string
    Use empty-string in order to remove the setting
    Tertiary string
    Use empty-string in order to remove the setting
    VirtualSystemId float64
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    forwarding_domains list(object)
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaia_dns_id string
    listening_interfaces list(string)
    DNS proxy listening interfaces
    member_id string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary string
    Use empty-string in order to remove the setting
    secondary string
    Use empty-string in order to remove the setting
    suffix string
    Use empty-string in order to remove the setting
    tertiary string
    Use empty-string in order to remove the setting
    virtual_system_id number
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    forwardingDomains List<GaiaDnsForwardingDomain>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId String
    listeningInterfaces List<String>
    DNS proxy listening interfaces
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary String
    Use empty-string in order to remove the setting
    secondary String
    Use empty-string in order to remove the setting
    suffix String
    Use empty-string in order to remove the setting
    tertiary String
    Use empty-string in order to remove the setting
    virtualSystemId Double
    Virtual System ID. Relevant for VSNext setups
    debug boolean
    Enable debug logging for this resource.
    forwardingDomains GaiaDnsForwardingDomain[]
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId string
    listeningInterfaces string[]
    DNS proxy listening interfaces
    memberId string
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary string
    Use empty-string in order to remove the setting
    secondary string
    Use empty-string in order to remove the setting
    suffix string
    Use empty-string in order to remove the setting
    tertiary string
    Use empty-string in order to remove the setting
    virtualSystemId number
    Virtual System ID. Relevant for VSNext setups
    debug bool
    Enable debug logging for this resource.
    forwarding_domains Sequence[GaiaDnsForwardingDomainArgs]
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaia_dns_id str
    listening_interfaces Sequence[str]
    DNS proxy listening interfaces
    member_id str
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary str
    Use empty-string in order to remove the setting
    secondary str
    Use empty-string in order to remove the setting
    suffix str
    Use empty-string in order to remove the setting
    tertiary str
    Use empty-string in order to remove the setting
    virtual_system_id float
    Virtual System ID. Relevant for VSNext setups
    debug Boolean
    Enable debug logging for this resource.
    forwardingDomains List<Property Map>
    DNS proxy forwarding domains forwarding_domains blocks are documented below.
    gaiaDnsId String
    listeningInterfaces List<String>
    DNS proxy listening interfaces
    memberId String
    Relevant for commands on Scalable and ElasticXL platforms only. When member-id is provided in the login request, show commands during the session will be executed on the specified member, unless a different member-id is provided in a successive requests Set operations will be performed on all members
    primary String
    Use empty-string in order to remove the setting
    secondary String
    Use empty-string in order to remove the setting
    suffix String
    Use empty-string in order to remove the setting
    tertiary String
    Use empty-string in order to remove the setting
    virtualSystemId Number
    Virtual System ID. Relevant for VSNext setups

    Supporting Types

    GaiaDnsForwardingDomain, GaiaDnsForwardingDomainArgs

    Primary string
    N/A
    Secondary string
    N/A
    Suffix string
    N/A
    Tertiary string
    N/A
    Primary string
    N/A
    Secondary string
    N/A
    Suffix string
    N/A
    Tertiary string
    N/A
    primary string
    N/A
    secondary string
    N/A
    suffix string
    N/A
    tertiary string
    N/A
    primary String
    N/A
    secondary String
    N/A
    suffix String
    N/A
    tertiary String
    N/A
    primary string
    N/A
    secondary string
    N/A
    suffix string
    N/A
    tertiary string
    N/A
    primary str
    N/A
    secondary str
    N/A
    suffix str
    N/A
    tertiary str
    N/A
    primary String
    N/A
    secondary String
    N/A
    suffix String
    N/A
    tertiary String
    N/A

    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.2.0
    published on Monday, Jun 15, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial