1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaMdps
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 Mdps.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaMdps("example", {});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaMdps("example")
    
    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.NewGaiaMdps(ctx, "example", nil)
    		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.GaiaMdps("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaMdps;
    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 GaiaMdps("example");
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaMdps
    
    Example coming soon!
    

    Create GaiaMdps Resource

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

    Constructor syntax

    new GaiaMdps(name: string, args?: GaiaMdpsArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaMdps(resource_name: str,
                 args: Optional[GaiaMdpsArgs] = None,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaMdps(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 debug: Optional[bool] = None,
                 gaia_mdps_id: Optional[str] = None,
                 member_id: Optional[str] = None,
                 resource_separation: Optional[GaiaMdpsResourceSeparationArgs] = None,
                 routing_separation: Optional[GaiaMdpsRoutingSeparationArgs] = None,
                 separation_interfaces: Optional[GaiaMdpsSeparationInterfacesArgs] = None)
    func NewGaiaMdps(ctx *Context, name string, args *GaiaMdpsArgs, opts ...ResourceOption) (*GaiaMdps, error)
    public GaiaMdps(string name, GaiaMdpsArgs? args = null, CustomResourceOptions? opts = null)
    public GaiaMdps(String name, GaiaMdpsArgs args)
    public GaiaMdps(String name, GaiaMdpsArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaMdps
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiamdps" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaMdpsArgs
    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 GaiaMdpsArgs
    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 GaiaMdpsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaMdpsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaMdpsArgs
    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 gaiaMdpsResource = new Checkpoint.GaiaMdps("gaiaMdpsResource", new()
    {
        Debug = false,
        GaiaMdpsId = "string",
        MemberId = "string",
        ResourceSeparation = new Checkpoint.Inputs.GaiaMdpsResourceSeparationArgs
        {
            AllocatedCpus = 0,
            Enabled = false,
        },
        RoutingSeparation = new Checkpoint.Inputs.GaiaMdpsRoutingSeparationArgs
        {
            Enabled = false,
        },
        SeparationInterfaces = new Checkpoint.Inputs.GaiaMdpsSeparationInterfacesArgs
        {
            Management = "string",
            Sync = "string",
        },
    });
    
    example, err := checkpoint.NewGaiaMdps(ctx, "gaiaMdpsResource", &checkpoint.GaiaMdpsArgs{
    	Debug:      pulumi.Bool(false),
    	GaiaMdpsId: pulumi.String("string"),
    	MemberId:   pulumi.String("string"),
    	ResourceSeparation: &checkpoint.GaiaMdpsResourceSeparationArgs{
    		AllocatedCpus: pulumi.Float64(0),
    		Enabled:       pulumi.Bool(false),
    	},
    	RoutingSeparation: &checkpoint.GaiaMdpsRoutingSeparationArgs{
    		Enabled: pulumi.Bool(false),
    	},
    	SeparationInterfaces: &checkpoint.GaiaMdpsSeparationInterfacesArgs{
    		Management: pulumi.String("string"),
    		Sync:       pulumi.String("string"),
    	},
    })
    
    resource "checkpoint_gaiamdps" "gaiaMdpsResource" {
      debug        = false
      gaia_mdps_id = "string"
      member_id    = "string"
      resource_separation = {
        allocated_cpus = 0
        enabled        = false
      }
      routing_separation = {
        enabled = false
      }
      separation_interfaces = {
        management = "string"
        sync       = "string"
      }
    }
    
    var gaiaMdpsResource = new GaiaMdps("gaiaMdpsResource", GaiaMdpsArgs.builder()
        .debug(false)
        .gaiaMdpsId("string")
        .memberId("string")
        .resourceSeparation(GaiaMdpsResourceSeparationArgs.builder()
            .allocatedCpus(0.0)
            .enabled(false)
            .build())
        .routingSeparation(GaiaMdpsRoutingSeparationArgs.builder()
            .enabled(false)
            .build())
        .separationInterfaces(GaiaMdpsSeparationInterfacesArgs.builder()
            .management("string")
            .sync("string")
            .build())
        .build());
    
    gaia_mdps_resource = checkpoint.GaiaMdps("gaiaMdpsResource",
        debug=False,
        gaia_mdps_id="string",
        member_id="string",
        resource_separation={
            "allocated_cpus": float(0),
            "enabled": False,
        },
        routing_separation={
            "enabled": False,
        },
        separation_interfaces={
            "management": "string",
            "sync": "string",
        })
    
    const gaiaMdpsResource = new checkpoint.GaiaMdps("gaiaMdpsResource", {
        debug: false,
        gaiaMdpsId: "string",
        memberId: "string",
        resourceSeparation: {
            allocatedCpus: 0,
            enabled: false,
        },
        routingSeparation: {
            enabled: false,
        },
        separationInterfaces: {
            management: "string",
            sync: "string",
        },
    });
    
    type: checkpoint:GaiaMdps
    properties:
        debug: false
        gaiaMdpsId: string
        memberId: string
        resourceSeparation:
            allocatedCpus: 0
            enabled: false
        routingSeparation:
            enabled: false
        separationInterfaces:
            management: string
            sync: string
    

    GaiaMdps 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 GaiaMdps resource accepts the following input properties:

    Debug bool
    Enable debug logging for this resource.
    GaiaMdpsId string
    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
    ResourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    RoutingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    SeparationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaMdpsId string
    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
    ResourceSeparation GaiaMdpsResourceSeparationArgs
    Resource Separation resource_separation blocks are documented below.
    RoutingSeparation GaiaMdpsRoutingSeparationArgs
    Routing Separation routing_separation blocks are documented below.
    SeparationInterfaces GaiaMdpsSeparationInterfacesArgs
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_mdps_id string
    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
    resource_separation object
    Resource Separation resource_separation blocks are documented below.
    routing_separation object
    Routing Separation routing_separation blocks are documented below.
    separation_interfaces object
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaMdpsId String
    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
    resourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    routingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaMdpsId string
    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
    resourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    routingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_mdps_id str
    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
    resource_separation GaiaMdpsResourceSeparationArgs
    Resource Separation resource_separation blocks are documented below.
    routing_separation GaiaMdpsRoutingSeparationArgs
    Routing Separation routing_separation blocks are documented below.
    separation_interfaces GaiaMdpsSeparationInterfacesArgs
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaMdpsId String
    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
    resourceSeparation Property Map
    Resource Separation resource_separation blocks are documented below.
    routingSeparation Property Map
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces Property Map
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GaiaMdps 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 GaiaMdps Resource

    Get an existing GaiaMdps 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?: GaiaMdpsState, opts?: CustomResourceOptions): GaiaMdps
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            gaia_mdps_id: Optional[str] = None,
            member_id: Optional[str] = None,
            resource_separation: Optional[GaiaMdpsResourceSeparationArgs] = None,
            routing_separation: Optional[GaiaMdpsRoutingSeparationArgs] = None,
            separation_interfaces: Optional[GaiaMdpsSeparationInterfacesArgs] = None) -> GaiaMdps
    func GetGaiaMdps(ctx *Context, name string, id IDInput, state *GaiaMdpsState, opts ...ResourceOption) (*GaiaMdps, error)
    public static GaiaMdps Get(string name, Input<string> id, GaiaMdpsState? state, CustomResourceOptions? opts = null)
    public static GaiaMdps get(String name, Output<String> id, GaiaMdpsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaMdps    get:      id: ${id}
    import {
      to = checkpoint_gaiamdps.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.
    GaiaMdpsId string
    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
    ResourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    RoutingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    SeparationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    Debug bool
    Enable debug logging for this resource.
    GaiaMdpsId string
    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
    ResourceSeparation GaiaMdpsResourceSeparationArgs
    Resource Separation resource_separation blocks are documented below.
    RoutingSeparation GaiaMdpsRoutingSeparationArgs
    Routing Separation routing_separation blocks are documented below.
    SeparationInterfaces GaiaMdpsSeparationInterfacesArgs
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_mdps_id string
    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
    resource_separation object
    Resource Separation resource_separation blocks are documented below.
    routing_separation object
    Routing Separation routing_separation blocks are documented below.
    separation_interfaces object
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaMdpsId String
    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
    resourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    routingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug boolean
    Enable debug logging for this resource.
    gaiaMdpsId string
    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
    resourceSeparation GaiaMdpsResourceSeparation
    Resource Separation resource_separation blocks are documented below.
    routingSeparation GaiaMdpsRoutingSeparation
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces GaiaMdpsSeparationInterfaces
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug bool
    Enable debug logging for this resource.
    gaia_mdps_id str
    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
    resource_separation GaiaMdpsResourceSeparationArgs
    Resource Separation resource_separation blocks are documented below.
    routing_separation GaiaMdpsRoutingSeparationArgs
    Routing Separation routing_separation blocks are documented below.
    separation_interfaces GaiaMdpsSeparationInterfacesArgs
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
    debug Boolean
    Enable debug logging for this resource.
    gaiaMdpsId String
    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
    resourceSeparation Property Map
    Resource Separation resource_separation blocks are documented below.
    routingSeparation Property Map
    Routing Separation routing_separation blocks are documented below.
    separationInterfaces Property Map
    Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.

    Supporting Types

    GaiaMdpsResourceSeparation, GaiaMdpsResourceSeparationArgs

    AllocatedCpus double
    Number of CPU's for resource separation
    Enabled bool
    Resource separation state
    AllocatedCpus float64
    Number of CPU's for resource separation
    Enabled bool
    Resource separation state
    allocated_cpus number
    Number of CPU's for resource separation
    enabled bool
    Resource separation state
    allocatedCpus Double
    Number of CPU's for resource separation
    enabled Boolean
    Resource separation state
    allocatedCpus number
    Number of CPU's for resource separation
    enabled boolean
    Resource separation state
    allocated_cpus float
    Number of CPU's for resource separation
    enabled bool
    Resource separation state
    allocatedCpus Number
    Number of CPU's for resource separation
    enabled Boolean
    Resource separation state

    GaiaMdpsRoutingSeparation, GaiaMdpsRoutingSeparationArgs

    Enabled bool
    Routing separation state
    Enabled bool
    Routing separation state
    enabled bool
    Routing separation state
    enabled Boolean
    Routing separation state
    enabled boolean
    Routing separation state
    enabled bool
    Routing separation state
    enabled Boolean
    Routing separation state

    GaiaMdpsSeparationInterfaces, GaiaMdpsSeparationInterfacesArgs

    Management string
    Management interface
    Sync string
    Sync interface (used in ClusterXL)
    Management string
    Management interface
    Sync string
    Sync interface (used in ClusterXL)
    management string
    Management interface
    sync string
    Sync interface (used in ClusterXL)
    management String
    Management interface
    sync String
    Sync interface (used in ClusterXL)
    management string
    Management interface
    sync string
    Sync interface (used in ClusterXL)
    management str
    Management interface
    sync str
    Sync interface (used in ClusterXL)
    management String
    Management interface
    sync String
    Sync interface (used in ClusterXL)

    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