published on Thursday, Jul 30, 2026 by checkpointsw
published on Thursday, Jul 30, 2026 by checkpointsw
This resource allows you to execute Check Point Update Cloud License.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementUpdateCloudLicense("example", {license: "192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666"});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementUpdateCloudLicense("example", license="192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666")
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.NewManagementUpdateCloudLicense(ctx, "example", &checkpoint.ManagementUpdateCloudLicenseArgs{
License: pulumi.String("192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666"),
})
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.ManagementUpdateCloudLicense("example", new()
{
License = "192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementUpdateCloudLicense;
import com.pulumi.checkpoint.ManagementUpdateCloudLicenseArgs;
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 ManagementUpdateCloudLicense("example", ManagementUpdateCloudLicenseArgs.builder()
.license("192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666")
.build());
}
}
resources:
example:
type: checkpoint:ManagementUpdateCloudLicense
properties:
license: 192.168.1.2 31Dec2026 dTTTTTT-WWWWWW-SSSSSSS-QQQQQQ CPSG-VE+5 CPBS-BECE CPSB-DFW CPSM-C-2 CPSB-VPN CPSB-NPM CPSB-LOGS CPSB-IA CPSB-ADNC CPSB-SSLVWPN-5 CK-66666666
Example coming soon!
Create ManagementUpdateCloudLicense Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementUpdateCloudLicense(name: string, args: ManagementUpdateCloudLicenseArgs, opts?: CustomResourceOptions);@overload
def ManagementUpdateCloudLicense(resource_name: str,
args: ManagementUpdateCloudLicenseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementUpdateCloudLicense(resource_name: str,
opts: Optional[ResourceOptions] = None,
license: Optional[str] = None,
management_update_cloud_license_id: Optional[str] = None)func NewManagementUpdateCloudLicense(ctx *Context, name string, args ManagementUpdateCloudLicenseArgs, opts ...ResourceOption) (*ManagementUpdateCloudLicense, error)public ManagementUpdateCloudLicense(string name, ManagementUpdateCloudLicenseArgs args, CustomResourceOptions? opts = null)
public ManagementUpdateCloudLicense(String name, ManagementUpdateCloudLicenseArgs args)
public ManagementUpdateCloudLicense(String name, ManagementUpdateCloudLicenseArgs args, CustomResourceOptions options)
type: checkpoint:ManagementUpdateCloudLicense
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_update_cloud_license" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementUpdateCloudLicenseArgs
- 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 ManagementUpdateCloudLicenseArgs
- 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 ManagementUpdateCloudLicenseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementUpdateCloudLicenseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementUpdateCloudLicenseArgs
- 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 managementUpdateCloudLicenseResource = new Checkpoint.ManagementUpdateCloudLicense("managementUpdateCloudLicenseResource", new()
{
License = "string",
ManagementUpdateCloudLicenseId = "string",
});
example, err := checkpoint.NewManagementUpdateCloudLicense(ctx, "managementUpdateCloudLicenseResource", &checkpoint.ManagementUpdateCloudLicenseArgs{
License: pulumi.String("string"),
ManagementUpdateCloudLicenseId: pulumi.String("string"),
})
resource "checkpoint_management_update_cloud_license" "managementUpdateCloudLicenseResource" {
lifecycle {
create_before_destroy = true
}
license = "string"
management_update_cloud_license_id = "string"
}
var managementUpdateCloudLicenseResource = new ManagementUpdateCloudLicense("managementUpdateCloudLicenseResource", ManagementUpdateCloudLicenseArgs.builder()
.license("string")
.managementUpdateCloudLicenseId("string")
.build());
management_update_cloud_license_resource = checkpoint.ManagementUpdateCloudLicense("managementUpdateCloudLicenseResource",
license="string",
management_update_cloud_license_id="string")
const managementUpdateCloudLicenseResource = new checkpoint.ManagementUpdateCloudLicense("managementUpdateCloudLicenseResource", {
license: "string",
managementUpdateCloudLicenseId: "string",
});
type: checkpoint:ManagementUpdateCloudLicense
properties:
license: string
managementUpdateCloudLicenseId: string
ManagementUpdateCloudLicense 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 ManagementUpdateCloudLicense resource accepts the following input properties:
- License string
- The updated license string received from the User Center - without 'cplic put'.
- Management
Update stringCloud License Id
- License string
- The updated license string received from the User Center - without 'cplic put'.
- Management
Update stringCloud License Id
- license string
- The updated license string received from the User Center - without 'cplic put'.
- management_
update_ stringcloud_ license_ id
- license String
- The updated license string received from the User Center - without 'cplic put'.
- management
Update StringCloud License Id
- license string
- The updated license string received from the User Center - without 'cplic put'.
- management
Update stringCloud License Id
- license str
- The updated license string received from the User Center - without 'cplic put'.
- management_
update_ strcloud_ license_ id
- license String
- The updated license string received from the User Center - without 'cplic put'.
- management
Update StringCloud License Id
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementUpdateCloudLicense resource produces the following output properties:
Look up Existing ManagementUpdateCloudLicense Resource
Get an existing ManagementUpdateCloudLicense 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?: ManagementUpdateCloudLicenseState, opts?: CustomResourceOptions): ManagementUpdateCloudLicense@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
license: Optional[str] = None,
management_update_cloud_license_id: Optional[str] = None,
task_id: Optional[str] = None) -> ManagementUpdateCloudLicensefunc GetManagementUpdateCloudLicense(ctx *Context, name string, id IDInput, state *ManagementUpdateCloudLicenseState, opts ...ResourceOption) (*ManagementUpdateCloudLicense, error)public static ManagementUpdateCloudLicense Get(string name, Input<string> id, ManagementUpdateCloudLicenseState? state, CustomResourceOptions? opts = null)public static ManagementUpdateCloudLicense get(String name, Output<String> id, ManagementUpdateCloudLicenseState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementUpdateCloudLicense get: id: ${id}import {
to = checkpoint_management_update_cloud_license.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.
- License string
- The updated license string received from the User Center - without 'cplic put'.
- Management
Update stringCloud License Id - Task
Id string - update-cloud-license task UID. Use show-task command to check the progress of the task.
- License string
- The updated license string received from the User Center - without 'cplic put'.
- Management
Update stringCloud License Id - Task
Id string - update-cloud-license task UID. Use show-task command to check the progress of the task.
- license string
- The updated license string received from the User Center - without 'cplic put'.
- management_
update_ stringcloud_ license_ id - task_
id string - update-cloud-license task UID. Use show-task command to check the progress of the task.
- license String
- The updated license string received from the User Center - without 'cplic put'.
- management
Update StringCloud License Id - task
Id String - update-cloud-license task UID. Use show-task command to check the progress of the task.
- license string
- The updated license string received from the User Center - without 'cplic put'.
- management
Update stringCloud License Id - task
Id string - update-cloud-license task UID. Use show-task command to check the progress of the task.
- license str
- The updated license string received from the User Center - without 'cplic put'.
- management_
update_ strcloud_ license_ id - task_
id str - update-cloud-license task UID. Use show-task command to check the progress of the task.
- license String
- The updated license string received from the User Center - without 'cplic put'.
- management
Update StringCloud License Id - task
Id String - update-cloud-license 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
checkpointTerraform Provider.
published on Thursday, Jul 30, 2026 by checkpointsw