published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Maestro Port.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaMaestroPort("example", {
type: "uplink",
enabled: true,
mtu: 777,
qsfpMode: "40G",
autoNegotiation: true,
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaMaestroPort("example",
type="uplink",
enabled=True,
mtu=777,
qsfp_mode="40G",
auto_negotiation=True)
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.NewGaiaMaestroPort(ctx, "example", &checkpoint.GaiaMaestroPortArgs{
Type: pulumi.String("uplink"),
Enabled: pulumi.Bool(true),
Mtu: pulumi.Float64(777),
QsfpMode: pulumi.String("40G"),
AutoNegotiation: pulumi.Bool(true),
})
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.GaiaMaestroPort("example", new()
{
Type = "uplink",
Enabled = true,
Mtu = 777,
QsfpMode = "40G",
AutoNegotiation = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaMaestroPort;
import com.pulumi.checkpoint.GaiaMaestroPortArgs;
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 GaiaMaestroPort("example", GaiaMaestroPortArgs.builder()
.type("uplink")
.enabled(true)
.mtu(777.0)
.qsfpMode("40G")
.autoNegotiation(true)
.build());
}
}
resources:
example:
type: checkpoint:GaiaMaestroPort
properties:
type: uplink
enabled: true
mtu: 777
qsfpMode: 40G
autoNegotiation: true
Example coming soon!
Create GaiaMaestroPort Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaMaestroPort(name: string, args?: GaiaMaestroPortArgs, opts?: CustomResourceOptions);@overload
def GaiaMaestroPort(resource_name: str,
args: Optional[GaiaMaestroPortArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaMaestroPort(resource_name: str,
opts: Optional[ResourceOptions] = None,
auto_negotiation: Optional[bool] = None,
debug: Optional[bool] = None,
enabled: Optional[bool] = None,
gaia_maestro_port_id: Optional[str] = None,
interface_name: Optional[str] = None,
mtu: Optional[float] = None,
qsfp_mode: Optional[str] = None,
resource_id: Optional[str] = None,
type: Optional[str] = None)func NewGaiaMaestroPort(ctx *Context, name string, args *GaiaMaestroPortArgs, opts ...ResourceOption) (*GaiaMaestroPort, error)public GaiaMaestroPort(string name, GaiaMaestroPortArgs? args = null, CustomResourceOptions? opts = null)
public GaiaMaestroPort(String name, GaiaMaestroPortArgs args)
public GaiaMaestroPort(String name, GaiaMaestroPortArgs args, CustomResourceOptions options)
type: checkpoint:GaiaMaestroPort
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiamaestroport" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaMaestroPortArgs
- 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 GaiaMaestroPortArgs
- 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 GaiaMaestroPortArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaMaestroPortArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaMaestroPortArgs
- 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 gaiaMaestroPortResource = new Checkpoint.GaiaMaestroPort("gaiaMaestroPortResource", new()
{
AutoNegotiation = false,
Debug = false,
Enabled = false,
GaiaMaestroPortId = "string",
InterfaceName = "string",
Mtu = 0,
QsfpMode = "string",
ResourceId = "string",
Type = "string",
});
example, err := checkpoint.NewGaiaMaestroPort(ctx, "gaiaMaestroPortResource", &checkpoint.GaiaMaestroPortArgs{
AutoNegotiation: pulumi.Bool(false),
Debug: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
GaiaMaestroPortId: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
Mtu: pulumi.Float64(0),
QsfpMode: pulumi.String("string"),
ResourceId: pulumi.String("string"),
Type: pulumi.String("string"),
})
resource "checkpoint_gaiamaestroport" "gaiaMaestroPortResource" {
auto_negotiation = false
debug = false
enabled = false
gaia_maestro_port_id = "string"
interface_name = "string"
mtu = 0
qsfp_mode = "string"
resource_id = "string"
type = "string"
}
var gaiaMaestroPortResource = new GaiaMaestroPort("gaiaMaestroPortResource", GaiaMaestroPortArgs.builder()
.autoNegotiation(false)
.debug(false)
.enabled(false)
.gaiaMaestroPortId("string")
.interfaceName("string")
.mtu(0.0)
.qsfpMode("string")
.resourceId("string")
.type("string")
.build());
gaia_maestro_port_resource = checkpoint.GaiaMaestroPort("gaiaMaestroPortResource",
auto_negotiation=False,
debug=False,
enabled=False,
gaia_maestro_port_id="string",
interface_name="string",
mtu=float(0),
qsfp_mode="string",
resource_id="string",
type="string")
const gaiaMaestroPortResource = new checkpoint.GaiaMaestroPort("gaiaMaestroPortResource", {
autoNegotiation: false,
debug: false,
enabled: false,
gaiaMaestroPortId: "string",
interfaceName: "string",
mtu: 0,
qsfpMode: "string",
resourceId: "string",
type: "string",
});
type: checkpoint:GaiaMaestroPort
properties:
autoNegotiation: false
debug: false
enabled: false
gaiaMaestroPortId: string
interfaceName: string
mtu: 0
qsfpMode: string
resourceId: string
type: string
GaiaMaestroPort 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 GaiaMaestroPort resource accepts the following input properties:
- Auto
Negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- Gaia
Maestro stringPort Id - Interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- Mtu double
- MTU of this port
- Qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- Resource
Id string - Port ID (e.g. '1/13/1')
- Type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- Auto
Negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- Gaia
Maestro stringPort Id - Interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- Mtu float64
- MTU of this port
- Qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- Resource
Id string - Port ID (e.g. '1/13/1')
- Type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto_
negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- debug bool
- Enable debug logging for this resource.
- enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia_
maestro_ stringport_ id - interface_
name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- mtu number
- MTU of this port
- qsfp_
mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource_
id string - Port ID (e.g. '1/13/1')
- type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation Boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro StringPort Id - interface
Name String - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- mtu Double
- MTU of this port
- qsfp
Mode String - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id String - Port ID (e.g. '1/13/1')
- type String
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro stringPort Id - interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- mtu number
- MTU of this port
- qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id string - Port ID (e.g. '1/13/1')
- type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto_
negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- debug bool
- Enable debug logging for this resource.
- enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia_
maestro_ strport_ id - interface_
name str - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- mtu float
- MTU of this port
- qsfp_
mode str - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource_
id str - Port ID (e.g. '1/13/1')
- type str
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation Boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro StringPort Id - interface
Name String - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- mtu Number
- MTU of this port
- qsfp
Mode String - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id String - Port ID (e.g. '1/13/1')
- type String
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaMaestroPort resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
State bool - Operating
Speed string - Orchestrator
Ids List<double> - Rx
Frames double - Site double
- Transceiver
State string - Tx
Frames double
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
State bool - Operating
Speed string - Orchestrator
Ids []float64 - Rx
Frames float64 - Site float64
- Transceiver
State string - Tx
Frames float64
- id string
- The provider-assigned unique ID for this managed resource.
- link_
state bool - operating_
speed string - orchestrator_
ids list(number) - rx_
frames number - site number
- transceiver_
state string - tx_
frames number
- id String
- The provider-assigned unique ID for this managed resource.
- link
State Boolean - operating
Speed String - orchestrator
Ids List<Double> - rx
Frames Double - site Double
- transceiver
State String - tx
Frames Double
- id string
- The provider-assigned unique ID for this managed resource.
- link
State boolean - operating
Speed string - orchestrator
Ids number[] - rx
Frames number - site number
- transceiver
State string - tx
Frames number
- id str
- The provider-assigned unique ID for this managed resource.
- link_
state bool - operating_
speed str - orchestrator_
ids Sequence[float] - rx_
frames float - site float
- transceiver_
state str - tx_
frames float
- id String
- The provider-assigned unique ID for this managed resource.
- link
State Boolean - operating
Speed String - orchestrator
Ids List<Number> - rx
Frames Number - site Number
- transceiver
State String - tx
Frames Number
Look up Existing GaiaMaestroPort Resource
Get an existing GaiaMaestroPort 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?: GaiaMaestroPortState, opts?: CustomResourceOptions): GaiaMaestroPort@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_negotiation: Optional[bool] = None,
debug: Optional[bool] = None,
enabled: Optional[bool] = None,
gaia_maestro_port_id: Optional[str] = None,
interface_name: Optional[str] = None,
link_state: Optional[bool] = None,
mtu: Optional[float] = None,
operating_speed: Optional[str] = None,
orchestrator_ids: Optional[Sequence[float]] = None,
qsfp_mode: Optional[str] = None,
resource_id: Optional[str] = None,
rx_frames: Optional[float] = None,
site: Optional[float] = None,
transceiver_state: Optional[str] = None,
tx_frames: Optional[float] = None,
type: Optional[str] = None) -> GaiaMaestroPortfunc GetGaiaMaestroPort(ctx *Context, name string, id IDInput, state *GaiaMaestroPortState, opts ...ResourceOption) (*GaiaMaestroPort, error)public static GaiaMaestroPort Get(string name, Input<string> id, GaiaMaestroPortState? state, CustomResourceOptions? opts = null)public static GaiaMaestroPort get(String name, Output<String> id, GaiaMaestroPortState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaMaestroPort get: id: ${id}import {
to = checkpoint_gaiamaestroport.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.
- Auto
Negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- Gaia
Maestro stringPort Id - Interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- Link
State bool - Mtu double
- MTU of this port
- Operating
Speed string - Orchestrator
Ids List<double> - Qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- Resource
Id string - Port ID (e.g. '1/13/1')
- Rx
Frames double - Site double
- Transceiver
State string - Tx
Frames double - Type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- Auto
Negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- Debug bool
- Enable debug logging for this resource.
- Enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- Gaia
Maestro stringPort Id - Interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- Link
State bool - Mtu float64
- MTU of this port
- Operating
Speed string - Orchestrator
Ids []float64 - Qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- Resource
Id string - Port ID (e.g. '1/13/1')
- Rx
Frames float64 - Site float64
- Transceiver
State string - Tx
Frames float64 - Type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto_
negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- debug bool
- Enable debug logging for this resource.
- enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia_
maestro_ stringport_ id - interface_
name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- link_
state bool - mtu number
- MTU of this port
- operating_
speed string - orchestrator_
ids list(number) - qsfp_
mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource_
id string - Port ID (e.g. '1/13/1')
- rx_
frames number - site number
- transceiver_
state string - tx_
frames number - type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation Boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro StringPort Id - interface
Name String - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- link
State Boolean - mtu Double
- MTU of this port
- operating
Speed String - orchestrator
Ids List<Double> - qsfp
Mode String - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id String - Port ID (e.g. '1/13/1')
- rx
Frames Double - site Double
- transceiver
State String - tx
Frames Double - type String
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug boolean
- Enable debug logging for this resource.
- enabled boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro stringPort Id - interface
Name string - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- link
State boolean - mtu number
- MTU of this port
- operating
Speed string - orchestrator
Ids number[] - qsfp
Mode string - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id string - Port ID (e.g. '1/13/1')
- rx
Frames number - site number
- transceiver
State string - tx
Frames number - type string
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto_
negotiation bool - If true, Auto Negotiation will be turned on, and vice versa
- debug bool
- Enable debug logging for this resource.
- enabled bool
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia_
maestro_ strport_ id - interface_
name str - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- link_
state bool - mtu float
- MTU of this port
- operating_
speed str - orchestrator_
ids Sequence[float] - qsfp_
mode str - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource_
id str - Port ID (e.g. '1/13/1')
- rx_
frames float - site float
- transceiver_
state str - tx_
frames float - type str
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
- auto
Negotiation Boolean - If true, Auto Negotiation will be turned on, and vice versa
- debug Boolean
- Enable debug logging for this resource.
- enabled Boolean
- Setting this to false will disable this port, setting to true will enable it. AKA 'admin state'
- gaia
Maestro StringPort Id - interface
Name String - Interface name in case this port is an Uplink or MGMT interface (e.g. 'eth1-25')
- link
State Boolean - mtu Number
- MTU of this port
- operating
Speed String - orchestrator
Ids List<Number> - qsfp
Mode String - Port QSFP mode. Valid values are: '4x10G', '4x25G', '25G', '40G', '100G'
- resource
Id String - Port ID (e.g. '1/13/1')
- rx
Frames Number - site Number
- transceiver
State String - tx
Frames Number - type String
- Port type. Valid values are: 'downlink', 'uplink', 'site_sync', 'ssm_sync', 'mgmt'
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