published on Thursday, Aug 20, 2026 by jschady
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:
- Destination
Type string - Destination Type
- Action
Send boolEnabled - Whether or not sending is enabled for action logs.
- Additional
Headers object - Additional HTTP Headers included in calls to the destination URL
- Api
Request boolSend Enabled - Whether or not sending is enabled for apiRequest logs.
- Automation
Send boolEnabled - Whether or not sending is enabled for automation logs.
- Azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- Azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- Azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- Azure
Stream stringName - 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 stringKey - 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 boolEnabled - Whether or not sending is enabled for email logs.
- Exavault
Api boolRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- File
Destination stringPath - 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 intMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- Ftp
Action boolSend Enabled - Whether or not sending is enabled for ftpAction logs.
- Generic
Payload stringType - 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 stringApi Key - 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 boolSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- Public
Hosting boolRequest Send Enabled - 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 boolSend Enabled - Whether or not sending is enabled for settingsChange logs.
- Sftp
Action boolSend Enabled - Whether or not sending is enabled for sftpAction logs.
- Solar
Winds stringToken - 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 boolEnabled - Whether or not sending is enabled for sync logs.
- Web
Dav boolAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- Destination
Type string - Destination Type
- Action
Send boolEnabled - Whether or not sending is enabled for action logs.
- Additional
Headers interface{} - Additional HTTP Headers included in calls to the destination URL
- Api
Request boolSend Enabled - Whether or not sending is enabled for apiRequest logs.
- Automation
Send boolEnabled - Whether or not sending is enabled for automation logs.
- Azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- Azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- Azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- Azure
Stream stringName - 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 stringKey - 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 boolEnabled - Whether or not sending is enabled for email logs.
- Exavault
Api boolRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- File
Destination stringPath - 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 intMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- Ftp
Action boolSend Enabled - Whether or not sending is enabled for ftpAction logs.
- Generic
Payload stringType - 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 stringApi Key - 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 boolSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- Public
Hosting boolRequest Send Enabled - 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 boolSend Enabled - Whether or not sending is enabled for settingsChange logs.
- Sftp
Action boolSend Enabled - Whether or not sending is enabled for sftpAction logs.
- Solar
Winds stringToken - 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 boolEnabled - Whether or not sending is enabled for sync logs.
- Web
Dav boolAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- destination_
type string - Destination Type
- action_
send_ boolenabled - Whether or not sending is enabled for action logs.
- additional_
headers any - Additional HTTP Headers included in calls to the destination URL
- api_
request_ boolsend_ enabled - Whether or not sending is enabled for apiRequest logs.
- automation_
send_ boolenabled - Whether or not sending is enabled for automation logs.
- azure_
dcr_ stringimmutable_ id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure_
oauth_ stringclient_ credentials_ client_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure_
oauth_ stringclient_ credentials_ client_ secret - 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_ stringclient_ credentials_ tenant_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure_
stream_ stringname - 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_ stringkey - 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_ boolenabled - Whether or not sending is enabled for email logs.
- exavault_
api_ boolrequest_ send_ enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file_
destination_ stringpath - 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_ numberminutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp_
action_ boolsend_ enabled - Whether or not sending is enabled for ftpAction logs.
- generic_
payload_ stringtype - 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_ stringapi_ key - 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_ boolsend_ enabled - Whether or not sending is enabled for outboundConnection logs.
- public_
hosting_ boolrequest_ send_ enabled - 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_ boolsend_ enabled - Whether or not sending is enabled for settingsChange logs.
- sftp_
action_ boolsend_ enabled - Whether or not sending is enabled for sftpAction logs.
- solar_
winds_ stringtoken - 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_ boolenabled - Whether or not sending is enabled for sync logs.
- web_
dav_ boolaction_ send_ enabled - Whether or not sending is enabled for webDavAction logs.
- destination
Type String - Destination Type
- action
Send BooleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers Object - Additional HTTP Headers included in calls to the destination URL
- api
Request BooleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Send BooleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr StringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth StringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth StringClient Credentials Client Secret - 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 StringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream StringName - 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 StringKey - 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 BooleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api BooleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination StringPath - 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 IntegerMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action BooleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload StringType - 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 StringApi Key - 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 BooleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting BooleanRequest Send Enabled - 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 Boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change BooleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action BooleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds StringToken - 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 BooleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav BooleanAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- destination
Type string - Destination Type
- action
Send booleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers any - Additional HTTP Headers included in calls to the destination URL
- api
Request booleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Send booleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream stringName - 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 stringKey - 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 booleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api booleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination stringPath - 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 numberMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action booleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload stringType - 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 stringApi Key - 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 booleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting booleanRequest Send Enabled - 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 boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change booleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action booleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds stringToken - 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 booleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav booleanAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- destination_
type str - Destination Type
- action_
send_ boolenabled - Whether or not sending is enabled for action logs.
- additional_
headers Any - Additional HTTP Headers included in calls to the destination URL
- api_
request_ boolsend_ enabled - Whether or not sending is enabled for apiRequest logs.
- automation_
send_ boolenabled - Whether or not sending is enabled for automation logs.
- azure_
dcr_ strimmutable_ id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure_
oauth_ strclient_ credentials_ client_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure_
oauth_ strclient_ credentials_ client_ secret - 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_ strclient_ credentials_ tenant_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure_
stream_ strname - 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_ strkey - 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_ boolenabled - Whether or not sending is enabled for email logs.
- exavault_
api_ boolrequest_ send_ enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file_
destination_ strpath - 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_ intminutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp_
action_ boolsend_ enabled - Whether or not sending is enabled for ftpAction logs.
- generic_
payload_ strtype - 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_ strapi_ key - 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_ boolsend_ enabled - Whether or not sending is enabled for outboundConnection logs.
- public_
hosting_ boolrequest_ send_ enabled - 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_ boolsend_ enabled - Whether or not sending is enabled for settingsChange logs.
- sftp_
action_ boolsend_ enabled - Whether or not sending is enabled for sftpAction logs.
- solar_
winds_ strtoken - 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_ boolenabled - Whether or not sending is enabled for sync logs.
- web_
dav_ boolaction_ send_ enabled - Whether or not sending is enabled for webDavAction logs.
- destination
Type String - Destination Type
- action
Send BooleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers Any - Additional HTTP Headers included in calls to the destination URL
- api
Request BooleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Send BooleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr StringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth StringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth StringClient Credentials Client Secret - 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 StringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream StringName - 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 StringKey - 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 BooleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api BooleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination StringPath - 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 NumberMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action BooleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload StringType - 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 StringApi Key - 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 BooleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting BooleanRequest Send Enabled - 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 Boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change BooleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action BooleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds StringToken - 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 BooleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav BooleanAction Send Enabled - 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:
- Action
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Api
Request intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Automation
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Azure
Oauth stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- Connection
Test stringEntry - Connection Test Entry
- Crowdstrike
Token stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- Datadog
Api stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- Email
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Exavault
Api intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Ftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Http intCall Duration Ms - Duration of the last HTTP Call in milliseconds
- Last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- Last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- Last
Http intCall Response Code - Last HTTP Call Response Code
- Last
Http boolCall Success - Was the last HTTP call made successful?
- Last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - Last
Http stringCall Time - Time of Last HTTP Call
- Most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- New
Relic stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- Outbound
Connection intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Public
Hosting intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Qradar
Password stringMasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- Settings
Change intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Sftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Solar
Winds stringToken Masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- Splunk
Token stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- Sync
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Web
Dav intAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- Action
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Api
Request intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Automation
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Azure
Oauth stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- Connection
Test stringEntry - Connection Test Entry
- Crowdstrike
Token stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- Datadog
Api stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- Email
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Exavault
Api intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Ftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Http intCall Duration Ms - Duration of the last HTTP Call in milliseconds
- Last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- Last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- Last
Http intCall Response Code - Last HTTP Call Response Code
- Last
Http boolCall Success - Was the last HTTP call made successful?
- Last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - Last
Http stringCall Time - Time of Last HTTP Call
- Most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- New
Relic stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- Outbound
Connection intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Public
Hosting intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Qradar
Password stringMasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- Settings
Change intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Sftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Solar
Winds stringToken Masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- Splunk
Token stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- Sync
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Web
Dav intAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- action_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- api_
request_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- automation_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- azure_
oauth_ stringclient_ credentials_ client_ secret_ masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- connection_
test_ stringentry - Connection Test Entry
- crowdstrike_
token_ stringmasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog_
api_ stringkey_ masked - Applicable only for destination type: datadog. API key provided by Datadog.
- email_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- exavault_
api_ numberrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- ftp_
action_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- id string
- The provider-assigned unique ID for this managed resource.
- last_
http_ numbercall_ duration_ ms - Duration of the last HTTP Call in milliseconds
- last_
http_ stringcall_ error_ message - Last HTTP Call Error Message if applicable
- last_
http_ stringcall_ response_ body - Last HTTP Call Response Body. Large responses are truncated.
- last_
http_ numbercall_ response_ code - Last HTTP Call Response Code
- last_
http_ boolcall_ success - Was the last HTTP call made successful?
- last_
http_ stringcall_ target_ type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last_
http_ stringcall_ time - Time of Last HTTP Call
- most_
recent_ stringhttp_ call_ success_ time - Time of Most Recent Successful HTTP Call
- new_
relic_ stringapi_ key_ masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound_
connection_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- public_
hosting_ numberrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- qradar_
password_ stringmasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- settings_
change_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- sftp_
action_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- solar_
winds_ stringtoken_ masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- splunk_
token_ stringmasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- web_
dav_ numberaction_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- action
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- api
Request IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- automation
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- azure
Oauth StringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- connection
Test StringEntry - Connection Test Entry
- crowdstrike
Token StringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api StringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- email
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- exavault
Api IntegerRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Http IntegerCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http StringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http StringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http IntegerCall Response Code - Last HTTP Call Response Code
- last
Http BooleanCall Success - Was the last HTTP call made successful?
- last
Http StringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http StringCall Time - Time of Last HTTP Call
- most
Recent StringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- new
Relic StringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting IntegerRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- qradar
Password StringMasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- settings
Change IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- solar
Winds StringToken Masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- splunk
Token StringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- web
Dav IntegerAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- action
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- api
Request numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- automation
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- azure
Oauth stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- connection
Test stringEntry - Connection Test Entry
- crowdstrike
Token stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- email
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- exavault
Api numberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Http numberCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http numberCall Response Code - Last HTTP Call Response Code
- last
Http booleanCall Success - Was the last HTTP call made successful?
- last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http stringCall Time - Time of Last HTTP Call
- most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- new
Relic stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting numberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- qradar
Password stringMasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- settings
Change numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- solar
Winds stringToken Masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- splunk
Token stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- web
Dav numberAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- action_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- api_
request_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- automation_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- azure_
oauth_ strclient_ credentials_ client_ secret_ masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- connection_
test_ strentry - Connection Test Entry
- crowdstrike_
token_ strmasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog_
api_ strkey_ masked - Applicable only for destination type: datadog. API key provided by Datadog.
- email_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- exavault_
api_ intrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- ftp_
action_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
http_ intcall_ duration_ ms - Duration of the last HTTP Call in milliseconds
- last_
http_ strcall_ error_ message - Last HTTP Call Error Message if applicable
- last_
http_ strcall_ response_ body - Last HTTP Call Response Body. Large responses are truncated.
- last_
http_ intcall_ response_ code - Last HTTP Call Response Code
- last_
http_ boolcall_ success - Was the last HTTP call made successful?
- last_
http_ strcall_ target_ type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last_
http_ strcall_ time - Time of Last HTTP Call
- most_
recent_ strhttp_ call_ success_ time - Time of Most Recent Successful HTTP Call
- new_
relic_ strapi_ key_ masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound_
connection_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- public_
hosting_ intrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- qradar_
password_ strmasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- settings_
change_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- sftp_
action_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- solar_
winds_ strtoken_ masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- splunk_
token_ strmasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- web_
dav_ intaction_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- action
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- api
Request NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- automation
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- azure
Oauth StringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- connection
Test StringEntry - Connection Test Entry
- crowdstrike
Token StringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api StringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- email
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- exavault
Api NumberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Http NumberCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http StringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http StringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http NumberCall Response Code - Last HTTP Call Response Code
- last
Http BooleanCall Success - Was the last HTTP call made successful?
- last
Http StringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http StringCall Time - Time of Last HTTP Call
- most
Recent StringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- new
Relic StringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting NumberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- qradar
Password StringMasked - Applicable only for destination type: qradar. Basic auth password provided by QRadar.
- settings
Change NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- solar
Winds StringToken Masked - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
- splunk
Token StringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- web
Dav NumberAction Entries Sent - 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) -> SiemHttpDestinationfunc 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.
- Action
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Action
Send boolEnabled - Whether or not sending is enabled for action logs.
- Additional
Headers object - Additional HTTP Headers included in calls to the destination URL
- Api
Request intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Api
Request boolSend Enabled - Whether or not sending is enabled for apiRequest logs.
- Automation
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Automation
Send boolEnabled - Whether or not sending is enabled for automation logs.
- Azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- Azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- Azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- Azure
Oauth stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- Azure
Stream stringName - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- Connection
Test stringEntry - 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 stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- Datadog
Api stringKey - 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 stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- Destination
Type string - Destination Type
- Destination
Url string - Destination Url
- Email
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Email
Send boolEnabled - Whether or not sending is enabled for email logs.
- Exavault
Api intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Exavault
Api boolRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- File
Destination stringPath - 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 intMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- Ftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Ftp
Action boolSend Enabled - Whether or not sending is enabled for ftpAction logs.
- Generic
Payload stringType - 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 intCall Duration Ms - Duration of the last HTTP Call in milliseconds
- Last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- Last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- Last
Http intCall Response Code - Last HTTP Call Response Code
- Last
Http boolCall Success - Was the last HTTP call made successful?
- Last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - Last
Http stringCall Time - Time of Last HTTP Call
- Most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- Name string
- Name for this Destination
- New
Relic stringApi Key - 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 stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- Outbound
Connection intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Outbound
Connection boolSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- Public
Hosting intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Public
Hosting boolRequest Send Enabled - 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 stringMasked - 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 intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Settings
Change boolSend Enabled - Whether or not sending is enabled for settingsChange logs.
- Sftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Sftp
Action boolSend Enabled - Whether or not sending is enabled for sftpAction logs.
- Solar
Winds stringToken - 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 stringToken Masked - 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 stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- Sync
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Sync
Send boolEnabled - Whether or not sending is enabled for sync logs.
- Web
Dav intAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- Web
Dav boolAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- Action
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Action
Send boolEnabled - Whether or not sending is enabled for action logs.
- Additional
Headers interface{} - Additional HTTP Headers included in calls to the destination URL
- Api
Request intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Api
Request boolSend Enabled - Whether or not sending is enabled for apiRequest logs.
- Automation
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Automation
Send boolEnabled - Whether or not sending is enabled for automation logs.
- Azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- Azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- Azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- Azure
Oauth stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- Azure
Stream stringName - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- Connection
Test stringEntry - 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 stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- Datadog
Api stringKey - 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 stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- Destination
Type string - Destination Type
- Destination
Url string - Destination Url
- Email
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Email
Send boolEnabled - Whether or not sending is enabled for email logs.
- Exavault
Api intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Exavault
Api boolRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- File
Destination stringPath - 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 intMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- Ftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Ftp
Action boolSend Enabled - Whether or not sending is enabled for ftpAction logs.
- Generic
Payload stringType - 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 intCall Duration Ms - Duration of the last HTTP Call in milliseconds
- Last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- Last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- Last
Http intCall Response Code - Last HTTP Call Response Code
- Last
Http boolCall Success - Was the last HTTP call made successful?
- Last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - Last
Http stringCall Time - Time of Last HTTP Call
- Most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- Name string
- Name for this Destination
- New
Relic stringApi Key - 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 stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- Outbound
Connection intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Outbound
Connection boolSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- Public
Hosting intRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- Public
Hosting boolRequest Send Enabled - 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 stringMasked - 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 intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Settings
Change boolSend Enabled - Whether or not sending is enabled for settingsChange logs.
- Sftp
Action intEntries Sent - Number of log entries sent for the lifetime of this destination.
- Sftp
Action boolSend Enabled - Whether or not sending is enabled for sftpAction logs.
- Solar
Winds stringToken - 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 stringToken Masked - 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 stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- Sync
Entries intSent - Number of log entries sent for the lifetime of this destination.
- Sync
Send boolEnabled - Whether or not sending is enabled for sync logs.
- Web
Dav intAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- Web
Dav boolAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- action_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- action_
send_ boolenabled - Whether or not sending is enabled for action logs.
- additional_
headers any - Additional HTTP Headers included in calls to the destination URL
- api_
request_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- api_
request_ boolsend_ enabled - Whether or not sending is enabled for apiRequest logs.
- automation_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- automation_
send_ boolenabled - Whether or not sending is enabled for automation logs.
- azure_
dcr_ stringimmutable_ id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure_
oauth_ stringclient_ credentials_ client_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure_
oauth_ stringclient_ credentials_ client_ secret - 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_ stringclient_ credentials_ client_ secret_ masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- azure_
oauth_ stringclient_ credentials_ tenant_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure_
stream_ stringname - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- connection_
test_ stringentry - 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_ stringmasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog_
api_ stringkey - 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_ stringkey_ masked - Applicable only for destination type: datadog. API key provided by Datadog.
- destination_
type string - Destination Type
- destination_
url string - Destination Url
- email_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- email_
send_ boolenabled - Whether or not sending is enabled for email logs.
- exavault_
api_ numberrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- exavault_
api_ boolrequest_ send_ enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file_
destination_ stringpath - 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_ numberminutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp_
action_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- ftp_
action_ boolsend_ enabled - Whether or not sending is enabled for ftpAction logs.
- generic_
payload_ stringtype - 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_ numbercall_ duration_ ms - Duration of the last HTTP Call in milliseconds
- last_
http_ stringcall_ error_ message - Last HTTP Call Error Message if applicable
- last_
http_ stringcall_ response_ body - Last HTTP Call Response Body. Large responses are truncated.
- last_
http_ numbercall_ response_ code - Last HTTP Call Response Code
- last_
http_ boolcall_ success - Was the last HTTP call made successful?
- last_
http_ stringcall_ target_ type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last_
http_ stringcall_ time - Time of Last HTTP Call
- most_
recent_ stringhttp_ call_ success_ time - Time of Most Recent Successful HTTP Call
- name string
- Name for this Destination
- new_
relic_ stringapi_ key - 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_ stringapi_ key_ masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound_
connection_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- outbound_
connection_ boolsend_ enabled - Whether or not sending is enabled for outboundConnection logs.
- public_
hosting_ numberrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- public_
hosting_ boolrequest_ send_ enabled - 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_ stringmasked - 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_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- settings_
change_ boolsend_ enabled - Whether or not sending is enabled for settingsChange logs.
- sftp_
action_ numberentries_ sent - Number of log entries sent for the lifetime of this destination.
- sftp_
action_ boolsend_ enabled - Whether or not sending is enabled for sftpAction logs.
- solar_
winds_ stringtoken - 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_ stringtoken_ masked - 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_ stringmasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync_
entries_ numbersent - Number of log entries sent for the lifetime of this destination.
- sync_
send_ boolenabled - Whether or not sending is enabled for sync logs.
- web_
dav_ numberaction_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- web_
dav_ boolaction_ send_ enabled - Whether or not sending is enabled for webDavAction logs.
- action
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- action
Send BooleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers Object - Additional HTTP Headers included in calls to the destination URL
- api
Request IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- api
Request BooleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- automation
Send BooleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr StringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth StringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth StringClient Credentials Client Secret - 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 StringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- azure
Oauth StringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream StringName - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- connection
Test StringEntry - 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 StringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api StringKey - 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 StringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- destination
Type String - Destination Type
- destination
Url String - Destination Url
- email
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- email
Send BooleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api IntegerRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- exavault
Api BooleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination StringPath - 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 IntegerMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action BooleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload StringType - 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 IntegerCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http StringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http StringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http IntegerCall Response Code - Last HTTP Call Response Code
- last
Http BooleanCall Success - Was the last HTTP call made successful?
- last
Http StringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http StringCall Time - Time of Last HTTP Call
- most
Recent StringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- name String
- Name for this Destination
- new
Relic StringApi Key - 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 StringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- outbound
Connection BooleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting IntegerRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting BooleanRequest Send Enabled - 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 StringMasked - 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 Boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- settings
Change BooleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action IntegerEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action BooleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds StringToken - 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 StringToken Masked - 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 StringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries IntegerSent - Number of log entries sent for the lifetime of this destination.
- sync
Send BooleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav IntegerAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- web
Dav BooleanAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- action
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- action
Send booleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers any - Additional HTTP Headers included in calls to the destination URL
- api
Request numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- api
Request booleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- automation
Send booleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr stringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth stringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth stringClient Credentials Client Secret - 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 stringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- azure
Oauth stringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream stringName - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- connection
Test stringEntry - 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 stringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api stringKey - 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 stringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- destination
Type string - Destination Type
- destination
Url string - Destination Url
- email
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- email
Send booleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api numberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- exavault
Api booleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination stringPath - 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 numberMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action booleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload stringType - 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 numberCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http stringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http stringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http numberCall Response Code - Last HTTP Call Response Code
- last
Http booleanCall Success - Was the last HTTP call made successful?
- last
Http stringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http stringCall Time - Time of Last HTTP Call
- most
Recent stringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- name string
- Name for this Destination
- new
Relic stringApi Key - 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 stringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- outbound
Connection booleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting numberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting booleanRequest Send Enabled - 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 stringMasked - 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 boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- settings
Change booleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action numberEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action booleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds stringToken - 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 stringToken Masked - 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 stringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries numberSent - Number of log entries sent for the lifetime of this destination.
- sync
Send booleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav numberAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- web
Dav booleanAction Send Enabled - Whether or not sending is enabled for webDavAction logs.
- action_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- action_
send_ boolenabled - Whether or not sending is enabled for action logs.
- additional_
headers Any - Additional HTTP Headers included in calls to the destination URL
- api_
request_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- api_
request_ boolsend_ enabled - Whether or not sending is enabled for apiRequest logs.
- automation_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- automation_
send_ boolenabled - Whether or not sending is enabled for automation logs.
- azure_
dcr_ strimmutable_ id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure_
oauth_ strclient_ credentials_ client_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure_
oauth_ strclient_ credentials_ client_ secret - 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_ strclient_ credentials_ client_ secret_ masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- azure_
oauth_ strclient_ credentials_ tenant_ id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure_
stream_ strname - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- connection_
test_ strentry - 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_ strmasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog_
api_ strkey - 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_ strkey_ masked - Applicable only for destination type: datadog. API key provided by Datadog.
- destination_
type str - Destination Type
- destination_
url str - Destination Url
- email_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- email_
send_ boolenabled - Whether or not sending is enabled for email logs.
- exavault_
api_ intrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- exavault_
api_ boolrequest_ send_ enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file_
destination_ strpath - 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_ intminutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp_
action_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- ftp_
action_ boolsend_ enabled - Whether or not sending is enabled for ftpAction logs.
- generic_
payload_ strtype - 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_ intcall_ duration_ ms - Duration of the last HTTP Call in milliseconds
- last_
http_ strcall_ error_ message - Last HTTP Call Error Message if applicable
- last_
http_ strcall_ response_ body - Last HTTP Call Response Body. Large responses are truncated.
- last_
http_ intcall_ response_ code - Last HTTP Call Response Code
- last_
http_ boolcall_ success - Was the last HTTP call made successful?
- last_
http_ strcall_ target_ type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last_
http_ strcall_ time - Time of Last HTTP Call
- most_
recent_ strhttp_ call_ success_ time - Time of Most Recent Successful HTTP Call
- name str
- Name for this Destination
- new_
relic_ strapi_ key - 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_ strapi_ key_ masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound_
connection_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- outbound_
connection_ boolsend_ enabled - Whether or not sending is enabled for outboundConnection logs.
- public_
hosting_ intrequest_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- public_
hosting_ boolrequest_ send_ enabled - 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_ strmasked - 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_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- settings_
change_ boolsend_ enabled - Whether or not sending is enabled for settingsChange logs.
- sftp_
action_ intentries_ sent - Number of log entries sent for the lifetime of this destination.
- sftp_
action_ boolsend_ enabled - Whether or not sending is enabled for sftpAction logs.
- solar_
winds_ strtoken - 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_ strtoken_ masked - 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_ strmasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync_
entries_ intsent - Number of log entries sent for the lifetime of this destination.
- sync_
send_ boolenabled - Whether or not sending is enabled for sync logs.
- web_
dav_ intaction_ entries_ sent - Number of log entries sent for the lifetime of this destination.
- web_
dav_ boolaction_ send_ enabled - Whether or not sending is enabled for webDavAction logs.
- action
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- action
Send BooleanEnabled - Whether or not sending is enabled for action logs.
- additional
Headers Any - Additional HTTP Headers included in calls to the destination URL
- api
Request NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- api
Request BooleanSend Enabled - Whether or not sending is enabled for apiRequest logs.
- automation
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- automation
Send BooleanEnabled - Whether or not sending is enabled for automation logs.
- azure
Dcr StringImmutable Id - Applicable only for destination types: azure, azure_legacy. Immutable ID of the Data Collection Rule.
- azure
Oauth StringClient Credentials Client Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client ID.
- azure
Oauth StringClient Credentials Client Secret - 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 StringClient Credentials Client Secret Masked - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Client Secret.
- azure
Oauth StringClient Credentials Tenant Id - Applicable only for destination types: azure, azure_legacy. Client Credentials OAuth Tenant ID.
- azure
Stream StringName - Applicable only for destination type: azure. Name of the stream in the DCR that represents the destination table.
- connection
Test StringEntry - 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 StringMasked - Applicable only for destination type: crowdstrike. Authentication token provided by Crowdstrike.
- datadog
Api StringKey - 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 StringKey Masked - Applicable only for destination type: datadog. API key provided by Datadog.
- destination
Type String - Destination Type
- destination
Url String - Destination Url
- email
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- email
Send BooleanEnabled - Whether or not sending is enabled for email logs.
- exavault
Api NumberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- exavault
Api BooleanRequest Send Enabled - Whether or not sending is enabled for exavaultApiRequest logs.
- file
Destination StringPath - 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 NumberMinutes - Applicable only for destination type: file. Interval, in minutes, between file deliveries.
- ftp
Action NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- ftp
Action BooleanSend Enabled - Whether or not sending is enabled for ftpAction logs.
- generic
Payload StringType - 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 NumberCall Duration Ms - Duration of the last HTTP Call in milliseconds
- last
Http StringCall Error Message - Last HTTP Call Error Message if applicable
- last
Http StringCall Response Body - Last HTTP Call Response Body. Large responses are truncated.
- last
Http NumberCall Response Code - Last HTTP Call Response Code
- last
Http BooleanCall Success - Was the last HTTP call made successful?
- last
Http StringCall Target Type - Type of URL that was last called. Can be
destinationUrlorazureOauthClientCredentialsUrl - last
Http StringCall Time - Time of Last HTTP Call
- most
Recent StringHttp Call Success Time - Time of Most Recent Successful HTTP Call
- name String
- Name for this Destination
- new
Relic StringApi Key - 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 StringApi Key Masked - Applicable only for destination type: new_relic. API key provided by New Relic.
- outbound
Connection NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- outbound
Connection BooleanSend Enabled - Whether or not sending is enabled for outboundConnection logs.
- public
Hosting NumberRequest Entries Sent - Number of log entries sent for the lifetime of this destination.
- public
Hosting BooleanRequest Send Enabled - 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 StringMasked - 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 Boolean - Whether this SIEM HTTP Destination is currently being sent to or not
- settings
Change NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- settings
Change BooleanSend Enabled - Whether or not sending is enabled for settingsChange logs.
- sftp
Action NumberEntries Sent - Number of log entries sent for the lifetime of this destination.
- sftp
Action BooleanSend Enabled - Whether or not sending is enabled for sftpAction logs.
- solar
Winds StringToken - 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 StringToken Masked - 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 StringMasked - Applicable only for destination types: splunk, splunk_compatible. Authentication token for the destination.
- sync
Entries NumberSent - Number of log entries sent for the lifetime of this destination.
- sync
Send BooleanEnabled - Whether or not sending is enabled for sync logs.
- web
Dav NumberAction Entries Sent - Number of log entries sent for the lifetime of this destination.
- web
Dav BooleanAction Send Enabled - 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
filescomTerraform Provider.
published on Thursday, Aug 20, 2026 by jschady