1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. getManagementLogExporter
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

checkpoint.getManagementLogExporter

Explore with Pulumi AI

checkpoint logo
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw

    Use this data source to get information on an existing Log Exporter.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const dataLogExporter = checkpoint.getManagementLogExporter({
        name: "example_log_exporter",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    data_log_exporter = checkpoint.get_management_log_exporter(name="example_log_exporter")
    
    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.LookupManagementLogExporter(ctx, &checkpoint.LookupManagementLogExporterArgs{
    			Name: pulumi.StringRef("example_log_exporter"),
    		}, 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 dataLogExporter = Checkpoint.GetManagementLogExporter.Invoke(new()
        {
            Name = "example_log_exporter",
        });
    
    });
    
    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.GetManagementLogExporterArgs;
    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 dataLogExporter = CheckpointFunctions.getManagementLogExporter(GetManagementLogExporterArgs.builder()
                .name("example_log_exporter")
                .build());
    
        }
    }
    
    variables:
      dataLogExporter:
        fn::invoke:
          function: checkpoint:getManagementLogExporter
          arguments:
            name: example_log_exporter
    

    Using getManagementLogExporter

    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 getManagementLogExporter(args: GetManagementLogExporterArgs, opts?: InvokeOptions): Promise<GetManagementLogExporterResult>
    function getManagementLogExporterOutput(args: GetManagementLogExporterOutputArgs, opts?: InvokeOptions): Output<GetManagementLogExporterResult>
    def get_management_log_exporter(id: Optional[str] = None,
                                    name: Optional[str] = None,
                                    uid: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetManagementLogExporterResult
    def get_management_log_exporter_output(id: Optional[pulumi.Input[str]] = None,
                                    name: Optional[pulumi.Input[str]] = None,
                                    uid: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetManagementLogExporterResult]
    func LookupManagementLogExporter(ctx *Context, args *LookupManagementLogExporterArgs, opts ...InvokeOption) (*LookupManagementLogExporterResult, error)
    func LookupManagementLogExporterOutput(ctx *Context, args *LookupManagementLogExporterOutputArgs, opts ...InvokeOption) LookupManagementLogExporterResultOutput

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

    public static class GetManagementLogExporter 
    {
        public static Task<GetManagementLogExporterResult> InvokeAsync(GetManagementLogExporterArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementLogExporterResult> Invoke(GetManagementLogExporterInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementLogExporterResult> getManagementLogExporter(GetManagementLogExporterArgs args, InvokeOptions options)
    public static Output<GetManagementLogExporterResult> getManagementLogExporter(GetManagementLogExporterArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementLogExporter:getManagementLogExporter
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Object name.
    Uid string
    Object uid.
    Id string
    Name string
    Object name.
    Uid string
    Object uid.
    id String
    name String
    Object name.
    uid String
    Object uid.
    id string
    name string
    Object name.
    uid string
    Object uid.
    id str
    name str
    Object name.
    uid str
    Object uid.
    id String
    name String
    Object name.
    uid String
    Object uid.

    getManagementLogExporter Result

    The following output properties are available:

    Supporting Types

    GetManagementLogExporterAttachment

    AddLinkToLogAttachment bool
    Indicates whether to add link to log attachment in SmartView.
    AddLinkToLogDetails bool
    Indicates whether to add link to log details in SmartView.
    AddLogAttachmentId bool
    Indicates whether to add log attachment ID.
    AddLinkToLogAttachment bool
    Indicates whether to add link to log attachment in SmartView.
    AddLinkToLogDetails bool
    Indicates whether to add link to log details in SmartView.
    AddLogAttachmentId bool
    Indicates whether to add log attachment ID.
    addLinkToLogAttachment Boolean
    Indicates whether to add link to log attachment in SmartView.
    addLinkToLogDetails Boolean
    Indicates whether to add link to log details in SmartView.
    addLogAttachmentId Boolean
    Indicates whether to add log attachment ID.
    addLinkToLogAttachment boolean
    Indicates whether to add link to log attachment in SmartView.
    addLinkToLogDetails boolean
    Indicates whether to add link to log details in SmartView.
    addLogAttachmentId boolean
    Indicates whether to add log attachment ID.
    add_link_to_log_attachment bool
    Indicates whether to add link to log attachment in SmartView.
    add_link_to_log_details bool
    Indicates whether to add link to log details in SmartView.
    add_log_attachment_id bool
    Indicates whether to add log attachment ID.
    addLinkToLogAttachment Boolean
    Indicates whether to add link to log attachment in SmartView.
    addLinkToLogDetails Boolean
    Indicates whether to add link to log details in SmartView.
    addLogAttachmentId Boolean
    Indicates whether to add log attachment ID.

    GetManagementLogExporterDataManipulation

    AggregateLogUpdates bool
    Indicates whether to aggregate log updates.
    Format string
    Logs format.
    AggregateLogUpdates bool
    Indicates whether to aggregate log updates.
    Format string
    Logs format.
    aggregateLogUpdates Boolean
    Indicates whether to aggregate log updates.
    format String
    Logs format.
    aggregateLogUpdates boolean
    Indicates whether to aggregate log updates.
    format string
    Logs format.
    aggregate_log_updates bool
    Indicates whether to aggregate log updates.
    format str
    Logs format.
    aggregateLogUpdates Boolean
    Indicates whether to aggregate log updates.
    format String
    Logs format.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw