1. Packages
  2. Packages
  3. Checkpoint Provider
  4. API Docs
  5. ManagementSetCloudLicenseGateway
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 Gateway.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const example = new checkpoint.ManagementSetCloudLicenseGateway("example", {
        gateway: "Gateway_0.0.0.0",
        enableAutoDistribution: true,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    example = checkpoint.ManagementSetCloudLicenseGateway("example",
        gateway="Gateway_0.0.0.0",
        enable_auto_distribution=True)
    
    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.NewManagementSetCloudLicenseGateway(ctx, "example", &checkpoint.ManagementSetCloudLicenseGatewayArgs{
    			Gateway:                pulumi.String("Gateway_0.0.0.0"),
    			EnableAutoDistribution: pulumi.Bool(true),
    		})
    		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.ManagementSetCloudLicenseGateway("example", new()
        {
            Gateway = "Gateway_0.0.0.0",
            EnableAutoDistribution = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementSetCloudLicenseGateway;
    import com.pulumi.checkpoint.ManagementSetCloudLicenseGatewayArgs;
    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 ManagementSetCloudLicenseGateway("example", ManagementSetCloudLicenseGatewayArgs.builder()
                .gateway("Gateway_0.0.0.0")
                .enableAutoDistribution(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: checkpoint:ManagementSetCloudLicenseGateway
        properties:
          gateway: Gateway_0.0.0.0
          enableAutoDistribution: true
    
    Example coming soon!
    

    Create ManagementSetCloudLicenseGateway Resource

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

    Constructor syntax

    new ManagementSetCloudLicenseGateway(name: string, args: ManagementSetCloudLicenseGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementSetCloudLicenseGateway(resource_name: str,
                                         args: ManagementSetCloudLicenseGatewayArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementSetCloudLicenseGateway(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         enable_auto_distribution: Optional[bool] = None,
                                         gateway: Optional[str] = None,
                                         domain: Optional[str] = None,
                                         management_set_cloud_license_gateway_id: Optional[str] = None)
    func NewManagementSetCloudLicenseGateway(ctx *Context, name string, args ManagementSetCloudLicenseGatewayArgs, opts ...ResourceOption) (*ManagementSetCloudLicenseGateway, error)
    public ManagementSetCloudLicenseGateway(string name, ManagementSetCloudLicenseGatewayArgs args, CustomResourceOptions? opts = null)
    public ManagementSetCloudLicenseGateway(String name, ManagementSetCloudLicenseGatewayArgs args)
    public ManagementSetCloudLicenseGateway(String name, ManagementSetCloudLicenseGatewayArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementSetCloudLicenseGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "checkpoint_management_set_cloud_license_gateway" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementSetCloudLicenseGatewayArgs
    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 ManagementSetCloudLicenseGatewayArgs
    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 ManagementSetCloudLicenseGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementSetCloudLicenseGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementSetCloudLicenseGatewayArgs
    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 managementSetCloudLicenseGatewayResource = new Checkpoint.ManagementSetCloudLicenseGateway("managementSetCloudLicenseGatewayResource", new()
    {
        EnableAutoDistribution = false,
        Gateway = "string",
        Domain = "string",
        ManagementSetCloudLicenseGatewayId = "string",
    });
    
    example, err := checkpoint.NewManagementSetCloudLicenseGateway(ctx, "managementSetCloudLicenseGatewayResource", &checkpoint.ManagementSetCloudLicenseGatewayArgs{
    	EnableAutoDistribution:             pulumi.Bool(false),
    	Gateway:                            pulumi.String("string"),
    	Domain:                             pulumi.String("string"),
    	ManagementSetCloudLicenseGatewayId: pulumi.String("string"),
    })
    
    resource "checkpoint_management_set_cloud_license_gateway" "managementSetCloudLicenseGatewayResource" {
      lifecycle {
        create_before_destroy = true
      }
      enable_auto_distribution                = false
      gateway                                 = "string"
      domain                                  = "string"
      management_set_cloud_license_gateway_id = "string"
    }
    
    var managementSetCloudLicenseGatewayResource = new ManagementSetCloudLicenseGateway("managementSetCloudLicenseGatewayResource", ManagementSetCloudLicenseGatewayArgs.builder()
        .enableAutoDistribution(false)
        .gateway("string")
        .domain("string")
        .managementSetCloudLicenseGatewayId("string")
        .build());
    
    management_set_cloud_license_gateway_resource = checkpoint.ManagementSetCloudLicenseGateway("managementSetCloudLicenseGatewayResource",
        enable_auto_distribution=False,
        gateway="string",
        domain="string",
        management_set_cloud_license_gateway_id="string")
    
    const managementSetCloudLicenseGatewayResource = new checkpoint.ManagementSetCloudLicenseGateway("managementSetCloudLicenseGatewayResource", {
        enableAutoDistribution: false,
        gateway: "string",
        domain: "string",
        managementSetCloudLicenseGatewayId: "string",
    });
    
    type: checkpoint:ManagementSetCloudLicenseGateway
    properties:
        domain: string
        enableAutoDistribution: false
        gateway: string
        managementSetCloudLicenseGatewayId: string
    

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

    EnableAutoDistribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    Gateway string
    Security gateway name or UID to set.
    Domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    ManagementSetCloudLicenseGatewayId string
    EnableAutoDistribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    Gateway string
    Security gateway name or UID to set.
    Domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    ManagementSetCloudLicenseGatewayId string
    enable_auto_distribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway string
    Security gateway name or UID to set.
    domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    management_set_cloud_license_gateway_id string
    enableAutoDistribution Boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway String
    Security gateway name or UID to set.
    domain String
    Domain name or UID for the gateway. Required when running from MDS context.
    managementSetCloudLicenseGatewayId String
    enableAutoDistribution boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway string
    Security gateway name or UID to set.
    domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    managementSetCloudLicenseGatewayId string
    enable_auto_distribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway str
    Security gateway name or UID to set.
    domain str
    Domain name or UID for the gateway. Required when running from MDS context.
    management_set_cloud_license_gateway_id str
    enableAutoDistribution Boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway String
    Security gateway name or UID to set.
    domain String
    Domain name or UID for the gateway. Required when running from MDS context.
    managementSetCloudLicenseGatewayId String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    set-cloud-license-gateway 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-gateway 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-gateway 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-gateway 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-gateway 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-gateway 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-gateway task UID. Use show-task command to check the progress of the task.

    Look up Existing ManagementSetCloudLicenseGateway Resource

    Get an existing ManagementSetCloudLicenseGateway 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?: ManagementSetCloudLicenseGatewayState, opts?: CustomResourceOptions): ManagementSetCloudLicenseGateway
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain: Optional[str] = None,
            enable_auto_distribution: Optional[bool] = None,
            gateway: Optional[str] = None,
            management_set_cloud_license_gateway_id: Optional[str] = None,
            task_id: Optional[str] = None) -> ManagementSetCloudLicenseGateway
    func GetManagementSetCloudLicenseGateway(ctx *Context, name string, id IDInput, state *ManagementSetCloudLicenseGatewayState, opts ...ResourceOption) (*ManagementSetCloudLicenseGateway, error)
    public static ManagementSetCloudLicenseGateway Get(string name, Input<string> id, ManagementSetCloudLicenseGatewayState? state, CustomResourceOptions? opts = null)
    public static ManagementSetCloudLicenseGateway get(String name, Output<String> id, ManagementSetCloudLicenseGatewayState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementSetCloudLicenseGateway    get:      id: ${id}
    import {
      to = checkpoint_management_set_cloud_license_gateway.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:
    Domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    EnableAutoDistribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    Gateway string
    Security gateway name or UID to set.
    ManagementSetCloudLicenseGatewayId string
    TaskId string
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    Domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    EnableAutoDistribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    Gateway string
    Security gateway name or UID to set.
    ManagementSetCloudLicenseGatewayId string
    TaskId string
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    enable_auto_distribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway string
    Security gateway name or UID to set.
    management_set_cloud_license_gateway_id string
    task_id string
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    domain String
    Domain name or UID for the gateway. Required when running from MDS context.
    enableAutoDistribution Boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway String
    Security gateway name or UID to set.
    managementSetCloudLicenseGatewayId String
    taskId String
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    domain string
    Domain name or UID for the gateway. Required when running from MDS context.
    enableAutoDistribution boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway string
    Security gateway name or UID to set.
    managementSetCloudLicenseGatewayId string
    taskId string
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    domain str
    Domain name or UID for the gateway. Required when running from MDS context.
    enable_auto_distribution bool
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway str
    Security gateway name or UID to set.
    management_set_cloud_license_gateway_id str
    task_id str
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.
    domain String
    Domain name or UID for the gateway. Required when running from MDS context.
    enableAutoDistribution Boolean
    Enable or disable auto distribution of cloud licenses for the specified gateway.
    gateway String
    Security gateway name or UID to set.
    managementSetCloudLicenseGatewayId String
    taskId String
    set-cloud-license-gateway task UID. Use show-task command to check the progress of the task.

    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