published on Monday, Jun 15, 2026 by checkpointsw
published on Monday, Jun 15, 2026 by checkpointsw
This resource allows you to execute Check Point Snmp Trap Receiver.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.GaiaSnmpTrapReceiver("example", {
address: "4.4.4.5",
communityString: "yy",
version: "v3",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.GaiaSnmpTrapReceiver("example",
address="4.4.4.5",
community_string="yy",
version="v3")
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.NewGaiaSnmpTrapReceiver(ctx, "example", &checkpoint.GaiaSnmpTrapReceiverArgs{
Address: pulumi.String("4.4.4.5"),
CommunityString: pulumi.String("yy"),
Version: pulumi.String("v3"),
})
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.GaiaSnmpTrapReceiver("example", new()
{
Address = "4.4.4.5",
CommunityString = "yy",
Version = "v3",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.GaiaSnmpTrapReceiver;
import com.pulumi.checkpoint.GaiaSnmpTrapReceiverArgs;
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 GaiaSnmpTrapReceiver("example", GaiaSnmpTrapReceiverArgs.builder()
.address("4.4.4.5")
.communityString("yy")
.version("v3")
.build());
}
}
resources:
example:
type: checkpoint:GaiaSnmpTrapReceiver
properties:
address: 4.4.4.5
communityString: yy
version: v3
Example coming soon!
Create GaiaSnmpTrapReceiver Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaiaSnmpTrapReceiver(name: string, args: GaiaSnmpTrapReceiverArgs, opts?: CustomResourceOptions);@overload
def GaiaSnmpTrapReceiver(resource_name: str,
args: GaiaSnmpTrapReceiverArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GaiaSnmpTrapReceiver(resource_name: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
version: Optional[str] = None,
community_string: Optional[str] = None,
debug: Optional[bool] = None,
gaia_snmp_trap_receiver_id: Optional[str] = None,
member_id: Optional[str] = None)func NewGaiaSnmpTrapReceiver(ctx *Context, name string, args GaiaSnmpTrapReceiverArgs, opts ...ResourceOption) (*GaiaSnmpTrapReceiver, error)public GaiaSnmpTrapReceiver(string name, GaiaSnmpTrapReceiverArgs args, CustomResourceOptions? opts = null)
public GaiaSnmpTrapReceiver(String name, GaiaSnmpTrapReceiverArgs args)
public GaiaSnmpTrapReceiver(String name, GaiaSnmpTrapReceiverArgs args, CustomResourceOptions options)
type: checkpoint:GaiaSnmpTrapReceiver
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_gaiasnmptrapreceiver" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GaiaSnmpTrapReceiverArgs
- 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 GaiaSnmpTrapReceiverArgs
- 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 GaiaSnmpTrapReceiverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaiaSnmpTrapReceiverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaiaSnmpTrapReceiverArgs
- 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 gaiaSnmpTrapReceiverResource = new Checkpoint.GaiaSnmpTrapReceiver("gaiaSnmpTrapReceiverResource", new()
{
Address = "string",
Version = "string",
CommunityString = "string",
Debug = false,
GaiaSnmpTrapReceiverId = "string",
MemberId = "string",
});
example, err := checkpoint.NewGaiaSnmpTrapReceiver(ctx, "gaiaSnmpTrapReceiverResource", &checkpoint.GaiaSnmpTrapReceiverArgs{
Address: pulumi.String("string"),
Version: pulumi.String("string"),
CommunityString: pulumi.String("string"),
Debug: pulumi.Bool(false),
GaiaSnmpTrapReceiverId: pulumi.String("string"),
MemberId: pulumi.String("string"),
})
resource "checkpoint_gaiasnmptrapreceiver" "gaiaSnmpTrapReceiverResource" {
address = "string"
version = "string"
community_string = "string"
debug = false
gaia_snmp_trap_receiver_id = "string"
member_id = "string"
}
var gaiaSnmpTrapReceiverResource = new GaiaSnmpTrapReceiver("gaiaSnmpTrapReceiverResource", GaiaSnmpTrapReceiverArgs.builder()
.address("string")
.version("string")
.communityString("string")
.debug(false)
.gaiaSnmpTrapReceiverId("string")
.memberId("string")
.build());
gaia_snmp_trap_receiver_resource = checkpoint.GaiaSnmpTrapReceiver("gaiaSnmpTrapReceiverResource",
address="string",
version="string",
community_string="string",
debug=False,
gaia_snmp_trap_receiver_id="string",
member_id="string")
const gaiaSnmpTrapReceiverResource = new checkpoint.GaiaSnmpTrapReceiver("gaiaSnmpTrapReceiverResource", {
address: "string",
version: "string",
communityString: "string",
debug: false,
gaiaSnmpTrapReceiverId: "string",
memberId: "string",
});
type: checkpoint:GaiaSnmpTrapReceiver
properties:
address: string
communityString: string
debug: false
gaiaSnmpTrapReceiverId: string
memberId: string
version: string
GaiaSnmpTrapReceiver 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 GaiaSnmpTrapReceiver resource accepts the following input properties:
- Address string
- Receiver address
- Version string
- Receiver version
- Community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Snmp stringTrap Receiver Id - 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
- Address string
- Receiver address
- Version string
- Receiver version
- Community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Snmp stringTrap Receiver Id - 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
- address string
- Receiver address
- version string
- Receiver version
- community_
string string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug bool
- Enable debug logging for this resource.
- gaia_
snmp_ stringtrap_ receiver_ id - 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
- address String
- Receiver address
- version String
- Receiver version
- community
String String - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Snmp StringTrap Receiver Id - 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
- address string
- Receiver address
- version string
- Receiver version
- community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug boolean
- Enable debug logging for this resource.
- gaia
Snmp stringTrap Receiver Id - 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
- address str
- Receiver address
- version str
- Receiver version
- community_
string str - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug bool
- Enable debug logging for this resource.
- gaia_
snmp_ strtrap_ receiver_ id - 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
- address String
- Receiver address
- version String
- Receiver version
- community
String String - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Snmp StringTrap Receiver Id - 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
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaSnmpTrapReceiver 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 GaiaSnmpTrapReceiver Resource
Get an existing GaiaSnmpTrapReceiver 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?: GaiaSnmpTrapReceiverState, opts?: CustomResourceOptions): GaiaSnmpTrapReceiver@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
community_string: Optional[str] = None,
debug: Optional[bool] = None,
gaia_snmp_trap_receiver_id: Optional[str] = None,
member_id: Optional[str] = None,
version: Optional[str] = None) -> GaiaSnmpTrapReceiverfunc GetGaiaSnmpTrapReceiver(ctx *Context, name string, id IDInput, state *GaiaSnmpTrapReceiverState, opts ...ResourceOption) (*GaiaSnmpTrapReceiver, error)public static GaiaSnmpTrapReceiver Get(string name, Input<string> id, GaiaSnmpTrapReceiverState? state, CustomResourceOptions? opts = null)public static GaiaSnmpTrapReceiver get(String name, Output<String> id, GaiaSnmpTrapReceiverState state, CustomResourceOptions options)resources: _: type: checkpoint:GaiaSnmpTrapReceiver get: id: ${id}import {
to = checkpoint_gaiasnmptrapreceiver.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.
- Address string
- Receiver address
- Community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Snmp stringTrap Receiver Id - 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
- Version string
- Receiver version
- Address string
- Receiver address
- Community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- Debug bool
- Enable debug logging for this resource.
- Gaia
Snmp stringTrap Receiver Id - 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
- Version string
- Receiver version
- address string
- Receiver address
- community_
string string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug bool
- Enable debug logging for this resource.
- gaia_
snmp_ stringtrap_ receiver_ id - 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
- version string
- Receiver version
- address String
- Receiver address
- community
String String - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Snmp StringTrap Receiver Id - 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
- version String
- Receiver version
- address string
- Receiver address
- community
String string - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug boolean
- Enable debug logging for this resource.
- gaia
Snmp stringTrap Receiver Id - 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
- version string
- Receiver version
- address str
- Receiver address
- community_
string str - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug bool
- Enable debug logging for this resource.
- gaia_
snmp_ strtrap_ receiver_ id - 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
- version str
- Receiver version
- address String
- Receiver address
- community
String String - Receiver community - Required only in case of v1/v2 versions Trap Community String used by the trap receiver to determine which traps are accepted from a device.
- debug Boolean
- Enable debug logging for this resource.
- gaia
Snmp StringTrap Receiver Id - 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
- version String
- Receiver version
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