published on Monday, Jun 15, 2026 by checkpointsw
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.
- Gaia
Mdps stringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- Routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- Separation
Interfaces GaiaMdps Separation Interfaces - 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 stringId - 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 GaiaMdps Resource Separation Args - Resource Separation resource_separation blocks are documented below.
- Routing
Separation GaiaMdps Routing Separation Args - Routing Separation routing_separation blocks are documented below.
- Separation
Interfaces GaiaMdps Separation Interfaces Args - 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_ stringid - 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.
- gaia
Mdps StringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces GaiaMdps Separation Interfaces - Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Mdps stringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces GaiaMdps Separation Interfaces - 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_ strid - 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 GaiaMdps Resource Separation Args - Resource Separation resource_separation blocks are documented below.
- routing_
separation GaiaMdps Routing Separation Args - Routing Separation routing_separation blocks are documented below.
- separation_
interfaces GaiaMdps Separation Interfaces Args - Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mdps StringId - 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 Property Map - Resource Separation resource_separation blocks are documented below.
- routing
Separation Property Map - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces 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) -> GaiaMdpsfunc 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.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Mdps stringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- Routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- Separation
Interfaces GaiaMdps Separation Interfaces - 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 stringId - 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 GaiaMdps Resource Separation Args - Resource Separation resource_separation blocks are documented below.
- Routing
Separation GaiaMdps Routing Separation Args - Routing Separation routing_separation blocks are documented below.
- Separation
Interfaces GaiaMdps Separation Interfaces Args - 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_ stringid - 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.
- gaia
Mdps StringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces GaiaMdps Separation Interfaces - Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
- debug boolean
- Enable debug logging for this resource.
- gaia
Mdps stringId - 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 GaiaMdps Resource Separation - Resource Separation resource_separation blocks are documented below.
- routing
Separation GaiaMdps Routing Separation - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces GaiaMdps Separation Interfaces - 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_ strid - 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 GaiaMdps Resource Separation Args - Resource Separation resource_separation blocks are documented below.
- routing_
separation GaiaMdps Routing Separation Args - Routing Separation routing_separation blocks are documented below.
- separation_
interfaces GaiaMdps Separation Interfaces Args - Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Mdps StringId - 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 Property Map - Resource Separation resource_separation blocks are documented below.
- routing
Separation Property Map - Routing Separation routing_separation blocks are documented below.
- separation
Interfaces Property Map - Management and/or Sync interface for the separation options separation_interfaces blocks are documented below.
Supporting Types
GaiaMdpsResourceSeparation, GaiaMdpsResourceSeparationArgs
- Allocated
Cpus double - Number of CPU's for resource separation
- Enabled bool
- Resource separation state
- Allocated
Cpus 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
- allocated
Cpus Double - Number of CPU's for resource separation
- enabled Boolean
- Resource separation state
- allocated
Cpus 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
- allocated
Cpus 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
checkpointTerraform Provider.
published on Monday, Jun 15, 2026 by checkpointsw