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

checkpoint.ManagementCmeManagement

Explore with Pulumi AI

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const mgmt = new checkpoint.ManagementCmeManagement("mgmt", {});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    mgmt = checkpoint.ManagementCmeManagement("mgmt")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := checkpoint.NewManagementCmeManagement(ctx, "mgmt", nil)
    		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 mgmt = new Checkpoint.ManagementCmeManagement("mgmt");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementCmeManagement;
    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 mgmt = new ManagementCmeManagement("mgmt");
    
        }
    }
    
    resources:
      mgmt:
        type: checkpoint:ManagementCmeManagement
    

    Create ManagementCmeManagement Resource

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

    Constructor syntax

    new ManagementCmeManagement(name: string, args?: ManagementCmeManagementArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementCmeManagement(resource_name: str,
                                args: Optional[ManagementCmeManagementArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementCmeManagement(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                domain: Optional[str] = None,
                                management_cme_management_id: Optional[str] = None,
                                name: Optional[str] = None)
    func NewManagementCmeManagement(ctx *Context, name string, args *ManagementCmeManagementArgs, opts ...ResourceOption) (*ManagementCmeManagement, error)
    public ManagementCmeManagement(string name, ManagementCmeManagementArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementCmeManagement(String name, ManagementCmeManagementArgs args)
    public ManagementCmeManagement(String name, ManagementCmeManagementArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementCmeManagement
    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 ManagementCmeManagementArgs
    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 ManagementCmeManagementArgs
    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 ManagementCmeManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementCmeManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementCmeManagementArgs
    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 managementCmeManagementResource = new Checkpoint.ManagementCmeManagement("managementCmeManagementResource", new()
    {
        Domain = "string",
        ManagementCmeManagementId = "string",
        Name = "string",
    });
    
    example, err := checkpoint.NewManagementCmeManagement(ctx, "managementCmeManagementResource", &checkpoint.ManagementCmeManagementArgs{
    	Domain:                    pulumi.String("string"),
    	ManagementCmeManagementId: pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    })
    
    var managementCmeManagementResource = new ManagementCmeManagement("managementCmeManagementResource", ManagementCmeManagementArgs.builder()
        .domain("string")
        .managementCmeManagementId("string")
        .name("string")
        .build());
    
    management_cme_management_resource = checkpoint.ManagementCmeManagement("managementCmeManagementResource",
        domain="string",
        management_cme_management_id="string",
        name="string")
    
    const managementCmeManagementResource = new checkpoint.ManagementCmeManagement("managementCmeManagementResource", {
        domain: "string",
        managementCmeManagementId: "string",
        name: "string",
    });
    
    type: checkpoint:ManagementCmeManagement
    properties:
        domain: string
        managementCmeManagementId: string
        name: string
    

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

    Domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    ManagementCmeManagementId string
    Name string
    The name of the Management server.
    Domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    ManagementCmeManagementId string
    Name string
    The name of the Management server.
    domain String
    The management's domain name in Multi-Domain Security Management Server environment.
    managementCmeManagementId String
    name String
    The name of the Management server.
    domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    managementCmeManagementId string
    name string
    The name of the Management server.
    domain str
    The management's domain name in Multi-Domain Security Management Server environment.
    management_cme_management_id str
    name str
    The name of the Management server.
    domain String
    The management's domain name in Multi-Domain Security Management Server environment.
    managementCmeManagementId String
    name String
    The name of the Management server.

    Outputs

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

    Host string
    The host of the management server.
    Id string
    The provider-assigned unique ID for this managed resource.
    Host string
    The host of the management server.
    Id string
    The provider-assigned unique ID for this managed resource.
    host String
    The host of the management server.
    id String
    The provider-assigned unique ID for this managed resource.
    host string
    The host of the management server.
    id string
    The provider-assigned unique ID for this managed resource.
    host str
    The host of the management server.
    id str
    The provider-assigned unique ID for this managed resource.
    host String
    The host of the management server.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ManagementCmeManagement Resource

    Get an existing ManagementCmeManagement 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?: ManagementCmeManagementState, opts?: CustomResourceOptions): ManagementCmeManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain: Optional[str] = None,
            host: Optional[str] = None,
            management_cme_management_id: Optional[str] = None,
            name: Optional[str] = None) -> ManagementCmeManagement
    func GetManagementCmeManagement(ctx *Context, name string, id IDInput, state *ManagementCmeManagementState, opts ...ResourceOption) (*ManagementCmeManagement, error)
    public static ManagementCmeManagement Get(string name, Input<string> id, ManagementCmeManagementState? state, CustomResourceOptions? opts = null)
    public static ManagementCmeManagement get(String name, Output<String> id, ManagementCmeManagementState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementCmeManagement    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:
    Domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    Host string
    The host of the management server.
    ManagementCmeManagementId string
    Name string
    The name of the Management server.
    Domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    Host string
    The host of the management server.
    ManagementCmeManagementId string
    Name string
    The name of the Management server.
    domain String
    The management's domain name in Multi-Domain Security Management Server environment.
    host String
    The host of the management server.
    managementCmeManagementId String
    name String
    The name of the Management server.
    domain string
    The management's domain name in Multi-Domain Security Management Server environment.
    host string
    The host of the management server.
    managementCmeManagementId string
    name string
    The name of the Management server.
    domain str
    The management's domain name in Multi-Domain Security Management Server environment.
    host str
    The host of the management server.
    management_cme_management_id str
    name str
    The name of the Management server.
    domain String
    The management's domain name in Multi-Domain Security Management Server environment.
    host String
    The host of the management server.
    managementCmeManagementId String
    name String
    The name of the Management server.

    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