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 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:
- Site
Id double - N/A
- Debug bool
- Enable debug logging for this resource.
- Descriptions
List<Gaia
Maestro Site Description> - Provide optional site description per Security Group descriptions blocks are documented below.
- Gaia
Maestro stringSite Id - Include
Pending boolChanges - N/A
- Site
Id float64 - N/A
- Debug bool
- Enable debug logging for this resource.
- Descriptions
[]Gaia
Maestro Site Description Args - Provide optional site description per Security Group descriptions blocks are documented below.
- Gaia
Maestro stringSite Id - Include
Pending boolChanges - 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_ stringsite_ id - include_
pending_ boolchanges - N/A
- site
Id Double - N/A
- debug Boolean
- Enable debug logging for this resource.
- descriptions
List<Gaia
Maestro Site Description> - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia
Maestro StringSite Id - include
Pending BooleanChanges - N/A
- site
Id number - N/A
- debug boolean
- Enable debug logging for this resource.
- descriptions
Gaia
Maestro Site Description[] - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia
Maestro stringSite Id - include
Pending booleanChanges - N/A
- site_
id float - N/A
- debug bool
- Enable debug logging for this resource.
- descriptions
Sequence[Gaia
Maestro Site Description Args] - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia_
maestro_ strsite_ id - include_
pending_ boolchanges - N/A
- site
Id 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.
- gaia
Maestro StringSite Id - include
Pending BooleanChanges - N/A
Outputs
All input properties are implicitly available as output properties. Additionally, the GaiaMaestroSite resource produces the following output properties:
- Gateways
List<Gaia
Maestro Site Gateway> - Id string
- The provider-assigned unique ID for this managed resource.
- Gateways
[]Gaia
Maestro Site Gateway - 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<Gaia
Maestro Site Gateway> - id String
- The provider-assigned unique ID for this managed resource.
- gateways
Gaia
Maestro Site Gateway[] - id string
- The provider-assigned unique ID for this managed resource.
- gateways
Sequence[Gaia
Maestro Site Gateway] - 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) -> GaiaMaestroSitefunc 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.
- Debug bool
- Enable debug logging for this resource.
- Descriptions
List<Gaia
Maestro Site Description> - Provide optional site description per Security Group descriptions blocks are documented below.
- Gaia
Maestro stringSite Id - Gateways
List<Gaia
Maestro Site Gateway> - Include
Pending boolChanges - N/A
- Site
Id double - N/A
- Debug bool
- Enable debug logging for this resource.
- Descriptions
[]Gaia
Maestro Site Description Args - Provide optional site description per Security Group descriptions blocks are documented below.
- Gaia
Maestro stringSite Id - Gateways
[]Gaia
Maestro Site Gateway Args - Include
Pending boolChanges - N/A
- Site
Id 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_ stringsite_ id - gateways list(object)
- include_
pending_ boolchanges - N/A
- site_
id number - N/A
- debug Boolean
- Enable debug logging for this resource.
- descriptions
List<Gaia
Maestro Site Description> - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia
Maestro StringSite Id - gateways
List<Gaia
Maestro Site Gateway> - include
Pending BooleanChanges - N/A
- site
Id Double - N/A
- debug boolean
- Enable debug logging for this resource.
- descriptions
Gaia
Maestro Site Description[] - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia
Maestro stringSite Id - gateways
Gaia
Maestro Site Gateway[] - include
Pending booleanChanges - N/A
- site
Id number - N/A
- debug bool
- Enable debug logging for this resource.
- descriptions
Sequence[Gaia
Maestro Site Description Args] - Provide optional site description per Security Group descriptions blocks are documented below.
- gaia_
maestro_ strsite_ id - gateways
Sequence[Gaia
Maestro Site Gateway Args] - include_
pending_ boolchanges - 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.
- gaia
Maestro StringSite Id - gateways List<Property Map>
- include
Pending BooleanChanges - N/A
- site
Id Number - N/A
Supporting Types
GaiaMaestroSiteDescription, GaiaMaestroSiteDescriptionArgs
- Description string
- Site description
- Security
Group double - The Site Security Group
- Description string
- Site description
- Security
Group float64 - The Site Security Group
- description string
- Site description
- security_
group number - The Site Security Group
- description String
- Site description
- security
Group Double - The Site Security Group
- description string
- Site description
- security
Group number - The Site Security Group
- description str
- Site description
- security_
group float - The Site Security Group
- description String
- Site description
- security
Group Number - The Site Security Group
GaiaMaestroSiteGateway, GaiaMaestroSiteGatewayArgs
- Resource
Id string
- Resource
Id string
- resource_
id string
- resource
Id String
- resource
Id string
- resource_
id str
- resource
Id String
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