1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementInstallLsmSettings
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementInstallLsmSettings

Explore with Pulumi AI

Create ManagementInstallLsmSettings Resource

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

Constructor syntax

new ManagementInstallLsmSettings(name: string, args: ManagementInstallLsmSettingsArgs, opts?: CustomResourceOptions);
@overload
def ManagementInstallLsmSettings(resource_name: str,
                                 args: ManagementInstallLsmSettingsArgs,
                                 opts: Optional[ResourceOptions] = None)

@overload
def ManagementInstallLsmSettings(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 targets: Optional[Sequence[str]] = None,
                                 management_install_lsm_settings_id: Optional[str] = None)
func NewManagementInstallLsmSettings(ctx *Context, name string, args ManagementInstallLsmSettingsArgs, opts ...ResourceOption) (*ManagementInstallLsmSettings, error)
public ManagementInstallLsmSettings(string name, ManagementInstallLsmSettingsArgs args, CustomResourceOptions? opts = null)
public ManagementInstallLsmSettings(String name, ManagementInstallLsmSettingsArgs args)
public ManagementInstallLsmSettings(String name, ManagementInstallLsmSettingsArgs args, CustomResourceOptions options)
type: checkpoint:ManagementInstallLsmSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagementInstallLsmSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagementInstallLsmSettingsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementInstallLsmSettingsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementInstallLsmSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementInstallLsmSettingsArgs
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 managementInstallLsmSettingsResource = new Checkpoint.ManagementInstallLsmSettings("managementInstallLsmSettingsResource", new()
{
    Targets = new[]
    {
        "string",
    },
    ManagementInstallLsmSettingsId = "string",
});
Copy
example, err := checkpoint.NewManagementInstallLsmSettings(ctx, "managementInstallLsmSettingsResource", &checkpoint.ManagementInstallLsmSettingsArgs{
Targets: pulumi.StringArray{
pulumi.String("string"),
},
ManagementInstallLsmSettingsId: pulumi.String("string"),
})
Copy
var managementInstallLsmSettingsResource = new ManagementInstallLsmSettings("managementInstallLsmSettingsResource", ManagementInstallLsmSettingsArgs.builder()
    .targets("string")
    .managementInstallLsmSettingsId("string")
    .build());
Copy
management_install_lsm_settings_resource = checkpoint.ManagementInstallLsmSettings("managementInstallLsmSettingsResource",
    targets=["string"],
    management_install_lsm_settings_id="string")
Copy
const managementInstallLsmSettingsResource = new checkpoint.ManagementInstallLsmSettings("managementInstallLsmSettingsResource", {
    targets: ["string"],
    managementInstallLsmSettingsId: "string",
});
Copy
type: checkpoint:ManagementInstallLsmSettings
properties:
    managementInstallLsmSettingsId: string
    targets:
        - string
Copy

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

Targets This property is required. List<string>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
ManagementInstallLsmSettingsId string
Targets This property is required. []string
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
ManagementInstallLsmSettingsId string
targets This property is required. List<String>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
managementInstallLsmSettingsId String
targets This property is required. string[]
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
managementInstallLsmSettingsId string
targets This property is required. Sequence[str]
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
management_install_lsm_settings_id str
targets This property is required. List<String>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
managementInstallLsmSettingsId String

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
TaskId string
Command asynchronous task unique identifier.
Id string
The provider-assigned unique ID for this managed resource.
TaskId string
Command asynchronous task unique identifier.
id String
The provider-assigned unique ID for this managed resource.
taskId String
Command asynchronous task unique identifier.
id string
The provider-assigned unique ID for this managed resource.
taskId string
Command asynchronous task unique identifier.
id str
The provider-assigned unique ID for this managed resource.
task_id str
Command asynchronous task unique identifier.
id String
The provider-assigned unique ID for this managed resource.
taskId String
Command asynchronous task unique identifier.

Look up Existing ManagementInstallLsmSettings Resource

Get an existing ManagementInstallLsmSettings 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?: ManagementInstallLsmSettingsState, opts?: CustomResourceOptions): ManagementInstallLsmSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        management_install_lsm_settings_id: Optional[str] = None,
        targets: Optional[Sequence[str]] = None,
        task_id: Optional[str] = None) -> ManagementInstallLsmSettings
func GetManagementInstallLsmSettings(ctx *Context, name string, id IDInput, state *ManagementInstallLsmSettingsState, opts ...ResourceOption) (*ManagementInstallLsmSettings, error)
public static ManagementInstallLsmSettings Get(string name, Input<string> id, ManagementInstallLsmSettingsState? state, CustomResourceOptions? opts = null)
public static ManagementInstallLsmSettings get(String name, Output<String> id, ManagementInstallLsmSettingsState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementInstallLsmSettings    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ManagementInstallLsmSettingsId string
Targets List<string>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
TaskId string
Command asynchronous task unique identifier.
ManagementInstallLsmSettingsId string
Targets []string
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
TaskId string
Command asynchronous task unique identifier.
managementInstallLsmSettingsId String
targets List<String>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
taskId String
Command asynchronous task unique identifier.
managementInstallLsmSettingsId string
targets string[]
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
taskId string
Command asynchronous task unique identifier.
management_install_lsm_settings_id str
targets Sequence[str]
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
task_id str
Command asynchronous task unique identifier.
managementInstallLsmSettingsId String
targets List<String>
On what targets to execute this command. Targets may be identified by their name, or object unique identifier.targets blocks are documented below.
taskId String
Command asynchronous task unique identifier.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.