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

checkpoint.ManagementPublish

Explore with Pulumi AI

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

    Create ManagementPublish Resource

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

    Constructor syntax

    new ManagementPublish(name: string, args?: ManagementPublishArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementPublish(resource_name: str,
                          args: Optional[ManagementPublishArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementPublish(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          management_publish_id: Optional[str] = None,
                          run_publish_on_destroy: Optional[bool] = None,
                          triggers: Optional[Sequence[str]] = None,
                          uid: Optional[str] = None)
    func NewManagementPublish(ctx *Context, name string, args *ManagementPublishArgs, opts ...ResourceOption) (*ManagementPublish, error)
    public ManagementPublish(string name, ManagementPublishArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementPublish(String name, ManagementPublishArgs args)
    public ManagementPublish(String name, ManagementPublishArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementPublish
    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 ManagementPublishArgs
    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 ManagementPublishArgs
    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 ManagementPublishArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementPublishArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementPublishArgs
    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 managementPublishResource = new Checkpoint.ManagementPublish("managementPublishResource", new()
    {
        ManagementPublishId = "string",
        RunPublishOnDestroy = false,
        Triggers = new[]
        {
            "string",
        },
        Uid = "string",
    });
    
    example, err := checkpoint.NewManagementPublish(ctx, "managementPublishResource", &checkpoint.ManagementPublishArgs{
    	ManagementPublishId: pulumi.String("string"),
    	RunPublishOnDestroy: pulumi.Bool(false),
    	Triggers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Uid: pulumi.String("string"),
    })
    
    var managementPublishResource = new ManagementPublish("managementPublishResource", ManagementPublishArgs.builder()
        .managementPublishId("string")
        .runPublishOnDestroy(false)
        .triggers("string")
        .uid("string")
        .build());
    
    management_publish_resource = checkpoint.ManagementPublish("managementPublishResource",
        management_publish_id="string",
        run_publish_on_destroy=False,
        triggers=["string"],
        uid="string")
    
    const managementPublishResource = new checkpoint.ManagementPublish("managementPublishResource", {
        managementPublishId: "string",
        runPublishOnDestroy: false,
        triggers: ["string"],
        uid: "string",
    });
    
    type: checkpoint:ManagementPublish
    properties:
        managementPublishId: string
        runPublishOnDestroy: false
        triggers:
            - string
        uid: string
    

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

    ManagementPublishId string
    RunPublishOnDestroy bool
    Destroy publish resource will run publish when flag set to true.
    Triggers List<string>
    Triggers a publish if there are any changes to objects in this list.
    Uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    ManagementPublishId string
    RunPublishOnDestroy bool
    Destroy publish resource will run publish when flag set to true.
    Triggers []string
    Triggers a publish if there are any changes to objects in this list.
    Uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId String
    runPublishOnDestroy Boolean
    Destroy publish resource will run publish when flag set to true.
    triggers List<String>
    Triggers a publish if there are any changes to objects in this list.
    uid String
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId string
    runPublishOnDestroy boolean
    Destroy publish resource will run publish when flag set to true.
    triggers string[]
    Triggers a publish if there are any changes to objects in this list.
    uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    management_publish_id str
    run_publish_on_destroy bool
    Destroy publish resource will run publish when flag set to true.
    triggers Sequence[str]
    Triggers a publish if there are any changes to objects in this list.
    uid str
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId String
    runPublishOnDestroy Boolean
    Destroy publish resource will run publish when flag set to true.
    triggers List<String>
    Triggers a publish if there are any changes to objects in this list.
    uid String
    Session unique identifier. Specify it to publish a different session than the one you currently use.

    Outputs

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

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

    Look up Existing ManagementPublish Resource

    Get an existing ManagementPublish 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?: ManagementPublishState, opts?: CustomResourceOptions): ManagementPublish
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            management_publish_id: Optional[str] = None,
            run_publish_on_destroy: Optional[bool] = None,
            task_id: Optional[str] = None,
            triggers: Optional[Sequence[str]] = None,
            uid: Optional[str] = None) -> ManagementPublish
    func GetManagementPublish(ctx *Context, name string, id IDInput, state *ManagementPublishState, opts ...ResourceOption) (*ManagementPublish, error)
    public static ManagementPublish Get(string name, Input<string> id, ManagementPublishState? state, CustomResourceOptions? opts = null)
    public static ManagementPublish get(String name, Output<String> id, ManagementPublishState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementPublish    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:
    ManagementPublishId string
    RunPublishOnDestroy bool
    Destroy publish resource will run publish when flag set to true.
    TaskId string
    Asynchronous task unique identifier.
    Triggers List<string>
    Triggers a publish if there are any changes to objects in this list.
    Uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    ManagementPublishId string
    RunPublishOnDestroy bool
    Destroy publish resource will run publish when flag set to true.
    TaskId string
    Asynchronous task unique identifier.
    Triggers []string
    Triggers a publish if there are any changes to objects in this list.
    Uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId String
    runPublishOnDestroy Boolean
    Destroy publish resource will run publish when flag set to true.
    taskId String
    Asynchronous task unique identifier.
    triggers List<String>
    Triggers a publish if there are any changes to objects in this list.
    uid String
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId string
    runPublishOnDestroy boolean
    Destroy publish resource will run publish when flag set to true.
    taskId string
    Asynchronous task unique identifier.
    triggers string[]
    Triggers a publish if there are any changes to objects in this list.
    uid string
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    management_publish_id str
    run_publish_on_destroy bool
    Destroy publish resource will run publish when flag set to true.
    task_id str
    Asynchronous task unique identifier.
    triggers Sequence[str]
    Triggers a publish if there are any changes to objects in this list.
    uid str
    Session unique identifier. Specify it to publish a different session than the one you currently use.
    managementPublishId String
    runPublishOnDestroy Boolean
    Destroy publish resource will run publish when flag set to true.
    taskId String
    Asynchronous task unique identifier.
    triggers List<String>
    Triggers a publish if there are any changes to objects in this list.
    uid String
    Session unique identifier. Specify it to publish a different session than the one you currently use.

    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