published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
This resource allows you to execute Check Point Set Cloud License Pool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementSetCloudLicensePool("example", {pool: "VE-NGTX"});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementSetCloudLicensePool("example", pool="VE-NGTX")
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.NewManagementSetCloudLicensePool(ctx, "example", &checkpoint.ManagementSetCloudLicensePoolArgs{
Pool: pulumi.String("VE-NGTX"),
})
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.ManagementSetCloudLicensePool("example", new()
{
Pool = "VE-NGTX",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementSetCloudLicensePool;
import com.pulumi.checkpoint.ManagementSetCloudLicensePoolArgs;
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 ManagementSetCloudLicensePool("example", ManagementSetCloudLicensePoolArgs.builder()
.pool("VE-NGTX")
.build());
}
}
resources:
example:
type: checkpoint:ManagementSetCloudLicensePool
properties:
pool: VE-NGTX
Example coming soon!
Create ManagementSetCloudLicensePool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetCloudLicensePool(name: string, args: ManagementSetCloudLicensePoolArgs, opts?: CustomResourceOptions);@overload
def ManagementSetCloudLicensePool(resource_name: str,
args: ManagementSetCloudLicensePoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetCloudLicensePool(resource_name: str,
opts: Optional[ResourceOptions] = None,
pool: Optional[str] = None,
assigned_gateways: Optional[Sequence[ManagementSetCloudLicensePoolAssignedGatewayArgs]] = None,
ck: Optional[str] = None,
default_pool: Optional[bool] = None,
management_set_cloud_license_pool_id: Optional[str] = None,
migrate_gateways: Optional[bool] = None)func NewManagementSetCloudLicensePool(ctx *Context, name string, args ManagementSetCloudLicensePoolArgs, opts ...ResourceOption) (*ManagementSetCloudLicensePool, error)public ManagementSetCloudLicensePool(string name, ManagementSetCloudLicensePoolArgs args, CustomResourceOptions? opts = null)
public ManagementSetCloudLicensePool(String name, ManagementSetCloudLicensePoolArgs args)
public ManagementSetCloudLicensePool(String name, ManagementSetCloudLicensePoolArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetCloudLicensePool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_set_cloud_license_pool" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementSetCloudLicensePoolArgs
- 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 ManagementSetCloudLicensePoolArgs
- 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 ManagementSetCloudLicensePoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetCloudLicensePoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetCloudLicensePoolArgs
- 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 managementSetCloudLicensePoolResource = new Checkpoint.ManagementSetCloudLicensePool("managementSetCloudLicensePoolResource", new()
{
Pool = "string",
AssignedGateways = new[]
{
new Checkpoint.Inputs.ManagementSetCloudLicensePoolAssignedGatewayArgs
{
Domain = "string",
Gateway = "string",
},
},
Ck = "string",
DefaultPool = false,
ManagementSetCloudLicensePoolId = "string",
MigrateGateways = false,
});
example, err := checkpoint.NewManagementSetCloudLicensePool(ctx, "managementSetCloudLicensePoolResource", &checkpoint.ManagementSetCloudLicensePoolArgs{
Pool: pulumi.String("string"),
AssignedGateways: checkpoint.ManagementSetCloudLicensePoolAssignedGatewayArray{
&checkpoint.ManagementSetCloudLicensePoolAssignedGatewayArgs{
Domain: pulumi.String("string"),
Gateway: pulumi.String("string"),
},
},
Ck: pulumi.String("string"),
DefaultPool: pulumi.Bool(false),
ManagementSetCloudLicensePoolId: pulumi.String("string"),
MigrateGateways: pulumi.Bool(false),
})
resource "checkpoint_management_set_cloud_license_pool" "managementSetCloudLicensePoolResource" {
lifecycle {
create_before_destroy = true
}
pool = "string"
assigned_gateways {
domain = "string"
gateway = "string"
}
ck = "string"
default_pool = false
management_set_cloud_license_pool_id = "string"
migrate_gateways = false
}
var managementSetCloudLicensePoolResource = new ManagementSetCloudLicensePool("managementSetCloudLicensePoolResource", ManagementSetCloudLicensePoolArgs.builder()
.pool("string")
.assignedGateways(ManagementSetCloudLicensePoolAssignedGatewayArgs.builder()
.domain("string")
.gateway("string")
.build())
.ck("string")
.defaultPool(false)
.managementSetCloudLicensePoolId("string")
.migrateGateways(false)
.build());
management_set_cloud_license_pool_resource = checkpoint.ManagementSetCloudLicensePool("managementSetCloudLicensePoolResource",
pool="string",
assigned_gateways=[{
"domain": "string",
"gateway": "string",
}],
ck="string",
default_pool=False,
management_set_cloud_license_pool_id="string",
migrate_gateways=False)
const managementSetCloudLicensePoolResource = new checkpoint.ManagementSetCloudLicensePool("managementSetCloudLicensePoolResource", {
pool: "string",
assignedGateways: [{
domain: "string",
gateway: "string",
}],
ck: "string",
defaultPool: false,
managementSetCloudLicensePoolId: "string",
migrateGateways: false,
});
type: checkpoint:ManagementSetCloudLicensePool
properties:
assignedGateways:
- domain: string
gateway: string
ck: string
defaultPool: false
managementSetCloudLicensePoolId: string
migrateGateways: false
pool: string
ManagementSetCloudLicensePool 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 ManagementSetCloudLicensePool resource accepts the following input properties:
- Pool string
- Pool name.
- Assigned
Gateways List<ManagementSet Cloud License Pool Assigned Gateway> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- Ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- Default
Pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- Management
Set stringCloud License Pool Id - Migrate
Gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- Pool string
- Pool name.
- Assigned
Gateways []ManagementSet Cloud License Pool Assigned Gateway Args - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- Ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- Default
Pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- Management
Set stringCloud License Pool Id - Migrate
Gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool string
- Pool name.
- assigned_
gateways list(object) - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default_
pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management_
set_ stringcloud_ license_ pool_ id - migrate_
gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool String
- Pool name.
- assigned
Gateways List<ManagementSet Cloud License Pool Assigned Gateway> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck String
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool Boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set StringCloud License Pool Id - migrate
Gateways Boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool string
- Pool name.
- assigned
Gateways ManagementSet Cloud License Pool Assigned Gateway[] - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set stringCloud License Pool Id - migrate
Gateways boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool str
- Pool name.
- assigned_
gateways Sequence[ManagementSet Cloud License Pool Assigned Gateway Args] - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck str
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default_
pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management_
set_ strcloud_ license_ pool_ id - migrate_
gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool String
- Pool name.
- assigned
Gateways List<Property Map> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck String
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool Boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set StringCloud License Pool Id - migrate
Gateways Boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetCloudLicensePool resource produces the following output properties:
Look up Existing ManagementSetCloudLicensePool Resource
Get an existing ManagementSetCloudLicensePool 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?: ManagementSetCloudLicensePoolState, opts?: CustomResourceOptions): ManagementSetCloudLicensePool@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
assigned_gateways: Optional[Sequence[ManagementSetCloudLicensePoolAssignedGatewayArgs]] = None,
ck: Optional[str] = None,
default_pool: Optional[bool] = None,
management_set_cloud_license_pool_id: Optional[str] = None,
migrate_gateways: Optional[bool] = None,
pool: Optional[str] = None,
task_id: Optional[str] = None) -> ManagementSetCloudLicensePoolfunc GetManagementSetCloudLicensePool(ctx *Context, name string, id IDInput, state *ManagementSetCloudLicensePoolState, opts ...ResourceOption) (*ManagementSetCloudLicensePool, error)public static ManagementSetCloudLicensePool Get(string name, Input<string> id, ManagementSetCloudLicensePoolState? state, CustomResourceOptions? opts = null)public static ManagementSetCloudLicensePool get(String name, Output<String> id, ManagementSetCloudLicensePoolState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementSetCloudLicensePool get: id: ${id}import {
to = checkpoint_management_set_cloud_license_pool.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.
- Assigned
Gateways List<ManagementSet Cloud License Pool Assigned Gateway> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- Ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- Default
Pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- Management
Set stringCloud License Pool Id - Migrate
Gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- Pool string
- Pool name.
- Task
Id string - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- Assigned
Gateways []ManagementSet Cloud License Pool Assigned Gateway Args - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- Ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- Default
Pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- Management
Set stringCloud License Pool Id - Migrate
Gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- Pool string
- Pool name.
- Task
Id string - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- assigned_
gateways list(object) - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default_
pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management_
set_ stringcloud_ license_ pool_ id - migrate_
gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool string
- Pool name.
- task_
id string - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- assigned
Gateways List<ManagementSet Cloud License Pool Assigned Gateway> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck String
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool Boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set StringCloud License Pool Id - migrate
Gateways Boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool String
- Pool name.
- task
Id String - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- assigned
Gateways ManagementSet Cloud License Pool Assigned Gateway[] - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck string
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set stringCloud License Pool Id - migrate
Gateways boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool string
- Pool name.
- task
Id string - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- assigned_
gateways Sequence[ManagementSet Cloud License Pool Assigned Gateway Args] - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck str
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default_
pool bool - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management_
set_ strcloud_ license_ pool_ id - migrate_
gateways bool - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool str
- Pool name.
- task_
id str - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
- assigned
Gateways List<Property Map> - Attach security gateways to the pool. The attached gateways will use licenses from this pool.assigned_gateways blocks are documented below.
- ck String
- Contract Key. Required to identify a specific pool when multiple pools share the same name.
- default
Pool Boolean - Set pool to default. This value can only be changed from false to true. To disable the current default pool, you must set a different pool as the default.
- management
Set StringCloud License Pool Id - migrate
Gateways Boolean - Move gateways from current default pool to the new default pool. Required when default-pool parameter is set to true.
- pool String
- Pool name.
- task
Id String - set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
Supporting Types
ManagementSetCloudLicensePoolAssignedGateway, ManagementSetCloudLicensePoolAssignedGatewayArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
published on Thursday, Jul 30, 2026 by checkpointsw