1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. GaiaMaestroSite
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 Maestro Site.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.GaiaMaestroSite("example", {
        siteId: 1,
        descriptions: [{
            securityGroup: 1,
            description: "Site 1 description for Security Group 1",
        }],
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.GaiaMaestroSite("example",
        site_id=1,
        descriptions=[{
            "security_group": 1,
            "description": "Site 1 description for Security Group 1",
        }])
    
    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.NewGaiaMaestroSite(ctx, "example", &checkpoint.GaiaMaestroSiteArgs{
    			SiteId: pulumi.Float64(1),
    			Descriptions: checkpoint.GaiaMaestroSiteDescriptionArray{
    				&checkpoint.GaiaMaestroSiteDescriptionArgs{
    					SecurityGroup: pulumi.Float64(1),
    					Description:   pulumi.String("Site 1 description for Security Group 1"),
    				},
    			},
    		})
    		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.GaiaMaestroSite("example", new()
        {
            SiteId = 1,
            Descriptions = new[]
            {
                new Checkpoint.Inputs.GaiaMaestroSiteDescriptionArgs
                {
                    SecurityGroup = 1,
                    Description = "Site 1 description for Security Group 1",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.GaiaMaestroSite;
    import com.pulumi.checkpoint.GaiaMaestroSiteArgs;
    import com.pulumi.checkpoint.inputs.GaiaMaestroSiteDescriptionArgs;
    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 GaiaMaestroSite("example", GaiaMaestroSiteArgs.builder()
                .siteId(1.0)
                .descriptions(GaiaMaestroSiteDescriptionArgs.builder()
                    .securityGroup(1.0)
                    .description("Site 1 description for Security Group 1")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:GaiaMaestroSite
        properties:
          siteId: 1
          descriptions:
            - securityGroup: 1
              description: Site 1 description for Security Group 1
    
    Example coming soon!
    

    Create GaiaMaestroSite Resource

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

    Constructor syntax

    new GaiaMaestroSite(name: string, args: GaiaMaestroSiteArgs, opts?: CustomResourceOptions);
    @overload
    def GaiaMaestroSite(resource_name: str,
                        args: GaiaMaestroSiteArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def GaiaMaestroSite(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        site_id: Optional[float] = None,
                        debug: Optional[bool] = None,
                        descriptions: Optional[Sequence[GaiaMaestroSiteDescriptionArgs]] = None,
                        gaia_maestro_site_id: Optional[str] = None,
                        include_pending_changes: Optional[bool] = None)
    func NewGaiaMaestroSite(ctx *Context, name string, args GaiaMaestroSiteArgs, opts ...ResourceOption) (*GaiaMaestroSite, error)
    public GaiaMaestroSite(string name, GaiaMaestroSiteArgs args, CustomResourceOptions? opts = null)
    public GaiaMaestroSite(String name, GaiaMaestroSiteArgs args)
    public GaiaMaestroSite(String name, GaiaMaestroSiteArgs args, CustomResourceOptions options)
    
    type: checkpoint:GaiaMaestroSite
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_gaiamaestrosite" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GaiaMaestroSiteArgs
    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 GaiaMaestroSiteArgs
    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 GaiaMaestroSiteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GaiaMaestroSiteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GaiaMaestroSiteArgs
    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 gaiaMaestroSiteResource = new Checkpoint.GaiaMaestroSite("gaiaMaestroSiteResource", new()
    {
        SiteId = 0,
        Debug = false,
        Descriptions = new[]
        {
            new Checkpoint.Inputs.GaiaMaestroSiteDescriptionArgs
            {
                Description = "string",
                SecurityGroup = 0,
            },
        },
        GaiaMaestroSiteId = "string",
        IncludePendingChanges = false,
    });
    
    example, err := checkpoint.NewGaiaMaestroSite(ctx, "gaiaMaestroSiteResource", &checkpoint.GaiaMaestroSiteArgs{
    	SiteId: pulumi.Float64(0),
    	Debug:  pulumi.Bool(false),
    	Descriptions: checkpoint.GaiaMaestroSiteDescriptionArray{
    		&checkpoint.GaiaMaestroSiteDescriptionArgs{
    			Description:   pulumi.String("string"),
    			SecurityGroup: pulumi.Float64(0),
    		},
    	},
    	GaiaMaestroSiteId:     pulumi.String("string"),
    	IncludePendingChanges: pulumi.Bool(false),
    })
    
    resource "checkpoint_gaiamaestrosite" "gaiaMaestroSiteResource" {
      site_id = 0
      debug   = false
      descriptions {
        description    = "string"
        security_group = 0
      }
      gaia_maestro_site_id    = "string"
      include_pending_changes = false
    }
    
    var gaiaMaestroSiteResource = new GaiaMaestroSite("gaiaMaestroSiteResource", GaiaMaestroSiteArgs.builder()
        .siteId(0.0)
        .debug(false)
        .descriptions(GaiaMaestroSiteDescriptionArgs.builder()
            .description("string")
            .securityGroup(0.0)
            .build())
        .gaiaMaestroSiteId("string")
        .includePendingChanges(false)
        .build());
    
    gaia_maestro_site_resource = checkpoint.GaiaMaestroSite("gaiaMaestroSiteResource",
        site_id=float(0),
        debug=False,
        descriptions=[{
            "description": "string",
            "security_group": float(0),
        }],
        gaia_maestro_site_id="string",
        include_pending_changes=False)
    
    const gaiaMaestroSiteResource = new checkpoint.GaiaMaestroSite("gaiaMaestroSiteResource", {
        siteId: 0,
        debug: false,
        descriptions: [{
            description: "string",
            securityGroup: 0,
        }],
        gaiaMaestroSiteId: "string",
        includePendingChanges: false,
    });
    
    type: checkpoint:GaiaMaestroSite
    properties:
        debug: false
        descriptions:
            - description: string
              securityGroup: 0
        gaiaMaestroSiteId: string
        includePendingChanges: false
        siteId: 0
    

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

    SiteId double
    N/A
    Debug bool
    Enable debug logging for this resource.
    Descriptions List<GaiaMaestroSiteDescription>
    Provide optional site description per Security Group descriptions blocks are documented below.
    GaiaMaestroSiteId string
    IncludePendingChanges bool
    N/A
    SiteId float64
    N/A
    Debug bool
    Enable debug logging for this resource.
    Descriptions []GaiaMaestroSiteDescriptionArgs
    Provide optional site description per Security Group descriptions blocks are documented below.
    GaiaMaestroSiteId string
    IncludePendingChanges bool
    N/A
    site_id number
    N/A
    debug bool
    Enable debug logging for this resource.
    descriptions list(object)
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaia_maestro_site_id string
    include_pending_changes bool
    N/A
    siteId Double
    N/A
    debug Boolean
    Enable debug logging for this resource.
    descriptions List<GaiaMaestroSiteDescription>
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId String
    includePendingChanges Boolean
    N/A
    siteId number
    N/A
    debug boolean
    Enable debug logging for this resource.
    descriptions GaiaMaestroSiteDescription[]
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId string
    includePendingChanges boolean
    N/A
    site_id float
    N/A
    debug bool
    Enable debug logging for this resource.
    descriptions Sequence[GaiaMaestroSiteDescriptionArgs]
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaia_maestro_site_id str
    include_pending_changes bool
    N/A
    siteId Number
    N/A
    debug Boolean
    Enable debug logging for this resource.
    descriptions List<Property Map>
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId String
    includePendingChanges Boolean
    N/A

    Outputs

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

    Gateways List<GaiaMaestroSiteGateway>
    Id string
    The provider-assigned unique ID for this managed resource.
    Gateways []GaiaMaestroSiteGateway
    Id string
    The provider-assigned unique ID for this managed resource.
    gateways list(object)
    id string
    The provider-assigned unique ID for this managed resource.
    gateways List<GaiaMaestroSiteGateway>
    id String
    The provider-assigned unique ID for this managed resource.
    gateways GaiaMaestroSiteGateway[]
    id string
    The provider-assigned unique ID for this managed resource.
    gateways Sequence[GaiaMaestroSiteGateway]
    id str
    The provider-assigned unique ID for this managed resource.
    gateways List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GaiaMaestroSite Resource

    Get an existing GaiaMaestroSite 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?: GaiaMaestroSiteState, opts?: CustomResourceOptions): GaiaMaestroSite
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            debug: Optional[bool] = None,
            descriptions: Optional[Sequence[GaiaMaestroSiteDescriptionArgs]] = None,
            gaia_maestro_site_id: Optional[str] = None,
            gateways: Optional[Sequence[GaiaMaestroSiteGatewayArgs]] = None,
            include_pending_changes: Optional[bool] = None,
            site_id: Optional[float] = None) -> GaiaMaestroSite
    func GetGaiaMaestroSite(ctx *Context, name string, id IDInput, state *GaiaMaestroSiteState, opts ...ResourceOption) (*GaiaMaestroSite, error)
    public static GaiaMaestroSite Get(string name, Input<string> id, GaiaMaestroSiteState? state, CustomResourceOptions? opts = null)
    public static GaiaMaestroSite get(String name, Output<String> id, GaiaMaestroSiteState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:GaiaMaestroSite    get:      id: ${id}
    import {
      to = checkpoint_gaiamaestrosite.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.
    Descriptions List<GaiaMaestroSiteDescription>
    Provide optional site description per Security Group descriptions blocks are documented below.
    GaiaMaestroSiteId string
    Gateways List<GaiaMaestroSiteGateway>
    IncludePendingChanges bool
    N/A
    SiteId double
    N/A
    Debug bool
    Enable debug logging for this resource.
    Descriptions []GaiaMaestroSiteDescriptionArgs
    Provide optional site description per Security Group descriptions blocks are documented below.
    GaiaMaestroSiteId string
    Gateways []GaiaMaestroSiteGatewayArgs
    IncludePendingChanges bool
    N/A
    SiteId float64
    N/A
    debug bool
    Enable debug logging for this resource.
    descriptions list(object)
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaia_maestro_site_id string
    gateways list(object)
    include_pending_changes bool
    N/A
    site_id number
    N/A
    debug Boolean
    Enable debug logging for this resource.
    descriptions List<GaiaMaestroSiteDescription>
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId String
    gateways List<GaiaMaestroSiteGateway>
    includePendingChanges Boolean
    N/A
    siteId Double
    N/A
    debug boolean
    Enable debug logging for this resource.
    descriptions GaiaMaestroSiteDescription[]
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId string
    gateways GaiaMaestroSiteGateway[]
    includePendingChanges boolean
    N/A
    siteId number
    N/A
    debug bool
    Enable debug logging for this resource.
    descriptions Sequence[GaiaMaestroSiteDescriptionArgs]
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaia_maestro_site_id str
    gateways Sequence[GaiaMaestroSiteGatewayArgs]
    include_pending_changes bool
    N/A
    site_id float
    N/A
    debug Boolean
    Enable debug logging for this resource.
    descriptions List<Property Map>
    Provide optional site description per Security Group descriptions blocks are documented below.
    gaiaMaestroSiteId String
    gateways List<Property Map>
    includePendingChanges Boolean
    N/A
    siteId Number
    N/A

    Supporting Types

    GaiaMaestroSiteDescription, GaiaMaestroSiteDescriptionArgs

    Description string
    Site description
    SecurityGroup double
    The Site Security Group
    Description string
    Site description
    SecurityGroup float64
    The Site Security Group
    description string
    Site description
    security_group number
    The Site Security Group
    description String
    Site description
    securityGroup Double
    The Site Security Group
    description string
    Site description
    securityGroup number
    The Site Security Group
    description str
    Site description
    security_group float
    The Site Security Group
    description String
    Site description
    securityGroup Number
    The Site Security Group

    GaiaMaestroSiteGateway, GaiaMaestroSiteGatewayArgs

    ResourceId string
    ResourceId string
    resourceId String
    resourceId string
    resourceId String

    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