1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementSetCloudLicensePool
Viewing docs for checkpoint 3.3.0
published on Thursday, Jul 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.3.0
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.
    AssignedGateways List<ManagementSetCloudLicensePoolAssignedGateway>
    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.
    DefaultPool 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.
    ManagementSetCloudLicensePoolId string
    MigrateGateways 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.
    AssignedGateways []ManagementSetCloudLicensePoolAssignedGatewayArgs
    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.
    DefaultPool 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.
    ManagementSetCloudLicensePoolId string
    MigrateGateways 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_cloud_license_pool_id string
    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.
    assignedGateways List<ManagementSetCloudLicensePoolAssignedGateway>
    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.
    defaultPool 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.
    managementSetCloudLicensePoolId String
    migrateGateways 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.
    assignedGateways ManagementSetCloudLicensePoolAssignedGateway[]
    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.
    defaultPool 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.
    managementSetCloudLicensePoolId string
    migrateGateways 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[ManagementSetCloudLicensePoolAssignedGatewayArgs]
    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_cloud_license_pool_id str
    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.
    assignedGateways 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.
    defaultPool 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.
    managementSetCloudLicensePoolId String
    migrateGateways 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:

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    id string
    The provider-assigned unique ID for this managed resource.
    task_id string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    id string
    The provider-assigned unique ID for this managed resource.
    taskId string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    id str
    The provider-assigned unique ID for this managed resource.
    task_id str
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.

    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) -> ManagementSetCloudLicensePool
    func 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.
    The following state arguments are supported:
    AssignedGateways List<ManagementSetCloudLicensePoolAssignedGateway>
    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.
    DefaultPool 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.
    ManagementSetCloudLicensePoolId string
    MigrateGateways 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.
    TaskId string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    AssignedGateways []ManagementSetCloudLicensePoolAssignedGatewayArgs
    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.
    DefaultPool 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.
    ManagementSetCloudLicensePoolId string
    MigrateGateways 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.
    TaskId 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_cloud_license_pool_id string
    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.
    assignedGateways List<ManagementSetCloudLicensePoolAssignedGateway>
    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.
    defaultPool 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.
    managementSetCloudLicensePoolId String
    migrateGateways 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.
    taskId String
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    assignedGateways ManagementSetCloudLicensePoolAssignedGateway[]
    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.
    defaultPool 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.
    managementSetCloudLicensePoolId string
    migrateGateways 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.
    taskId string
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.
    assigned_gateways Sequence[ManagementSetCloudLicensePoolAssignedGatewayArgs]
    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_cloud_license_pool_id str
    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.
    assignedGateways 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.
    defaultPool 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.
    managementSetCloudLicensePoolId String
    migrateGateways 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.
    taskId String
    set-cloud-license-pool task UID. Use show-task command to check the progress of the task.

    Supporting Types

    ManagementSetCloudLicensePoolAssignedGateway, ManagementSetCloudLicensePoolAssignedGatewayArgs

    Domain string
    Domain name or uid. Required when running from MDS context.
    Gateway string
    Gateway name or uid.
    Domain string
    Domain name or uid. Required when running from MDS context.
    Gateway string
    Gateway name or uid.
    domain string
    Domain name or uid. Required when running from MDS context.
    gateway string
    Gateway name or uid.
    domain String
    Domain name or uid. Required when running from MDS context.
    gateway String
    Gateway name or uid.
    domain string
    Domain name or uid. Required when running from MDS context.
    gateway string
    Gateway name or uid.
    domain str
    Domain name or uid. Required when running from MDS context.
    gateway str
    Gateway name or uid.
    domain String
    Domain name or uid. Required when running from MDS context.
    gateway String
    Gateway name or uid.

    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.3.0
    published on Thursday, Jul 30, 2026 by checkpointsw

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial