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

checkpoint.getManagementLoginMessage

Explore with Pulumi AI

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

    Use this data source to get information on an existing Check Point Login Message.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const dataLoginMessage = checkpoint.getManagementLoginMessage({});
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    data_login_message = checkpoint.get_management_login_message()
    
    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.GetManagementLoginMessage(ctx, &checkpoint.GetManagementLoginMessageArgs{}, 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 dataLoginMessage = Checkpoint.GetManagementLoginMessage.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementLoginMessageArgs;
    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) {
            final var dataLoginMessage = CheckpointFunctions.getManagementLoginMessage();
    
        }
    }
    
    variables:
      dataLoginMessage:
        fn::invoke:
          function: checkpoint:getManagementLoginMessage
          arguments: {}
    

    Using getManagementLoginMessage

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getManagementLoginMessage(args: GetManagementLoginMessageArgs, opts?: InvokeOptions): Promise<GetManagementLoginMessageResult>
    function getManagementLoginMessageOutput(args: GetManagementLoginMessageOutputArgs, opts?: InvokeOptions): Output<GetManagementLoginMessageResult>
    def get_management_login_message(id: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetManagementLoginMessageResult
    def get_management_login_message_output(id: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetManagementLoginMessageResult]
    func GetManagementLoginMessage(ctx *Context, args *GetManagementLoginMessageArgs, opts ...InvokeOption) (*GetManagementLoginMessageResult, error)
    func GetManagementLoginMessageOutput(ctx *Context, args *GetManagementLoginMessageOutputArgs, opts ...InvokeOption) GetManagementLoginMessageResultOutput

    > Note: This function is named GetManagementLoginMessage in the Go SDK.

    public static class GetManagementLoginMessage 
    {
        public static Task<GetManagementLoginMessageResult> InvokeAsync(GetManagementLoginMessageArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementLoginMessageResult> Invoke(GetManagementLoginMessageInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementLoginMessageResult> getManagementLoginMessage(GetManagementLoginMessageArgs args, InvokeOptions options)
    public static Output<GetManagementLoginMessageResult> getManagementLoginMessage(GetManagementLoginMessageArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementLoginMessage:getManagementLoginMessage
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Id string
    id String
    id string
    id str
    id String

    getManagementLoginMessage Result

    The following output properties are available:

    Header string
    Id string
    Message string
    ShowMessage bool
    Warning bool
    Header string
    Id string
    Message string
    ShowMessage bool
    Warning bool
    header String
    id String
    message String
    showMessage Boolean
    warning Boolean
    header string
    id string
    message string
    showMessage boolean
    warning boolean
    header String
    id String
    message String
    showMessage Boolean
    warning Boolean

    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