1. Registry
  2. Packages
  3. Files.com
  4. API Docs
  5. SiemHttpDestination
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
filescom logo
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as filescom from "pulumi-filescom";
    
    const exampleSiemHttpDestination = new filescom.SiemHttpDestination("example_siem_http_destination", {
        name: "example",
        additionalHeaders: {
            key: "example value",
        },
        sendingActive: true,
        genericPayloadType: "example",
        fileDestinationPath: "example",
        fileFormat: "example",
        fileIntervalMinutes: 1,
        azureDcrImmutableId: "example",
        azureStreamName: "example",
        azureOauthClientCredentialsTenantId: "example",
        azureOauthClientCredentialsClientId: "example",
        qradarUsername: "example",
        actionSendEnabled: true,
        sftpActionSendEnabled: true,
        ftpActionSendEnabled: true,
        webDavActionSendEnabled: true,
        syncSendEnabled: true,
        outboundConnectionSendEnabled: true,
        automationSendEnabled: true,
        apiRequestSendEnabled: true,
        publicHostingRequestSendEnabled: true,
        emailSendEnabled: true,
        exavaultApiRequestSendEnabled: true,
        settingsChangeSendEnabled: true,
        destinationType: "example",
        destinationUrl: "example",
    });
    
    import pulumi
    import pulumi_filescom as filescom
    
    example_siem_http_destination = filescom.SiemHttpDestination("example_siem_http_destination",
        name="example",
        additional_headers={
            "key": "example value",
        },
        sending_active=True,
        generic_payload_type="example",
        file_destination_path="example",
        file_format="example",
        file_interval_minutes=1,
        azure_dcr_immutable_id="example",
        azure_stream_name="example",
        azure_oauth_client_credentials_tenant_id="example",
        azure_oauth_client_credentials_client_id="example",
        qradar_username="example",
        action_send_enabled=True,
        sftp_action_send_enabled=True,
        ftp_action_send_enabled=True,
        web_dav_action_send_enabled=True,
        sync_send_enabled=True,
        outbound_connection_send_enabled=True,
        automation_send_enabled=True,
        api_request_send_enabled=True,
        public_hosting_request_send_enabled=True,
        email_send_enabled=True,
        exavault_api_request_send_enabled=True,
        settings_change_send_enabled=True,
        destination_type="example",
        destination_url="example")
    
    package main
    
    import (
    	"github.com/jschady/pulumi-filescom/sdk/go/filescom"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := filescom.NewSiemHttpDestination(ctx, "example_siem_http_destination", &filescom.SiemHttpDestinationArgs{
    			Name: pulumi.String("example"),
    			AdditionalHeaders: pulumi.Any(map[string]interface{}{
    				"key": "example value",
    			}),
    			SendingActive:                       pulumi.Bool(true),
    			GenericPayloadType:                  pulumi.String("example"),
    			FileDestinationPath:                 pulumi.String("example"),
    			FileFormat:                          pulumi.String("example"),
    			FileIntervalMinutes:                 pulumi.Int(1),
    			AzureDcrImmutableId:                 pulumi.String("example"),
    			AzureStreamName:                     pulumi.String("example"),
    			AzureOauthClientCredentialsTenantId: pulumi.String("example"),
    			AzureOauthClientCredentialsClientId: pulumi.String("example"),
    			QradarUsername:                      pulumi.String("example"),
    			ActionSendEnabled:                   pulumi.Bool(true),
    			SftpActionSendEnabled:               pulumi.Bool(true),
    			FtpActionSendEnabled:                pulumi.Bool(true),
    			WebDavActionSendEnabled:             pulumi.Bool(true),
    			SyncSendEnabled:                     pulumi.Bool(true),
    			OutboundConnectionSendEnabled:       pulumi.Bool(true),
    			AutomationSendEnabled:               pulumi.Bool(true),
    			ApiRequestSendEnabled:               pulumi.Bool(true),
    			PublicHostingRequestSendEnabled:     pulumi.Bool(true),
    			EmailSendEnabled:                    pulumi.Bool(true),
    			ExavaultApiRequestSendEnabled:       pulumi.Bool(true),
    			SettingsChangeSendEnabled:           pulumi.Bool(true),
    			DestinationType:                     pulumi.String("example"),
    			DestinationUrl:                      pulumi.String("example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Filescom = Jschady.Filescom;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleSiemHttpDestination = new Filescom.SiemHttpDestination("example_siem_http_destination", new()
        {
            Name = "example",
            AdditionalHeaders = new Dictionary<string, object?>
            {
                ["key"] = "example value",
            },
            SendingActive = true,
            GenericPayloadType = "example",
            FileDestinationPath = "example",
            FileFormat = "example",
            FileIntervalMinutes = 1,
            AzureDcrImmutableId = "example",
            AzureStreamName = "example",
            AzureOauthClientCredentialsTenantId = "example",
            AzureOauthClientCredentialsClientId = "example",
            QradarUsername = "example",
            ActionSendEnabled = true,
            SftpActionSendEnabled = true,
            FtpActionSendEnabled = true,
            WebDavActionSendEnabled = true,
            SyncSendEnabled = true,
            OutboundConnectionSendEnabled = true,
            AutomationSendEnabled = true,
            ApiRequestSendEnabled = true,
            PublicHostingRequestSendEnabled = true,
            EmailSendEnabled = true,
            ExavaultApiRequestSendEnabled = true,
            SettingsChangeSendEnabled = true,
            DestinationType = "example",
            DestinationUrl = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.filescom.SiemHttpDestination;
    import com.pulumi.filescom.SiemHttpDestinationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 exampleSiemHttpDestination = new SiemHttpDestination("exampleSiemHttpDestination", SiemHttpDestinationArgs.builder()
                .name("example")
                .additionalHeaders(Map.of("key", "example value"))
                .sendingActive(true)
                .genericPayloadType("example")
                .fileDestinationPath("example")
                .fileFormat("example")
                .fileIntervalMinutes(1)
                .azureDcrImmutableId("example")
                .azureStreamName("example")
                .azureOauthClientCredentialsTenantId("example")
                .azureOauthClientCredentialsClientId("example")
                .qradarUsername("example")
                .actionSendEnabled(true)
                .sftpActionSendEnabled(true)
                .ftpActionSendEnabled(true)
                .webDavActionSendEnabled(true)
                .syncSendEnabled(true)
                .outboundConnectionSendEnabled(true)
                .automationSendEnabled(true)
                .apiRequestSendEnabled(true)
                .publicHostingRequestSendEnabled(true)
                .emailSendEnabled(true)
                .exavaultApiRequestSendEnabled(true)
                .settingsChangeSendEnabled(true)
                .destinationType("example")
                .destinationUrl("example")
                .build());
    
        }
    }
    
    resources:
      exampleSiemHttpDestination:
        type: filescom:SiemHttpDestination
        name: example_siem_http_destination
        properties:
          name: example
          additionalHeaders:
            key: example value
          sendingActive: true
          genericPayloadType: example
          fileDestinationPath: example
          fileFormat: example
          fileIntervalMinutes: 1
          azureDcrImmutableId: example
          azureStreamName: example
          azureOauthClientCredentialsTenantId: example
          azureOauthClientCredentialsClientId: example
          qradarUsername: example
          actionSendEnabled: true
          sftpActionSendEnabled: true
          ftpActionSendEnabled: true
          webDavActionSendEnabled: true
          syncSendEnabled: true
          outboundConnectionSendEnabled: true
          automationSendEnabled: true
          apiRequestSendEnabled: true
          publicHostingRequestSendEnabled: true
          emailSendEnabled: true
          exavaultApiRequestSendEnabled: true
          settingsChangeSendEnabled: true
          destinationType: example
          destinationUrl: example
    
    pulumi {
      required_providers {
        filescom = {
          source = "pulumi/filescom"
        }
      }
    }
    
    resource "filescom_siemhttpdestination" "example_siem_http_destination" {
      name = "example"
      additional_headers = {
        "key" = "example value"
      }
      sending_active                           = true
      generic_payload_type                     = "example"
      file_destination_path                    = "example"
      file_format                              = "example"
      file_interval_minutes                    = 1
      azure_dcr_immutable_id                   = "example"
      azure_stream_name                        = "example"
      azure_oauth_client_credentials_tenant_id = "example"
      azure_oauth_client_credentials_client_id = "example"
      qradar_username                          = "example"
      action_send_enabled                      = true
      sftp_action_send_enabled                 = true
      ftp_action_send_enabled                  = true
      web_dav_action_send_enabled              = true
      sync_send_enabled                        = true
      outbound_connection_send_enabled         = true
      automation_send_enabled                  = true
      api_request_send_enabled                 = true
      public_hosting_request_send_enabled      = true
      email_send_enabled                       = true
      exavault_api_request_send_enabled        = true
      settings_change_send_enabled             = true
      destination_type                         = "example"
      destination_url                          = "example"
    }
    

    Create SiemHttpDestination Resource

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

    Constructor syntax

    new SiemHttpDestination(name: string, args: SiemHttpDestinationArgs, opts?: CustomResourceOptions);
    @overload
    def SiemHttpDestination(resource_name: str,
                            args: SiemHttpDestinationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SiemHttpDestination(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            destination_type: Optional[str] = None,
                            file_format: Optional[str] = None,
                            ftp_action_send_enabled: Optional[bool] = None,
                            automation_send_enabled: Optional[bool] = None,
                            azure_dcr_immutable_id: Optional[str] = None,
                            azure_oauth_client_credentials_client_id: Optional[str] = None,
                            azure_oauth_client_credentials_client_secret: Optional[str] = None,
                            azure_oauth_client_credentials_tenant_id: Optional[str] = None,
                            azure_stream_name: Optional[str] = None,
                            file_interval_minutes: Optional[int] = None,
                            datadog_api_key: Optional[str] = None,
                            additional_headers: Optional[Any] = None,
                            destination_url: Optional[str] = None,
                            email_send_enabled: Optional[bool] = None,
                            exavault_api_request_send_enabled: Optional[bool] = None,
                            api_request_send_enabled: Optional[bool] = None,
                            file_destination_path: Optional[str] = None,
                            crowdstrike_token: Optional[str] = None,
                            action_send_enabled: Optional[bool] = None,
                            generic_payload_type: Optional[str] = None,
                            name: Optional[str] = None,
                            new_relic_api_key: Optional[str] = None,
                            outbound_connection_send_enabled: Optional[bool] = None,
                            public_hosting_request_send_enabled: Optional[bool] = None,
                            qradar_password: Optional[str] = None,
                            qradar_username: Optional[str] = None,
                            sending_active: Optional[bool] = None,
                            settings_change_send_enabled: Optional[bool] = None,
                            sftp_action_send_enabled: Optional[bool] = None,
                            solar_winds_token: Optional[str] = None,
                            splunk_token: Optional[str] = None,
                            sync_send_enabled: Optional[bool] = None,
                            web_dav_action_send_enabled: Optional[bool] = None)
    func NewSiemHttpDestination(ctx *Context, name string, args SiemHttpDestinationArgs, opts ...ResourceOption) (*SiemHttpDestination, error)
    public SiemHttpDestination(string name, SiemHttpDestinationArgs args, CustomResourceOptions? opts = null)
    public SiemHttpDestination(String name, SiemHttpDestinationArgs args)
    public SiemHttpDestination(String name, SiemHttpDestinationArgs args, CustomResourceOptions options)
    
    type: filescom:SiemHttpDestination
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "filescom_siem_http_destination" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args SiemHttpDestinationArgs
    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 SiemHttpDestinationArgs
    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 SiemHttpDestinationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SiemHttpDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SiemHttpDestinationArgs
    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 siemHttpDestinationResource = new Filescom.SiemHttpDestination("siemHttpDestinationResource", new()
    {
        DestinationType = "string",
        FileFormat = "string",
        FtpActionSendEnabled = false,
        AutomationSendEnabled = false,
        AzureDcrImmutableId = "string",
        AzureOauthClientCredentialsClientId = "string",
        AzureOauthClientCredentialsClientSecret = "string",
        AzureOauthClientCredentialsTenantId = "string",
        AzureStreamName = "string",
        FileIntervalMinutes = 0,
        DatadogApiKey = "string",
        AdditionalHeaders = "any",
        DestinationUrl = "string",
        EmailSendEnabled = false,
        ExavaultApiRequestSendEnabled = false,
        ApiRequestSendEnabled = false,
        FileDestinationPath = "string",
        CrowdstrikeToken = "string",
        ActionSendEnabled = false,
        GenericPayloadType = "string",
        Name = "string",
        NewRelicApiKey = "string",
        OutboundConnectionSendEnabled = false,
        PublicHostingRequestSendEnabled = false,
        QradarPassword = "string",
        QradarUsername = "string",
        SendingActive = false,
        SettingsChangeSendEnabled = false,
        SftpActionSendEnabled = false,
        SolarWindsToken = "string",
        SplunkToken = "string",
        SyncSendEnabled = false,
        WebDavActionSendEnabled = false,
    });
    
    example, err := filescom.NewSiemHttpDestination(ctx, "siemHttpDestinationResource", &filescom.SiemHttpDestinationArgs{
    	DestinationType:                         pulumi.String("string"),
    	FileFormat:                              pulumi.String("string"),
    	FtpActionSendEnabled:                    pulumi.Bool(false),
    	AutomationSendEnabled:                   pulumi.Bool(false),
    	AzureDcrImmutableId:                     pulumi.String("string"),
    	AzureOauthClientCredentialsClientId:     pulumi.String("string"),
    	AzureOauthClientCredentialsClientSecret: pulumi.String("string"),
    	AzureOauthClientCredentialsTenantId:     pulumi.String("string"),
    	AzureStreamName:                         pulumi.String("string"),
    	FileIntervalMinutes:                     pulumi.Int(0),
    	DatadogApiKey:                           pulumi.String("string"),
    	AdditionalHeaders:                       pulumi.Any("any"),
    	DestinationUrl:                          pulumi.String("string"),
    	EmailSendEnabled:                        pulumi.Bool(false),
    	ExavaultApiRequestSendEnabled:           pulumi.Bool(false),
    	ApiRequestSendEnabled:                   pulumi.Bool(false),
    	FileDestinationPath:                     pulumi.String("string"),
    	CrowdstrikeToken:                        pulumi.String("string"),
    	ActionSendEnabled:                       pulumi.Bool(false),
    	GenericPayloadType:                      pulumi.String("string"),
    	Name:                                    pulumi.String("string"),
    	NewRelicApiKey:                          pulumi.String("string"),
    	OutboundConnectionSendEnabled:           pulumi.Bool(false),
    	PublicHostingRequestSendEnabled:         pulumi.Bool(false),
    	QradarPassword:                          pulumi.String("string"),
    	QradarUsername:                          pulumi.String("string"),
    	SendingActive:                           pulumi.Bool(false),
    	SettingsChangeSendEnabled:               pulumi.Bool(false),
    	SftpActionSendEnabled:                   pulumi.Bool(false),
    	SolarWindsToken:                         pulumi.String("string"),
    	SplunkToken:                             pulumi.String("string"),
    	SyncSendEnabled:                         pulumi.Bool(false),
    	WebDavActionSendEnabled:                 pulumi.Bool(false),
    })
    
    resource "filescom_siem_http_destination" "siemHttpDestinationResource" {
      lifecycle {
        create_before_destroy = true
      }
      destination_type                             = "string"
      file_format                                  = "string"
      ftp_action_send_enabled                      = false
      automation_send_enabled                      = false
      azure_dcr_immutable_id                       = "string"
      azure_oauth_client_credentials_client_id     = "string"
      azure_oauth_client_credentials_client_secret = "string"
      azure_oauth_client_credentials_tenant_id     = "string"
      azure_stream_name                            = "string"
      file_interval_minutes                        = 0
      datadog_api_key                              = "string"
      additional_headers                           = "any"
      destination_url                              = "string"
      email_send_enabled                           = false
      exavault_api_request_send_enabled            = false
      api_request_send_enabled                     = false
      file_destination_path                        = "string"
      crowdstrike_token                            = "string"
      action_send_enabled                          = false
      generic_payload_type                         = "string"
      name                                         = "string"
      new_relic_api_key                            = "string"
      outbound_connection_send_enabled             = false
      public_hosting_request_send_enabled          = false
      qradar_password                              = "string"
      qradar_username                              = "string"
      sending_active                               = false
      settings_change_send_enabled                 = false
      sftp_action_send_enabled                     = false
      solar_winds_token                            = "string"
      splunk_token                                 = "string"
      sync_send_enabled                            = false
      web_dav_action_send_enabled                  = false
    }
    
    var siemHttpDestinationResource = new SiemHttpDestination("siemHttpDestinationResource", SiemHttpDestinationArgs.builder()
        .destinationType("string")
        .fileFormat("string")
        .ftpActionSendEnabled(false)
        .automationSendEnabled(false)
        .azureDcrImmutableId("string")
        .azureOauthClientCredentialsClientId("string")
        .azureOauthClientCredentialsClientSecret("string")
        .azureOauthClientCredentialsTenantId("string")
        .azureStreamName("string")
        .fileIntervalMinutes(0)
        .datadogApiKey("string")
        .additionalHeaders("any")
        .destinationUrl("string")
        .emailSendEnabled(false)
        .exavaultApiRequestSendEnabled(false)
        .apiRequestSendEnabled(false)
        .fileDestinationPath("string")
        .crowdstrikeToken("string")
        .actionSendEnabled(false)
        .genericPayloadType("string")
        .name("string")
        .newRelicApiKey("string")
        .outboundConnectionSendEnabled(false)
        .publicHostingRequestSendEnabled(false)
        .qradarPassword("string")
        .qradarUsername("string")
        .sendingActive(false)
        .settingsChangeSendEnabled(false)
        .sftpActionSendEnabled(false)
        .solarWindsToken("string")
        .splunkToken("string")
        .syncSendEnabled(false)
        .webDavActionSendEnabled(false)
        .build());
    
    siem_http_destination_resource = filescom.SiemHttpDestination("siemHttpDestinationResource",
        destination_type="string",
        file_format="string",
        ftp_action_send_enabled=False,
        automation_send_enabled=False,
        azure_dcr_immutable_id="string",
        azure_oauth_client_credentials_client_id="string",
        azure_oauth_client_credentials_client_secret="string",
        azure_oauth_client_credentials_tenant_id="string",
        azure_stream_name="string",
        file_interval_minutes=0,
        datadog_api_key="string",
        additional_headers="any",
        destination_url="string",
        email_send_enabled=False,
        exavault_api_request_send_enabled=False,
        api_request_send_enabled=False,
        file_destination_path="string",
        crowdstrike_token="string",
        action_send_enabled=False,
        generic_payload_type="string",
        name="string",
        new_relic_api_key="string",
        outbound_connection_send_enabled=False,
        public_hosting_request_send_enabled=False,
        qradar_password="string",
        qradar_username="string",
        sending_active=False,
        settings_change_send_enabled=False,
        sftp_action_send_enabled=False,
        solar_winds_token="string",
        splunk_token="string",
        sync_send_enabled=False,
        web_dav_action_send_enabled=False)
    
    const siemHttpDestinationResource = new filescom.SiemHttpDestination("siemHttpDestinationResource", {
        destinationType: "string",
        fileFormat: "string",
        ftpActionSendEnabled: false,
        automationSendEnabled: false,
        azureDcrImmutableId: "string",
        azureOauthClientCredentialsClientId: "string",
        azureOauthClientCredentialsClientSecret: "string",
        azureOauthClientCredentialsTenantId: "string",
        azureStreamName: "string",
        fileIntervalMinutes: 0,
        datadogApiKey: "string",
        additionalHeaders: "any",
        destinationUrl: "string",
        emailSendEnabled: false,
        exavaultApiRequestSendEnabled: false,
        apiRequestSendEnabled: false,
        fileDestinationPath: "string",
        crowdstrikeToken: "string",
        actionSendEnabled: false,
        genericPayloadType: "string",
        name: "string",
        newRelicApiKey: "string",
        outboundConnectionSendEnabled: false,
        publicHostingRequestSendEnabled: false,
        qradarPassword: "string",
        qradarUsername: "string",
        sendingActive: false,
        settingsChangeSendEnabled: false,
        sftpActionSendEnabled: false,
        solarWindsToken: "string",
        splunkToken: "string",
        syncSendEnabled: false,
        webDavActionSendEnabled: false,
    });
    
    type: filescom:SiemHttpDestination
    properties:
        actionSendEnabled: false
        additionalHeaders: any
        apiRequestSendEnabled: false
        automationSendEnabled: false
        azureDcrImmutableId: string
        azureOauthClientCredentialsClientId: string
        azureOauthClientCredentialsClientSecret: string
        azureOauthClientCredentialsTenantId: string
        azureStreamName: string
        crowdstrikeToken: string
        datadogApiKey: string
        destinationType: string
        destinationUrl: string
        emailSendEnabled: false
        exavaultApiRequestSendEnabled: false
        fileDestinationPath: string
        fileFormat: string
        fileIntervalMinutes: 0
        ftpActionSendEnabled: false
        genericPayloadType: string
        name: string
        newRelicApiKey: string
        outboundConnectionSendEnabled: false
        publicHostingRequestSendEnabled: false
        qradarPassword: string
        qradarUsername: string
        sendingActive: false
        settingsChangeSendEnabled: false
        sftpActionSendEnabled: false
        solarWindsToken: string
        splunkToken: string
        syncSendEnabled: false
        webDavActionSendEnabled: false
    

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

    DestinationType string
    Destination Type
    ActionSendEnabled bool
    Whether or not sending is enabled for action logs.
    AdditionalHeaders object
    Additional HTTP Headers included in calls to the destination URL
    ApiRequestSendEnabled bool
    Whether or not sending is enabled for apiRequest logs.
    AutomationSendEnabled bool
    Whether or not sending is enabled for automation logs.
    AzureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    AzureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    AzureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    AzureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    CrowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    DestinationUrl string
    Destination Url
    EmailSendEnabled bool
    Whether or not sending is enabled for email logs.
    ExavaultApiRequestSendEnabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    FileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    FileFormat string
    Applicable only for destination type: file. Generated file format.
    FileIntervalMinutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    FtpActionSendEnabled bool
    Whether or not sending is enabled for ftpAction logs.
    GenericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    Name string
    Name for this Destination
    NewRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionSendEnabled bool
    Whether or not sending is enabled for outboundConnection logs.
    PublicHostingRequestSendEnabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    QradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    SendingActive bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    SettingsChangeSendEnabled bool
    Whether or not sending is enabled for settingsChange logs.
    SftpActionSendEnabled bool
    Whether or not sending is enabled for sftpAction logs.
    SolarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncSendEnabled bool
    Whether or not sending is enabled for sync logs.
    WebDavActionSendEnabled bool
    Whether or not sending is enabled for webDavAction logs.
    DestinationType string
    Destination Type
    ActionSendEnabled bool
    Whether or not sending is enabled for action logs.
    AdditionalHeaders interface{}
    Additional HTTP Headers included in calls to the destination URL
    ApiRequestSendEnabled bool
    Whether or not sending is enabled for apiRequest logs.
    AutomationSendEnabled bool
    Whether or not sending is enabled for automation logs.
    AzureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    AzureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    AzureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    AzureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    CrowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    DestinationUrl string
    Destination Url
    EmailSendEnabled bool
    Whether or not sending is enabled for email logs.
    ExavaultApiRequestSendEnabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    FileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    FileFormat string
    Applicable only for destination type: file. Generated file format.
    FileIntervalMinutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    FtpActionSendEnabled bool
    Whether or not sending is enabled for ftpAction logs.
    GenericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    Name string
    Name for this Destination
    NewRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionSendEnabled bool
    Whether or not sending is enabled for outboundConnection logs.
    PublicHostingRequestSendEnabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    QradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    SendingActive bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    SettingsChangeSendEnabled bool
    Whether or not sending is enabled for settingsChange logs.
    SftpActionSendEnabled bool
    Whether or not sending is enabled for sftpAction logs.
    SolarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncSendEnabled bool
    Whether or not sending is enabled for sync logs.
    WebDavActionSendEnabled bool
    Whether or not sending is enabled for webDavAction logs.
    destination_type string
    Destination Type
    action_send_enabled bool
    Whether or not sending is enabled for action logs.
    additional_headers any
    Additional HTTP Headers included in calls to the destination URL
    api_request_send_enabled bool
    Whether or not sending is enabled for apiRequest logs.
    automation_send_enabled bool
    Whether or not sending is enabled for automation logs.
    azure_dcr_immutable_id string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azure_oauth_client_credentials_client_id string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azure_oauth_client_credentials_client_secret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_tenant_id string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azure_stream_name string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    crowdstrike_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    destination_url string
    Destination Url
    email_send_enabled bool
    Whether or not sending is enabled for email logs.
    exavault_api_request_send_enabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    file_destination_path string
    Applicable only for destination type: file. Destination folder path on Files.com.
    file_format string
    Applicable only for destination type: file. Generated file format.
    file_interval_minutes number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftp_action_send_enabled bool
    Whether or not sending is enabled for ftpAction logs.
    generic_payload_type string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    name string
    Name for this Destination
    new_relic_api_key string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_send_enabled bool
    Whether or not sending is enabled for outboundConnection logs.
    public_hosting_request_send_enabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    qradar_password string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_username string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sending_active bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    settings_change_send_enabled bool
    Whether or not sending is enabled for settingsChange logs.
    sftp_action_send_enabled bool
    Whether or not sending is enabled for sftpAction logs.
    solar_winds_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_send_enabled bool
    Whether or not sending is enabled for sync logs.
    web_dav_action_send_enabled bool
    Whether or not sending is enabled for webDavAction logs.
    destinationType String
    Destination Type
    actionSendEnabled Boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders Object
    Additional HTTP Headers included in calls to the destination URL
    apiRequestSendEnabled Boolean
    Whether or not sending is enabled for apiRequest logs.
    automationSendEnabled Boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId String
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName String
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    crowdstrikeToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    destinationUrl String
    Destination Url
    emailSendEnabled Boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestSendEnabled Boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath String
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat String
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes Integer
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionSendEnabled Boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType String
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    name String
    Name for this Destination
    newRelicApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionSendEnabled Boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestSendEnabled Boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername String
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive Boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeSendEnabled Boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionSendEnabled Boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncSendEnabled Boolean
    Whether or not sending is enabled for sync logs.
    webDavActionSendEnabled Boolean
    Whether or not sending is enabled for webDavAction logs.
    destinationType string
    Destination Type
    actionSendEnabled boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders any
    Additional HTTP Headers included in calls to the destination URL
    apiRequestSendEnabled boolean
    Whether or not sending is enabled for apiRequest logs.
    automationSendEnabled boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    crowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    destinationUrl string
    Destination Url
    emailSendEnabled boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestSendEnabled boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat string
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionSendEnabled boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    name string
    Name for this Destination
    newRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionSendEnabled boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestSendEnabled boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeSendEnabled boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionSendEnabled boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncSendEnabled boolean
    Whether or not sending is enabled for sync logs.
    webDavActionSendEnabled boolean
    Whether or not sending is enabled for webDavAction logs.
    destination_type str
    Destination Type
    action_send_enabled bool
    Whether or not sending is enabled for action logs.
    additional_headers Any
    Additional HTTP Headers included in calls to the destination URL
    api_request_send_enabled bool
    Whether or not sending is enabled for apiRequest logs.
    automation_send_enabled bool
    Whether or not sending is enabled for automation logs.
    azure_dcr_immutable_id str
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azure_oauth_client_credentials_client_id str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azure_oauth_client_credentials_client_secret str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_tenant_id str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azure_stream_name str
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    crowdstrike_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    destination_url str
    Destination Url
    email_send_enabled bool
    Whether or not sending is enabled for email logs.
    exavault_api_request_send_enabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    file_destination_path str
    Applicable only for destination type: file. Destination folder path on Files.com.
    file_format str
    Applicable only for destination type: file. Generated file format.
    file_interval_minutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftp_action_send_enabled bool
    Whether or not sending is enabled for ftpAction logs.
    generic_payload_type str
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    name str
    Name for this Destination
    new_relic_api_key str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_send_enabled bool
    Whether or not sending is enabled for outboundConnection logs.
    public_hosting_request_send_enabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    qradar_password str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_username str
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sending_active bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    settings_change_send_enabled bool
    Whether or not sending is enabled for settingsChange logs.
    sftp_action_send_enabled bool
    Whether or not sending is enabled for sftpAction logs.
    solar_winds_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_send_enabled bool
    Whether or not sending is enabled for sync logs.
    web_dav_action_send_enabled bool
    Whether or not sending is enabled for webDavAction logs.
    destinationType String
    Destination Type
    actionSendEnabled Boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders Any
    Additional HTTP Headers included in calls to the destination URL
    apiRequestSendEnabled Boolean
    Whether or not sending is enabled for apiRequest logs.
    automationSendEnabled Boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId String
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName String
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    crowdstrikeToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    destinationUrl String
    Destination Url
    emailSendEnabled Boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestSendEnabled Boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath String
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat String
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes Number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionSendEnabled Boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType String
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    name String
    Name for this Destination
    newRelicApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionSendEnabled Boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestSendEnabled Boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername String
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive Boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeSendEnabled Boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionSendEnabled Boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncSendEnabled Boolean
    Whether or not sending is enabled for sync logs.
    webDavActionSendEnabled Boolean
    Whether or not sending is enabled for webDavAction logs.

    Outputs

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

    ActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AutomationEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AzureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    ConnectionTestEntry string
    Connection Test Entry
    CrowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    EmailEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ExavaultApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    FtpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastHttpCallDurationMs int
    Duration of the last HTTP Call in milliseconds
    LastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    LastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    LastHttpCallResponseCode int
    Last HTTP Call Response Code
    LastHttpCallSuccess bool
    Was the last HTTP call made successful?
    LastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    LastHttpCallTime string
    Time of Last HTTP Call
    MostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    NewRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    PublicHostingRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    QradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    SettingsChangeEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SftpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SolarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    WebDavActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AutomationEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AzureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    ConnectionTestEntry string
    Connection Test Entry
    CrowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    EmailEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ExavaultApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    FtpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastHttpCallDurationMs int
    Duration of the last HTTP Call in milliseconds
    LastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    LastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    LastHttpCallResponseCode int
    Last HTTP Call Response Code
    LastHttpCallSuccess bool
    Was the last HTTP call made successful?
    LastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    LastHttpCallTime string
    Time of Last HTTP Call
    MostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    NewRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    PublicHostingRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    QradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    SettingsChangeEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SftpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SolarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    WebDavActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    api_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    automation_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    azure_oauth_client_credentials_client_secret_masked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    connection_test_entry string
    Connection Test Entry
    crowdstrike_token_masked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key_masked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    email_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    exavault_api_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    ftp_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    id string
    The provider-assigned unique ID for this managed resource.
    last_http_call_duration_ms number
    Duration of the last HTTP Call in milliseconds
    last_http_call_error_message string
    Last HTTP Call Error Message if applicable
    last_http_call_response_body string
    Last HTTP Call Response Body. Large responses are truncated.
    last_http_call_response_code number
    Last HTTP Call Response Code
    last_http_call_success bool
    Was the last HTTP call made successful?
    last_http_call_target_type string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    last_http_call_time string
    Time of Last HTTP Call
    most_recent_http_call_success_time string
    Time of Most Recent Successful HTTP Call
    new_relic_api_key_masked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    public_hosting_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    qradar_password_masked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    settings_change_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    sftp_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    solar_winds_token_masked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token_masked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    web_dav_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    actionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    apiRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    automationEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    azureOauthClientCredentialsClientSecretMasked String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    connectionTestEntry String
    Connection Test Entry
    crowdstrikeTokenMasked String
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKeyMasked String
    Applicable only for destination type: datadog. API key provided by Datadog.
    emailEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    ftpActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    id String
    The provider-assigned unique ID for this managed resource.
    lastHttpCallDurationMs Integer
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage String
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody String
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode Integer
    Last HTTP Call Response Code
    lastHttpCallSuccess Boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType String
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime String
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime String
    Time of Most Recent Successful HTTP Call
    newRelicApiKeyMasked String
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    qradarPasswordMasked String
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    settingsChangeEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    sftpActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    solarWindsTokenMasked String
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkTokenMasked String
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    webDavActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    actionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    apiRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    automationEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    azureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    connectionTestEntry string
    Connection Test Entry
    crowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    emailEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    ftpActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    id string
    The provider-assigned unique ID for this managed resource.
    lastHttpCallDurationMs number
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode number
    Last HTTP Call Response Code
    lastHttpCallSuccess boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime string
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    newRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    qradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    settingsChangeEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    sftpActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    solarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    webDavActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    api_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    automation_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    azure_oauth_client_credentials_client_secret_masked str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    connection_test_entry str
    Connection Test Entry
    crowdstrike_token_masked str
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key_masked str
    Applicable only for destination type: datadog. API key provided by Datadog.
    email_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    exavault_api_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    ftp_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    id str
    The provider-assigned unique ID for this managed resource.
    last_http_call_duration_ms int
    Duration of the last HTTP Call in milliseconds
    last_http_call_error_message str
    Last HTTP Call Error Message if applicable
    last_http_call_response_body str
    Last HTTP Call Response Body. Large responses are truncated.
    last_http_call_response_code int
    Last HTTP Call Response Code
    last_http_call_success bool
    Was the last HTTP call made successful?
    last_http_call_target_type str
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    last_http_call_time str
    Time of Last HTTP Call
    most_recent_http_call_success_time str
    Time of Most Recent Successful HTTP Call
    new_relic_api_key_masked str
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    public_hosting_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    qradar_password_masked str
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    settings_change_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    sftp_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    solar_winds_token_masked str
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token_masked str
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    web_dav_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    actionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    apiRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    automationEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    azureOauthClientCredentialsClientSecretMasked String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    connectionTestEntry String
    Connection Test Entry
    crowdstrikeTokenMasked String
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKeyMasked String
    Applicable only for destination type: datadog. API key provided by Datadog.
    emailEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    ftpActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    id String
    The provider-assigned unique ID for this managed resource.
    lastHttpCallDurationMs Number
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage String
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody String
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode Number
    Last HTTP Call Response Code
    lastHttpCallSuccess Boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType String
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime String
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime String
    Time of Most Recent Successful HTTP Call
    newRelicApiKeyMasked String
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    qradarPasswordMasked String
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    settingsChangeEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    sftpActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    solarWindsTokenMasked String
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkTokenMasked String
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    webDavActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.

    Look up Existing SiemHttpDestination Resource

    Get an existing SiemHttpDestination 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?: SiemHttpDestinationState, opts?: CustomResourceOptions): SiemHttpDestination
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action_entries_sent: Optional[int] = None,
            action_send_enabled: Optional[bool] = None,
            additional_headers: Optional[Any] = None,
            api_request_entries_sent: Optional[int] = None,
            api_request_send_enabled: Optional[bool] = None,
            automation_entries_sent: Optional[int] = None,
            automation_send_enabled: Optional[bool] = None,
            azure_dcr_immutable_id: Optional[str] = None,
            azure_oauth_client_credentials_client_id: Optional[str] = None,
            azure_oauth_client_credentials_client_secret: Optional[str] = None,
            azure_oauth_client_credentials_client_secret_masked: Optional[str] = None,
            azure_oauth_client_credentials_tenant_id: Optional[str] = None,
            azure_stream_name: Optional[str] = None,
            connection_test_entry: Optional[str] = None,
            crowdstrike_token: Optional[str] = None,
            crowdstrike_token_masked: Optional[str] = None,
            datadog_api_key: Optional[str] = None,
            datadog_api_key_masked: Optional[str] = None,
            destination_type: Optional[str] = None,
            destination_url: Optional[str] = None,
            email_entries_sent: Optional[int] = None,
            email_send_enabled: Optional[bool] = None,
            exavault_api_request_entries_sent: Optional[int] = None,
            exavault_api_request_send_enabled: Optional[bool] = None,
            file_destination_path: Optional[str] = None,
            file_format: Optional[str] = None,
            file_interval_minutes: Optional[int] = None,
            ftp_action_entries_sent: Optional[int] = None,
            ftp_action_send_enabled: Optional[bool] = None,
            generic_payload_type: Optional[str] = None,
            last_http_call_duration_ms: Optional[int] = None,
            last_http_call_error_message: Optional[str] = None,
            last_http_call_response_body: Optional[str] = None,
            last_http_call_response_code: Optional[int] = None,
            last_http_call_success: Optional[bool] = None,
            last_http_call_target_type: Optional[str] = None,
            last_http_call_time: Optional[str] = None,
            most_recent_http_call_success_time: Optional[str] = None,
            name: Optional[str] = None,
            new_relic_api_key: Optional[str] = None,
            new_relic_api_key_masked: Optional[str] = None,
            outbound_connection_entries_sent: Optional[int] = None,
            outbound_connection_send_enabled: Optional[bool] = None,
            public_hosting_request_entries_sent: Optional[int] = None,
            public_hosting_request_send_enabled: Optional[bool] = None,
            qradar_password: Optional[str] = None,
            qradar_password_masked: Optional[str] = None,
            qradar_username: Optional[str] = None,
            sending_active: Optional[bool] = None,
            settings_change_entries_sent: Optional[int] = None,
            settings_change_send_enabled: Optional[bool] = None,
            sftp_action_entries_sent: Optional[int] = None,
            sftp_action_send_enabled: Optional[bool] = None,
            solar_winds_token: Optional[str] = None,
            solar_winds_token_masked: Optional[str] = None,
            splunk_token: Optional[str] = None,
            splunk_token_masked: Optional[str] = None,
            sync_entries_sent: Optional[int] = None,
            sync_send_enabled: Optional[bool] = None,
            web_dav_action_entries_sent: Optional[int] = None,
            web_dav_action_send_enabled: Optional[bool] = None) -> SiemHttpDestination
    func GetSiemHttpDestination(ctx *Context, name string, id IDInput, state *SiemHttpDestinationState, opts ...ResourceOption) (*SiemHttpDestination, error)
    public static SiemHttpDestination Get(string name, Input<string> id, SiemHttpDestinationState? state, CustomResourceOptions? opts = null)
    public static SiemHttpDestination get(String name, Output<String> id, SiemHttpDestinationState state, CustomResourceOptions options)
    resources:  _:    type: filescom:SiemHttpDestination    get:      id: ${id}
    import {
      to = filescom_siem_http_destination.example
      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:
    ActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ActionSendEnabled bool
    Whether or not sending is enabled for action logs.
    AdditionalHeaders object
    Additional HTTP Headers included in calls to the destination URL
    ApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ApiRequestSendEnabled bool
    Whether or not sending is enabled for apiRequest logs.
    AutomationEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AutomationSendEnabled bool
    Whether or not sending is enabled for automation logs.
    AzureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    AzureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    AzureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    AzureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    ConnectionTestEntry string
    Connection Test Entry
    CrowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    CrowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    DatadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    DestinationType string
    Destination Type
    DestinationUrl string
    Destination Url
    EmailEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    EmailSendEnabled bool
    Whether or not sending is enabled for email logs.
    ExavaultApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ExavaultApiRequestSendEnabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    FileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    FileFormat string
    Applicable only for destination type: file. Generated file format.
    FileIntervalMinutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    FtpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    FtpActionSendEnabled bool
    Whether or not sending is enabled for ftpAction logs.
    GenericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    LastHttpCallDurationMs int
    Duration of the last HTTP Call in milliseconds
    LastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    LastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    LastHttpCallResponseCode int
    Last HTTP Call Response Code
    LastHttpCallSuccess bool
    Was the last HTTP call made successful?
    LastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    LastHttpCallTime string
    Time of Last HTTP Call
    MostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    Name string
    Name for this Destination
    NewRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    NewRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    OutboundConnectionSendEnabled bool
    Whether or not sending is enabled for outboundConnection logs.
    PublicHostingRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    PublicHostingRequestSendEnabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    QradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    SendingActive bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    SettingsChangeEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SettingsChangeSendEnabled bool
    Whether or not sending is enabled for settingsChange logs.
    SftpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SftpActionSendEnabled bool
    Whether or not sending is enabled for sftpAction logs.
    SolarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SolarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SplunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SyncSendEnabled bool
    Whether or not sending is enabled for sync logs.
    WebDavActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    WebDavActionSendEnabled bool
    Whether or not sending is enabled for webDavAction logs.
    ActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ActionSendEnabled bool
    Whether or not sending is enabled for action logs.
    AdditionalHeaders interface{}
    Additional HTTP Headers included in calls to the destination URL
    ApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ApiRequestSendEnabled bool
    Whether or not sending is enabled for apiRequest logs.
    AutomationEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    AutomationSendEnabled bool
    Whether or not sending is enabled for automation logs.
    AzureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    AzureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    AzureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    AzureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    AzureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    ConnectionTestEntry string
    Connection Test Entry
    CrowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    CrowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    DatadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    DatadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    DestinationType string
    Destination Type
    DestinationUrl string
    Destination Url
    EmailEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    EmailSendEnabled bool
    Whether or not sending is enabled for email logs.
    ExavaultApiRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    ExavaultApiRequestSendEnabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    FileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    FileFormat string
    Applicable only for destination type: file. Generated file format.
    FileIntervalMinutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    FtpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    FtpActionSendEnabled bool
    Whether or not sending is enabled for ftpAction logs.
    GenericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    LastHttpCallDurationMs int
    Duration of the last HTTP Call in milliseconds
    LastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    LastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    LastHttpCallResponseCode int
    Last HTTP Call Response Code
    LastHttpCallSuccess bool
    Was the last HTTP call made successful?
    LastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    LastHttpCallTime string
    Time of Last HTTP Call
    MostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    Name string
    Name for this Destination
    NewRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    NewRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    OutboundConnectionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    OutboundConnectionSendEnabled bool
    Whether or not sending is enabled for outboundConnection logs.
    PublicHostingRequestEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    PublicHostingRequestSendEnabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    QradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    QradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    SendingActive bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    SettingsChangeEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SettingsChangeSendEnabled bool
    Whether or not sending is enabled for settingsChange logs.
    SftpActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SftpActionSendEnabled bool
    Whether or not sending is enabled for sftpAction logs.
    SolarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SolarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    SplunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SplunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    SyncEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    SyncSendEnabled bool
    Whether or not sending is enabled for sync logs.
    WebDavActionEntriesSent int
    Number of log entries sent for the lifetime of this destination.
    WebDavActionSendEnabled bool
    Whether or not sending is enabled for webDavAction logs.
    action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    action_send_enabled bool
    Whether or not sending is enabled for action logs.
    additional_headers any
    Additional HTTP Headers included in calls to the destination URL
    api_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    api_request_send_enabled bool
    Whether or not sending is enabled for apiRequest logs.
    automation_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    automation_send_enabled bool
    Whether or not sending is enabled for automation logs.
    azure_dcr_immutable_id string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azure_oauth_client_credentials_client_id string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azure_oauth_client_credentials_client_secret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_client_secret_masked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_tenant_id string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azure_stream_name string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    connection_test_entry string
    Connection Test Entry
    crowdstrike_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    crowdstrike_token_masked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    datadog_api_key_masked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    destination_type string
    Destination Type
    destination_url string
    Destination Url
    email_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    email_send_enabled bool
    Whether or not sending is enabled for email logs.
    exavault_api_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    exavault_api_request_send_enabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    file_destination_path string
    Applicable only for destination type: file. Destination folder path on Files.com.
    file_format string
    Applicable only for destination type: file. Generated file format.
    file_interval_minutes number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftp_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    ftp_action_send_enabled bool
    Whether or not sending is enabled for ftpAction logs.
    generic_payload_type string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    last_http_call_duration_ms number
    Duration of the last HTTP Call in milliseconds
    last_http_call_error_message string
    Last HTTP Call Error Message if applicable
    last_http_call_response_body string
    Last HTTP Call Response Body. Large responses are truncated.
    last_http_call_response_code number
    Last HTTP Call Response Code
    last_http_call_success bool
    Was the last HTTP call made successful?
    last_http_call_target_type string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    last_http_call_time string
    Time of Last HTTP Call
    most_recent_http_call_success_time string
    Time of Most Recent Successful HTTP Call
    name string
    Name for this Destination
    new_relic_api_key string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    new_relic_api_key_masked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    outbound_connection_send_enabled bool
    Whether or not sending is enabled for outboundConnection logs.
    public_hosting_request_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    public_hosting_request_send_enabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    qradar_password string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_password_masked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_username string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sending_active bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    settings_change_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    settings_change_send_enabled bool
    Whether or not sending is enabled for settingsChange logs.
    sftp_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    sftp_action_send_enabled bool
    Whether or not sending is enabled for sftpAction logs.
    solar_winds_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    solar_winds_token_masked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    splunk_token_masked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    sync_send_enabled bool
    Whether or not sending is enabled for sync logs.
    web_dav_action_entries_sent number
    Number of log entries sent for the lifetime of this destination.
    web_dav_action_send_enabled bool
    Whether or not sending is enabled for webDavAction logs.
    actionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    actionSendEnabled Boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders Object
    Additional HTTP Headers included in calls to the destination URL
    apiRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    apiRequestSendEnabled Boolean
    Whether or not sending is enabled for apiRequest logs.
    automationEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    automationSendEnabled Boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId String
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsClientSecretMasked String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName String
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    connectionTestEntry String
    Connection Test Entry
    crowdstrikeToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    crowdstrikeTokenMasked String
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    datadogApiKeyMasked String
    Applicable only for destination type: datadog. API key provided by Datadog.
    destinationType String
    Destination Type
    destinationUrl String
    Destination Url
    emailEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    emailSendEnabled Boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestSendEnabled Boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath String
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat String
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes Integer
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    ftpActionSendEnabled Boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType String
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    lastHttpCallDurationMs Integer
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage String
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody String
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode Integer
    Last HTTP Call Response Code
    lastHttpCallSuccess Boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType String
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime String
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime String
    Time of Most Recent Successful HTTP Call
    name String
    Name for this Destination
    newRelicApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    newRelicApiKeyMasked String
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    outboundConnectionSendEnabled Boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestSendEnabled Boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarPasswordMasked String
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername String
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive Boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    settingsChangeSendEnabled Boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    sftpActionSendEnabled Boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    solarWindsTokenMasked String
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    splunkTokenMasked String
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    syncSendEnabled Boolean
    Whether or not sending is enabled for sync logs.
    webDavActionEntriesSent Integer
    Number of log entries sent for the lifetime of this destination.
    webDavActionSendEnabled Boolean
    Whether or not sending is enabled for webDavAction logs.
    actionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    actionSendEnabled boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders any
    Additional HTTP Headers included in calls to the destination URL
    apiRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    apiRequestSendEnabled boolean
    Whether or not sending is enabled for apiRequest logs.
    automationEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    automationSendEnabled boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId string
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsClientSecretMasked string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId string
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName string
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    connectionTestEntry string
    Connection Test Entry
    crowdstrikeToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    crowdstrikeTokenMasked string
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    datadogApiKeyMasked string
    Applicable only for destination type: datadog. API key provided by Datadog.
    destinationType string
    Destination Type
    destinationUrl string
    Destination Url
    emailEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    emailSendEnabled boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestSendEnabled boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath string
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat string
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    ftpActionSendEnabled boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType string
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    lastHttpCallDurationMs number
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage string
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody string
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode number
    Last HTTP Call Response Code
    lastHttpCallSuccess boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType string
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime string
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime string
    Time of Most Recent Successful HTTP Call
    name string
    Name for this Destination
    newRelicApiKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    newRelicApiKeyMasked string
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    outboundConnectionSendEnabled boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestSendEnabled boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarPasswordMasked string
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername string
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    settingsChangeSendEnabled boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    sftpActionSendEnabled boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    solarWindsTokenMasked string
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    splunkTokenMasked string
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    syncSendEnabled boolean
    Whether or not sending is enabled for sync logs.
    webDavActionEntriesSent number
    Number of log entries sent for the lifetime of this destination.
    webDavActionSendEnabled boolean
    Whether or not sending is enabled for webDavAction logs.
    action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    action_send_enabled bool
    Whether or not sending is enabled for action logs.
    additional_headers Any
    Additional HTTP Headers included in calls to the destination URL
    api_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    api_request_send_enabled bool
    Whether or not sending is enabled for apiRequest logs.
    automation_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    automation_send_enabled bool
    Whether or not sending is enabled for automation logs.
    azure_dcr_immutable_id str
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azure_oauth_client_credentials_client_id str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azure_oauth_client_credentials_client_secret str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_client_secret_masked str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    azure_oauth_client_credentials_tenant_id str
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azure_stream_name str
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    connection_test_entry str
    Connection Test Entry
    crowdstrike_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    crowdstrike_token_masked str
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadog_api_key str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    datadog_api_key_masked str
    Applicable only for destination type: datadog. API key provided by Datadog.
    destination_type str
    Destination Type
    destination_url str
    Destination Url
    email_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    email_send_enabled bool
    Whether or not sending is enabled for email logs.
    exavault_api_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    exavault_api_request_send_enabled bool
    Whether or not sending is enabled for exavaultApiRequest logs.
    file_destination_path str
    Applicable only for destination type: file. Destination folder path on Files.com.
    file_format str
    Applicable only for destination type: file. Generated file format.
    file_interval_minutes int
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftp_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    ftp_action_send_enabled bool
    Whether or not sending is enabled for ftpAction logs.
    generic_payload_type str
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    last_http_call_duration_ms int
    Duration of the last HTTP Call in milliseconds
    last_http_call_error_message str
    Last HTTP Call Error Message if applicable
    last_http_call_response_body str
    Last HTTP Call Response Body. Large responses are truncated.
    last_http_call_response_code int
    Last HTTP Call Response Code
    last_http_call_success bool
    Was the last HTTP call made successful?
    last_http_call_target_type str
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    last_http_call_time str
    Time of Last HTTP Call
    most_recent_http_call_success_time str
    Time of Most Recent Successful HTTP Call
    name str
    Name for this Destination
    new_relic_api_key str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    new_relic_api_key_masked str
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outbound_connection_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    outbound_connection_send_enabled bool
    Whether or not sending is enabled for outboundConnection logs.
    public_hosting_request_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    public_hosting_request_send_enabled bool
    Whether or not sending is enabled for publicHostingRequest logs.
    qradar_password str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_password_masked str
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradar_username str
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sending_active bool
    Whether this SIEM HTTP Destination is currently being sent to or not
    settings_change_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    settings_change_send_enabled bool
    Whether or not sending is enabled for settingsChange logs.
    sftp_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    sftp_action_send_enabled bool
    Whether or not sending is enabled for sftpAction logs.
    solar_winds_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    solar_winds_token_masked str
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunk_token str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    splunk_token_masked str
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    sync_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    sync_send_enabled bool
    Whether or not sending is enabled for sync logs.
    web_dav_action_entries_sent int
    Number of log entries sent for the lifetime of this destination.
    web_dav_action_send_enabled bool
    Whether or not sending is enabled for webDavAction logs.
    actionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    actionSendEnabled Boolean
    Whether or not sending is enabled for action logs.
    additionalHeaders Any
    Additional HTTP Headers included in calls to the destination URL
    apiRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    apiRequestSendEnabled Boolean
    Whether or not sending is enabled for apiRequest logs.
    automationEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    automationSendEnabled Boolean
    Whether or not sending is enabled for automation logs.
    azureDcrImmutableId String
    Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
    azureOauthClientCredentialsClientId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
    azureOauthClientCredentialsClientSecret String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: azure. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsClientSecretMasked String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
    azureOauthClientCredentialsTenantId String
    Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
    azureStreamName String
    Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
    connectionTestEntry String
    Connection Test Entry
    crowdstrikeToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    crowdstrikeTokenMasked String
    Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
    datadogApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: datadog. API key provided by Datadog.
    datadogApiKeyMasked String
    Applicable only for destination type: datadog. API key provided by Datadog.
    destinationType String
    Destination Type
    destinationUrl String
    Destination Url
    emailEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    emailSendEnabled Boolean
    Whether or not sending is enabled for email logs.
    exavaultApiRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    exavaultApiRequestSendEnabled Boolean
    Whether or not sending is enabled for exavaultApiRequest logs.
    fileDestinationPath String
    Applicable only for destination type: file. Destination folder path on Files.com.
    fileFormat String
    Applicable only for destination type: file. Generated file format.
    fileIntervalMinutes Number
    Applicable only for destination type: file. Interval, in minutes, between file deliveries.
    ftpActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    ftpActionSendEnabled Boolean
    Whether or not sending is enabled for ftpAction logs.
    genericPayloadType String
    Applicable only for destination type: generic. Indicates the type of HTTP body. Can be jsonNewline or json_array. jsonNewline is multiple log entries as JSON separated by newlines. jsonArray is a single JSON array containing multiple log entries as JSON.
    lastHttpCallDurationMs Number
    Duration of the last HTTP Call in milliseconds
    lastHttpCallErrorMessage String
    Last HTTP Call Error Message if applicable
    lastHttpCallResponseBody String
    Last HTTP Call Response Body. Large responses are truncated.
    lastHttpCallResponseCode Number
    Last HTTP Call Response Code
    lastHttpCallSuccess Boolean
    Was the last HTTP call made successful?
    lastHttpCallTargetType String
    Type of URL that was last called. Can be destinationUrl or azureOauthClientCredentialsUrl
    lastHttpCallTime String
    Time of Last HTTP Call
    mostRecentHttpCallSuccessTime String
    Time of Most Recent Successful HTTP Call
    name String
    Name for this Destination
    newRelicApiKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: new_relic. API key provided by New Relic.
    newRelicApiKeyMasked String
    Applicable only for destination type: new_relic. API key provided by New Relic.
    outboundConnectionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    outboundConnectionSendEnabled Boolean
    Whether or not sending is enabled for outboundConnection logs.
    publicHostingRequestEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    publicHostingRequestSendEnabled Boolean
    Whether or not sending is enabled for publicHostingRequest logs.
    qradarPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarPasswordMasked String
    Applicable only for destination type: qradar. Basic auth password provided by QRadar.
    qradarUsername String
    Applicable only for destination type: qradar. Basic auth username provided by QRadar.
    sendingActive Boolean
    Whether this SIEM HTTP Destination is currently being sent to or not
    settingsChangeEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    settingsChangeSendEnabled Boolean
    Whether or not sending is enabled for settingsChange logs.
    sftpActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    sftpActionSendEnabled Boolean
    Whether or not sending is enabled for sftpAction logs.
    solarWindsToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    solarWindsTokenMasked String
    Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
    splunkToken String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    splunkTokenMasked String
    Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
    syncEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    syncSendEnabled Boolean
    Whether or not sending is enabled for sync logs.
    webDavActionEntriesSent Number
    Number of log entries sent for the lifetime of this destination.
    webDavActionSendEnabled Boolean
    Whether or not sending is enabled for webDavAction logs.

    Import

    The pulumi import command can be used, for example:

    Siem Http Destinations can be imported by specifying the id.

    $ pulumi import filescom:index/siemHttpDestination:SiemHttpDestination example_siem_http_destination 1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    filescom jschady/pulumi-filescom
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the filescom Terraform Provider.
    filescom logo
    Viewing docs for Files.com v0.1.1
    published on Thursday, Aug 20, 2026 by jschady

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial