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 Scope.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementSetCloudLicenseScope("example", {mode: "mds"});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementSetCloudLicenseScope("example", mode="mds")
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.NewManagementSetCloudLicenseScope(ctx, "example", &checkpoint.ManagementSetCloudLicenseScopeArgs{
Mode: pulumi.String("mds"),
})
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.ManagementSetCloudLicenseScope("example", new()
{
Mode = "mds",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementSetCloudLicenseScope;
import com.pulumi.checkpoint.ManagementSetCloudLicenseScopeArgs;
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 ManagementSetCloudLicenseScope("example", ManagementSetCloudLicenseScopeArgs.builder()
.mode("mds")
.build());
}
}
resources:
example:
type: checkpoint:ManagementSetCloudLicenseScope
properties:
mode: mds
Example coming soon!
Create ManagementSetCloudLicenseScope Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetCloudLicenseScope(name: string, args: ManagementSetCloudLicenseScopeArgs, opts?: CustomResourceOptions);@overload
def ManagementSetCloudLicenseScope(resource_name: str,
args: ManagementSetCloudLicenseScopeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetCloudLicenseScope(resource_name: str,
opts: Optional[ResourceOptions] = None,
mode: Optional[str] = None,
management_set_cloud_license_scope_id: Optional[str] = None)func NewManagementSetCloudLicenseScope(ctx *Context, name string, args ManagementSetCloudLicenseScopeArgs, opts ...ResourceOption) (*ManagementSetCloudLicenseScope, error)public ManagementSetCloudLicenseScope(string name, ManagementSetCloudLicenseScopeArgs args, CustomResourceOptions? opts = null)
public ManagementSetCloudLicenseScope(String name, ManagementSetCloudLicenseScopeArgs args)
public ManagementSetCloudLicenseScope(String name, ManagementSetCloudLicenseScopeArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetCloudLicenseScope
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "checkpoint_management_set_cloud_license_scope" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagementSetCloudLicenseScopeArgs
- 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 ManagementSetCloudLicenseScopeArgs
- 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 ManagementSetCloudLicenseScopeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetCloudLicenseScopeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetCloudLicenseScopeArgs
- 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 managementSetCloudLicenseScopeResource = new Checkpoint.ManagementSetCloudLicenseScope("managementSetCloudLicenseScopeResource", new()
{
Mode = "string",
ManagementSetCloudLicenseScopeId = "string",
});
example, err := checkpoint.NewManagementSetCloudLicenseScope(ctx, "managementSetCloudLicenseScopeResource", &checkpoint.ManagementSetCloudLicenseScopeArgs{
Mode: pulumi.String("string"),
ManagementSetCloudLicenseScopeId: pulumi.String("string"),
})
resource "checkpoint_management_set_cloud_license_scope" "managementSetCloudLicenseScopeResource" {
lifecycle {
create_before_destroy = true
}
mode = "string"
management_set_cloud_license_scope_id = "string"
}
var managementSetCloudLicenseScopeResource = new ManagementSetCloudLicenseScope("managementSetCloudLicenseScopeResource", ManagementSetCloudLicenseScopeArgs.builder()
.mode("string")
.managementSetCloudLicenseScopeId("string")
.build());
management_set_cloud_license_scope_resource = checkpoint.ManagementSetCloudLicenseScope("managementSetCloudLicenseScopeResource",
mode="string",
management_set_cloud_license_scope_id="string")
const managementSetCloudLicenseScopeResource = new checkpoint.ManagementSetCloudLicenseScope("managementSetCloudLicenseScopeResource", {
mode: "string",
managementSetCloudLicenseScopeId: "string",
});
type: checkpoint:ManagementSetCloudLicenseScope
properties:
managementSetCloudLicenseScopeId: string
mode: string
ManagementSetCloudLicenseScope 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 ManagementSetCloudLicenseScope resource accepts the following input properties:
- Mode string
- Set cloud license scope mode.
- Management
Set stringCloud License Scope Id
- Mode string
- Set cloud license scope mode.
- Management
Set stringCloud License Scope Id
- mode string
- Set cloud license scope mode.
- management_
set_ stringcloud_ license_ scope_ id
- mode String
- Set cloud license scope mode.
- management
Set StringCloud License Scope Id
- mode string
- Set cloud license scope mode.
- management
Set stringCloud License Scope Id
- mode str
- Set cloud license scope mode.
- management_
set_ strcloud_ license_ scope_ id
- mode String
- Set cloud license scope mode.
- management
Set StringCloud License Scope Id
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetCloudLicenseScope resource produces the following output properties:
Look up Existing ManagementSetCloudLicenseScope Resource
Get an existing ManagementSetCloudLicenseScope 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?: ManagementSetCloudLicenseScopeState, opts?: CustomResourceOptions): ManagementSetCloudLicenseScope@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
management_set_cloud_license_scope_id: Optional[str] = None,
mode: Optional[str] = None,
task_id: Optional[str] = None) -> ManagementSetCloudLicenseScopefunc GetManagementSetCloudLicenseScope(ctx *Context, name string, id IDInput, state *ManagementSetCloudLicenseScopeState, opts ...ResourceOption) (*ManagementSetCloudLicenseScope, error)public static ManagementSetCloudLicenseScope Get(string name, Input<string> id, ManagementSetCloudLicenseScopeState? state, CustomResourceOptions? opts = null)public static ManagementSetCloudLicenseScope get(String name, Output<String> id, ManagementSetCloudLicenseScopeState state, CustomResourceOptions options)resources: _: type: checkpoint:ManagementSetCloudLicenseScope get: id: ${id}import {
to = checkpoint_management_set_cloud_license_scope.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.
- Management
Set stringCloud License Scope Id - Mode string
- Set cloud license scope mode.
- Task
Id string - Asynchronous task unique identifier.
- Management
Set stringCloud License Scope Id - Mode string
- Set cloud license scope mode.
- Task
Id string - Asynchronous task unique identifier.
- management_
set_ stringcloud_ license_ scope_ id - mode string
- Set cloud license scope mode.
- task_
id string - Asynchronous task unique identifier.
- management
Set StringCloud License Scope Id - mode String
- Set cloud license scope mode.
- task
Id String - Asynchronous task unique identifier.
- management
Set stringCloud License Scope Id - mode string
- Set cloud license scope mode.
- task
Id string - Asynchronous task unique identifier.
- management_
set_ strcloud_ license_ scope_ id - mode str
- Set cloud license scope mode.
- task_
id str - Asynchronous task unique identifier.
- management
Set StringCloud License Scope Id - mode String
- Set cloud license scope mode.
- task
Id String - Asynchronous task unique identifier.
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