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

checkpoint.ManagementInstallDatabase

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    Create ManagementInstallDatabase Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args ManagementInstallDatabaseArgs
    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 ManagementInstallDatabaseArgs
    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 ManagementInstallDatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementInstallDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementInstallDatabaseArgs
    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 managementInstallDatabaseResource = new Checkpoint.ManagementInstallDatabase("managementInstallDatabaseResource", new()
    {
        Targets = new[]
        {
            "string",
        },
        ManagementInstallDatabaseId = "string",
    });
    
    example, err := checkpoint.NewManagementInstallDatabase(ctx, "managementInstallDatabaseResource", &checkpoint.ManagementInstallDatabaseArgs{
    	Targets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ManagementInstallDatabaseId: pulumi.String("string"),
    })
    
    var managementInstallDatabaseResource = new ManagementInstallDatabase("managementInstallDatabaseResource", ManagementInstallDatabaseArgs.builder()
        .targets("string")
        .managementInstallDatabaseId("string")
        .build());
    
    management_install_database_resource = checkpoint.ManagementInstallDatabase("managementInstallDatabaseResource",
        targets=["string"],
        management_install_database_id="string")
    
    const managementInstallDatabaseResource = new checkpoint.ManagementInstallDatabase("managementInstallDatabaseResource", {
        targets: ["string"],
        managementInstallDatabaseId: "string",
    });
    
    type: checkpoint:ManagementInstallDatabase
    properties:
        managementInstallDatabaseId: string
        targets:
            - string
    

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

    Targets List<string>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    ManagementInstallDatabaseId string
    Targets []string
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    ManagementInstallDatabaseId string
    targets List<String>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    managementInstallDatabaseId String
    targets string[]
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    managementInstallDatabaseId string
    targets Sequence[str]
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    management_install_database_id str
    targets List<String>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    managementInstallDatabaseId String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tasks List<string>
    Collection of asynchronous task unique identifiers.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tasks []string
    Collection of asynchronous task unique identifiers.
    id String
    The provider-assigned unique ID for this managed resource.
    tasks List<String>
    Collection of asynchronous task unique identifiers.
    id string
    The provider-assigned unique ID for this managed resource.
    tasks string[]
    Collection of asynchronous task unique identifiers.
    id str
    The provider-assigned unique ID for this managed resource.
    tasks Sequence[str]
    Collection of asynchronous task unique identifiers.
    id String
    The provider-assigned unique ID for this managed resource.
    tasks List<String>
    Collection of asynchronous task unique identifiers.

    Look up Existing ManagementInstallDatabase Resource

    Get an existing ManagementInstallDatabase 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?: ManagementInstallDatabaseState, opts?: CustomResourceOptions): ManagementInstallDatabase
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            management_install_database_id: Optional[str] = None,
            targets: Optional[Sequence[str]] = None,
            tasks: Optional[Sequence[str]] = None) -> ManagementInstallDatabase
    func GetManagementInstallDatabase(ctx *Context, name string, id IDInput, state *ManagementInstallDatabaseState, opts ...ResourceOption) (*ManagementInstallDatabase, error)
    public static ManagementInstallDatabase Get(string name, Input<string> id, ManagementInstallDatabaseState? state, CustomResourceOptions? opts = null)
    public static ManagementInstallDatabase get(String name, Output<String> id, ManagementInstallDatabaseState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementInstallDatabase    get:      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:
    ManagementInstallDatabaseId string
    Targets List<string>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    Tasks List<string>
    Collection of asynchronous task unique identifiers.
    ManagementInstallDatabaseId string
    Targets []string
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    Tasks []string
    Collection of asynchronous task unique identifiers.
    managementInstallDatabaseId String
    targets List<String>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    tasks List<String>
    Collection of asynchronous task unique identifiers.
    managementInstallDatabaseId string
    targets string[]
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    tasks string[]
    Collection of asynchronous task unique identifiers.
    management_install_database_id str
    targets Sequence[str]
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    tasks Sequence[str]
    Collection of asynchronous task unique identifiers.
    managementInstallDatabaseId String
    targets List<String>
    Check Point host(s) with one or more Management Software Blades enabled. The targets can be identified by their name or unique identifier.targets blocks are documented below.
    tasks List<String>
    Collection of asynchronous task unique identifiers.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw