published on Thursday, May 7, 2026 by Pulumi
published on Thursday, May 7, 2026 by Pulumi
The FeedsService is responsible for configuring and managing the ingestion of third-party security data and logs into Google Security Operations through various feed creation, updates, and lifecycle management, and schema validation.
Warning: This resource is in beta, and should be used with the terraform-provider-google-beta provider. See Provider Versions for more details on beta resources.
To get more information about Feed, see:
- API documentation
- How-to Guides
Example Usage
Chronicle Feed Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
// This is a basic example for Terraform support in Chronicle feeds APIs.
const exampleFeed = new gcp.chronicle.Feed("example_feed", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
displayName: "test-feeds",
details: {
feedSourceType: "HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB",
logType: "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
httpsPushGoogleCloudPubsubSettings: {
splitDelimiter: "\n",
},
},
});
import pulumi
import pulumi_gcp as gcp
# This is a basic example for Terraform support in Chronicle feeds APIs.
example_feed = gcp.chronicle.Feed("example_feed",
location="us",
instance="00000000-0000-0000-0000-000000000000",
display_name="test-feeds",
details={
"feed_source_type": "HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB",
"log_type": "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
"https_push_google_cloud_pubsub_settings": {
"split_delimiter": "\n",
},
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// This is a basic example for Terraform support in Chronicle feeds APIs.
_, err := chronicle.NewFeed(ctx, "example_feed", &chronicle.FeedArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DisplayName: pulumi.String("test-feeds"),
Details: &chronicle.FeedDetailsArgs{
FeedSourceType: pulumi.String("HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB"),
LogType: pulumi.String("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT"),
HttpsPushGoogleCloudPubsubSettings: &chronicle.FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs{
SplitDelimiter: pulumi.String("\n"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
// This is a basic example for Terraform support in Chronicle feeds APIs.
var exampleFeed = new Gcp.Chronicle.Feed("example_feed", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DisplayName = "test-feeds",
Details = new Gcp.Chronicle.Inputs.FeedDetailsArgs
{
FeedSourceType = "HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB",
LogType = "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
HttpsPushGoogleCloudPubsubSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs
{
SplitDelimiter = @"
",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.Feed;
import com.pulumi.gcp.chronicle.FeedArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// This is a basic example for Terraform support in Chronicle feeds APIs.
var exampleFeed = new Feed("exampleFeed", FeedArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.displayName("test-feeds")
.details(FeedDetailsArgs.builder()
.feedSourceType("HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB")
.logType("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT")
.httpsPushGoogleCloudPubsubSettings(FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs.builder()
.splitDelimiter("""
""")
.build())
.build())
.build());
}
}
resources:
# This is a basic example for Terraform support in Chronicle feeds APIs.
exampleFeed:
type: gcp:chronicle:Feed
name: example_feed
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
displayName: test-feeds
details:
feedSourceType: HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
logType: projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT
httpsPushGoogleCloudPubsubSettings:
splitDelimiter: |2+
Chronicle Feed Gcs
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
// This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
// Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
// 0. Get the project's GCS service account (for Storage Notifications)
const gcsAccount = gcp.storage.getProjectServiceAccount({
project: "my-project-name",
});
// 1. Create the Pub/Sub Topic
const testTopic = new gcp.pubsub.Topic("test_topic", {
name: "chronicle-test-topic-my-project-name-_85840",
project: "my-project-name",
});
// 2. Grant GCS permission to publish to the topic
// This must remain so GCS can send file notifications to Pub/Sub
const gcsPublisher = new gcp.pubsub.TopicIAMMember("gcs_publisher", {
topic: testTopic.name,
role: "roles/pubsub.publisher",
member: gcsAccount.then(gcsAccount => `serviceAccount:${gcsAccount.emailAddress}`),
});
// 3. Create the Pub/Sub Subscription
const testSubscription = new gcp.pubsub.Subscription("test_subscription", {
name: "chronicle-test-sub-my-project-name-_60302",
project: "my-project-name",
topic: testTopic.name,
messageRetentionDuration: "1200s",
});
// 4. Define the GCS Bucket
const testBucket = new gcp.storage.Bucket("test_bucket", {
name: "chronicle-test-bucket-my-project-name-_22811",
project: "my-project-name",
location: "US",
forceDestroy: true,
});
// 5. Link GCS bucket to Pub/Sub Topic
const notification = new gcp.storage.Notification("notification", {
bucket: testBucket.name,
payloadFormat: "JSON_API_V1",
topic: testTopic.id,
eventTypes: ["OBJECT_FINALIZE"],
}, {
dependsOn: [gcsPublisher],
});
// 6. The Chronicle Feed Resource
// The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
// granted manually at the project level prior to running this test.
const exampleFeed = new gcp.chronicle.Feed("example_feed", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
displayName: "test-feeds",
details: {
feedSourceType: "GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN",
logType: "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
googleCloudStorageEventDrivenSettings: {
bucketUri: pulumi.interpolate`gs://${testBucket.name}`,
pubsubSubscription: pulumi.interpolate`projects/my-project-name/subscriptions/${testSubscription.name}`,
maxLookbackDays: 90,
},
},
}, {
dependsOn: [notification],
});
export const fetchedFeedServiceAccount = exampleFeed.feedServiceAccount;
import pulumi
import pulumi_gcp as gcp
# This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
# Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
# 0. Get the project's GCS service account (for Storage Notifications)
gcs_account = gcp.storage.get_project_service_account(project="my-project-name")
# 1. Create the Pub/Sub Topic
test_topic = gcp.pubsub.Topic("test_topic",
name="chronicle-test-topic-my-project-name-_85840",
project="my-project-name")
# 2. Grant GCS permission to publish to the topic
# This must remain so GCS can send file notifications to Pub/Sub
gcs_publisher = gcp.pubsub.TopicIAMMember("gcs_publisher",
topic=test_topic.name,
role="roles/pubsub.publisher",
member=f"serviceAccount:{gcs_account.email_address}")
# 3. Create the Pub/Sub Subscription
test_subscription = gcp.pubsub.Subscription("test_subscription",
name="chronicle-test-sub-my-project-name-_60302",
project="my-project-name",
topic=test_topic.name,
message_retention_duration="1200s")
# 4. Define the GCS Bucket
test_bucket = gcp.storage.Bucket("test_bucket",
name="chronicle-test-bucket-my-project-name-_22811",
project="my-project-name",
location="US",
force_destroy=True)
# 5. Link GCS bucket to Pub/Sub Topic
notification = gcp.storage.Notification("notification",
bucket=test_bucket.name,
payload_format="JSON_API_V1",
topic=test_topic.id,
event_types=["OBJECT_FINALIZE"],
opts = pulumi.ResourceOptions(depends_on=[gcs_publisher]))
# 6. The Chronicle Feed Resource
# The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
# granted manually at the project level prior to running this test.
example_feed = gcp.chronicle.Feed("example_feed",
location="us",
instance="00000000-0000-0000-0000-000000000000",
display_name="test-feeds",
details={
"feed_source_type": "GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN",
"log_type": "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
"google_cloud_storage_event_driven_settings": {
"bucket_uri": test_bucket.name.apply(lambda name: f"gs://{name}"),
"pubsub_subscription": test_subscription.name.apply(lambda name: f"projects/my-project-name/subscriptions/{name}"),
"max_lookback_days": 90,
},
},
opts = pulumi.ResourceOptions(depends_on=[notification]))
pulumi.export("fetchedFeedServiceAccount", example_feed.feed_service_account)
package main
import (
"fmt"
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/pubsub"
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
// Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
// 0. Get the project's GCS service account (for Storage Notifications)
gcsAccount, err := storage.GetProjectServiceAccount(ctx, &storage.GetProjectServiceAccountArgs{
Project: pulumi.StringRef("my-project-name"),
}, nil)
if err != nil {
return err
}
// 1. Create the Pub/Sub Topic
testTopic, err := pubsub.NewTopic(ctx, "test_topic", &pubsub.TopicArgs{
Name: pulumi.String("chronicle-test-topic-my-project-name-_85840"),
Project: pulumi.String("my-project-name"),
})
if err != nil {
return err
}
// 2. Grant GCS permission to publish to the topic
// This must remain so GCS can send file notifications to Pub/Sub
gcsPublisher, err := pubsub.NewTopicIAMMember(ctx, "gcs_publisher", &pubsub.TopicIAMMemberArgs{
Topic: testTopic.Name,
Role: pulumi.String("roles/pubsub.publisher"),
Member: pulumi.Sprintf("serviceAccount:%v", gcsAccount.EmailAddress),
})
if err != nil {
return err
}
// 3. Create the Pub/Sub Subscription
testSubscription, err := pubsub.NewSubscription(ctx, "test_subscription", &pubsub.SubscriptionArgs{
Name: pulumi.String("chronicle-test-sub-my-project-name-_60302"),
Project: pulumi.String("my-project-name"),
Topic: testTopic.Name,
MessageRetentionDuration: pulumi.String("1200s"),
})
if err != nil {
return err
}
// 4. Define the GCS Bucket
testBucket, err := storage.NewBucket(ctx, "test_bucket", &storage.BucketArgs{
Name: pulumi.String("chronicle-test-bucket-my-project-name-_22811"),
Project: pulumi.String("my-project-name"),
Location: pulumi.String("US"),
ForceDestroy: pulumi.Bool(true),
})
if err != nil {
return err
}
// 5. Link GCS bucket to Pub/Sub Topic
notification, err := storage.NewNotification(ctx, "notification", &storage.NotificationArgs{
Bucket: testBucket.Name,
PayloadFormat: pulumi.String("JSON_API_V1"),
Topic: testTopic.ID(),
EventTypes: pulumi.StringArray{
pulumi.String("OBJECT_FINALIZE"),
},
}, pulumi.DependsOn([]pulumi.Resource{
gcsPublisher,
}))
if err != nil {
return err
}
// 6. The Chronicle Feed Resource
// The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
// granted manually at the project level prior to running this test.
exampleFeed, err := chronicle.NewFeed(ctx, "example_feed", &chronicle.FeedArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DisplayName: pulumi.String("test-feeds"),
Details: &chronicle.FeedDetailsArgs{
FeedSourceType: pulumi.String("GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN"),
LogType: pulumi.String("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT"),
GoogleCloudStorageEventDrivenSettings: &chronicle.FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs{
BucketUri: testBucket.Name.ApplyT(func(name string) (string, error) {
return fmt.Sprintf("gs://%v", name), nil
}).(pulumi.StringOutput),
PubsubSubscription: testSubscription.Name.ApplyT(func(name string) (string, error) {
return fmt.Sprintf("projects/my-project-name/subscriptions/%v", name), nil
}).(pulumi.StringOutput),
MaxLookbackDays: pulumi.Int(90),
},
},
}, pulumi.DependsOn([]pulumi.Resource{
notification,
}))
if err != nil {
return err
}
ctx.Export("fetchedFeedServiceAccount", exampleFeed.FeedServiceAccount)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
// This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
// Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
// 0. Get the project's GCS service account (for Storage Notifications)
var gcsAccount = Gcp.Storage.GetProjectServiceAccount.Invoke(new()
{
Project = "my-project-name",
});
// 1. Create the Pub/Sub Topic
var testTopic = new Gcp.PubSub.Topic("test_topic", new()
{
Name = "chronicle-test-topic-my-project-name-_85840",
Project = "my-project-name",
});
// 2. Grant GCS permission to publish to the topic
// This must remain so GCS can send file notifications to Pub/Sub
var gcsPublisher = new Gcp.PubSub.TopicIAMMember("gcs_publisher", new()
{
Topic = testTopic.Name,
Role = "roles/pubsub.publisher",
Member = $"serviceAccount:{gcsAccount.Apply(getProjectServiceAccountResult => getProjectServiceAccountResult.EmailAddress)}",
});
// 3. Create the Pub/Sub Subscription
var testSubscription = new Gcp.PubSub.Subscription("test_subscription", new()
{
Name = "chronicle-test-sub-my-project-name-_60302",
Project = "my-project-name",
Topic = testTopic.Name,
MessageRetentionDuration = "1200s",
});
// 4. Define the GCS Bucket
var testBucket = new Gcp.Storage.Bucket("test_bucket", new()
{
Name = "chronicle-test-bucket-my-project-name-_22811",
Project = "my-project-name",
Location = "US",
ForceDestroy = true,
});
// 5. Link GCS bucket to Pub/Sub Topic
var notification = new Gcp.Storage.Notification("notification", new()
{
Bucket = testBucket.Name,
PayloadFormat = "JSON_API_V1",
Topic = testTopic.Id,
EventTypes = new[]
{
"OBJECT_FINALIZE",
},
}, new CustomResourceOptions
{
DependsOn =
{
gcsPublisher,
},
});
// 6. The Chronicle Feed Resource
// The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
// granted manually at the project level prior to running this test.
var exampleFeed = new Gcp.Chronicle.Feed("example_feed", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DisplayName = "test-feeds",
Details = new Gcp.Chronicle.Inputs.FeedDetailsArgs
{
FeedSourceType = "GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN",
LogType = "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
GoogleCloudStorageEventDrivenSettings = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs
{
BucketUri = testBucket.Name.Apply(name => $"gs://{name}"),
PubsubSubscription = testSubscription.Name.Apply(name => $"projects/my-project-name/subscriptions/{name}"),
MaxLookbackDays = 90,
},
},
}, new CustomResourceOptions
{
DependsOn =
{
notification,
},
});
return new Dictionary<string, object?>
{
["fetchedFeedServiceAccount"] = exampleFeed.FeedServiceAccount,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.StorageFunctions;
import com.pulumi.gcp.storage.inputs.GetProjectServiceAccountArgs;
import com.pulumi.gcp.pubsub.Topic;
import com.pulumi.gcp.pubsub.TopicArgs;
import com.pulumi.gcp.pubsub.TopicIAMMember;
import com.pulumi.gcp.pubsub.TopicIAMMemberArgs;
import com.pulumi.gcp.pubsub.Subscription;
import com.pulumi.gcp.pubsub.SubscriptionArgs;
import com.pulumi.gcp.storage.Bucket;
import com.pulumi.gcp.storage.BucketArgs;
import com.pulumi.gcp.storage.Notification;
import com.pulumi.gcp.storage.NotificationArgs;
import com.pulumi.gcp.chronicle.Feed;
import com.pulumi.gcp.chronicle.FeedArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
// Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
// 0. Get the project's GCS service account (for Storage Notifications)
final var gcsAccount = StorageFunctions.getProjectServiceAccount(GetProjectServiceAccountArgs.builder()
.project("my-project-name")
.build());
// 1. Create the Pub/Sub Topic
var testTopic = new Topic("testTopic", TopicArgs.builder()
.name("chronicle-test-topic-my-project-name-_85840")
.project("my-project-name")
.build());
// 2. Grant GCS permission to publish to the topic
// This must remain so GCS can send file notifications to Pub/Sub
var gcsPublisher = new TopicIAMMember("gcsPublisher", TopicIAMMemberArgs.builder()
.topic(testTopic.name())
.role("roles/pubsub.publisher")
.member(String.format("serviceAccount:%s", gcsAccount.emailAddress()))
.build());
// 3. Create the Pub/Sub Subscription
var testSubscription = new Subscription("testSubscription", SubscriptionArgs.builder()
.name("chronicle-test-sub-my-project-name-_60302")
.project("my-project-name")
.topic(testTopic.name())
.messageRetentionDuration("1200s")
.build());
// 4. Define the GCS Bucket
var testBucket = new Bucket("testBucket", BucketArgs.builder()
.name("chronicle-test-bucket-my-project-name-_22811")
.project("my-project-name")
.location("US")
.forceDestroy(true)
.build());
// 5. Link GCS bucket to Pub/Sub Topic
var notification = new Notification("notification", NotificationArgs.builder()
.bucket(testBucket.name())
.payloadFormat("JSON_API_V1")
.topic(testTopic.id())
.eventTypes("OBJECT_FINALIZE")
.build(), CustomResourceOptions.builder()
.dependsOn(gcsPublisher)
.build());
// 6. The Chronicle Feed Resource
// The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
// granted manually at the project level prior to running this test.
var exampleFeed = new Feed("exampleFeed", FeedArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.displayName("test-feeds")
.details(FeedDetailsArgs.builder()
.feedSourceType("GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN")
.logType("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT")
.googleCloudStorageEventDrivenSettings(FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs.builder()
.bucketUri(testBucket.name().applyValue(_name -> String.format("gs://%s", _name)))
.pubsubSubscription(testSubscription.name().applyValue(_name -> String.format("projects/my-project-name/subscriptions/%s", _name)))
.maxLookbackDays(90)
.build())
.build())
.build(), CustomResourceOptions.builder()
.dependsOn(notification)
.build());
ctx.export("fetchedFeedServiceAccount", exampleFeed.feedServiceAccount());
}
}
resources:
# 1. Create the Pub/Sub Topic
testTopic:
type: gcp:pubsub:Topic
name: test_topic
properties:
name: chronicle-test-topic-my-project-name-_85840
project: my-project-name
# 2. Grant GCS permission to publish to the topic
# This must remain so GCS can send file notifications to Pub/Sub
gcsPublisher:
type: gcp:pubsub:TopicIAMMember
name: gcs_publisher
properties:
topic: ${testTopic.name}
role: roles/pubsub.publisher
member: serviceAccount:${gcsAccount.emailAddress}
# 3. Create the Pub/Sub Subscription
testSubscription:
type: gcp:pubsub:Subscription
name: test_subscription
properties:
name: chronicle-test-sub-my-project-name-_60302
project: my-project-name
topic: ${testTopic.name}
messageRetentionDuration: 1200s
# 4. Define the GCS Bucket
testBucket:
type: gcp:storage:Bucket
name: test_bucket
properties:
name: chronicle-test-bucket-my-project-name-_22811
project: my-project-name
location: US
forceDestroy: true
# 5. Link GCS bucket to Pub/Sub Topic
notification:
type: gcp:storage:Notification
properties:
bucket: ${testBucket.name}
payloadFormat: JSON_API_V1
topic: ${testTopic.id}
eventTypes:
- OBJECT_FINALIZE
options:
dependsOn:
- ${gcsPublisher}
# 6. The Chronicle Feed Resource
# The required permissions (Storage Admin and Pub/Sub Subscriber) are assumed to be
# granted manually at the project level prior to running this test.
exampleFeed:
type: gcp:chronicle:Feed
name: example_feed
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
displayName: test-feeds
details:
feedSourceType: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
logType: projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT
googleCloudStorageEventDrivenSettings:
bucketUri: gs://${testBucket.name}
pubsubSubscription: projects/my-project-name/subscriptions/${testSubscription.name}
maxLookbackDays: 90
options:
dependsOn:
- ${notification}
variables:
# This is an example of a Chronicle feed using the pre_create hook to fetch the service account.
# Valid for source type: GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN and GOOGLE_CLOUD_STORAGE.
# 0. Get the project's GCS service account (for Storage Notifications)
gcsAccount:
fn::invoke:
function: gcp:storage:getProjectServiceAccount
arguments:
project: my-project-name
outputs:
# 7. Output the dynamically fetched service account to prove the pre_create hook worked
fetchedFeedServiceAccount: ${exampleFeed.feedServiceAccount}
Chronicle Feed Https Push
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
// This is an example of a Chronicle feed using the post_create hook to fetch the secret.
// Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
const exampleFeed = new gcp.chronicle.Feed("example_feed", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
displayName: "test-feeds",
details: {
feedSourceType: "HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE",
logType: "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
httpsPushAmazonKinesisFirehoseSettings: {
splitDelimiter: "\n",
},
},
});
export const feedSecret = exampleFeed.secret;
import pulumi
import pulumi_gcp as gcp
# This is an example of a Chronicle feed using the post_create hook to fetch the secret.
# Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
example_feed = gcp.chronicle.Feed("example_feed",
location="us",
instance="00000000-0000-0000-0000-000000000000",
display_name="test-feeds",
details={
"feed_source_type": "HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE",
"log_type": "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
"https_push_amazon_kinesis_firehose_settings": {
"split_delimiter": "\n",
},
})
pulumi.export("feedSecret", example_feed.secret)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// This is an example of a Chronicle feed using the post_create hook to fetch the secret.
// Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
exampleFeed, err := chronicle.NewFeed(ctx, "example_feed", &chronicle.FeedArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DisplayName: pulumi.String("test-feeds"),
Details: &chronicle.FeedDetailsArgs{
FeedSourceType: pulumi.String("HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE"),
LogType: pulumi.String("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT"),
HttpsPushAmazonKinesisFirehoseSettings: &chronicle.FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs{
SplitDelimiter: pulumi.String("\n"),
},
},
})
if err != nil {
return err
}
ctx.Export("feedSecret", exampleFeed.Secret)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
// This is an example of a Chronicle feed using the post_create hook to fetch the secret.
// Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
var exampleFeed = new Gcp.Chronicle.Feed("example_feed", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DisplayName = "test-feeds",
Details = new Gcp.Chronicle.Inputs.FeedDetailsArgs
{
FeedSourceType = "HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE",
LogType = "projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT",
HttpsPushAmazonKinesisFirehoseSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs
{
SplitDelimiter = @"
",
},
},
});
return new Dictionary<string, object?>
{
["feedSecret"] = exampleFeed.Secret,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.Feed;
import com.pulumi.gcp.chronicle.FeedArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsArgs;
import com.pulumi.gcp.chronicle.inputs.FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// This is an example of a Chronicle feed using the post_create hook to fetch the secret.
// Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
var exampleFeed = new Feed("exampleFeed", FeedArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.displayName("test-feeds")
.details(FeedDetailsArgs.builder()
.feedSourceType("HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE")
.logType("projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT")
.httpsPushAmazonKinesisFirehoseSettings(FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs.builder()
.splitDelimiter("""
""")
.build())
.build())
.build());
ctx.export("feedSecret", exampleFeed.secret());
}
}
resources:
# This is an example of a Chronicle feed using the post_create hook to fetch the secret.
# Valid for source type: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
exampleFeed:
type: gcp:chronicle:Feed
name: example_feed
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
displayName: test-feeds
details:
feedSourceType: HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
logType: projects/my-project-name/locations/us/instances/00000000-0000-0000-0000-000000000000/logTypes/GCP_CLOUDAUDIT
httpsPushAmazonKinesisFirehoseSettings:
splitDelimiter: |2+
outputs:
feedSecret: ${exampleFeed.secret}
Create Feed Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Feed(name: string, args: FeedArgs, opts?: CustomResourceOptions);@overload
def Feed(resource_name: str,
args: FeedArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Feed(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance: Optional[str] = None,
location: Optional[str] = None,
details: Optional[FeedDetailsArgs] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
failure_details: Optional[FeedFailureDetailsArgs] = None,
feed: Optional[str] = None,
project: Optional[str] = None)func NewFeed(ctx *Context, name string, args FeedArgs, opts ...ResourceOption) (*Feed, error)public Feed(string name, FeedArgs args, CustomResourceOptions? opts = null)type: gcp:chronicle:Feed
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FeedArgs
- 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 FeedArgs
- 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 FeedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FeedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FeedArgs
- 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 feedResource = new Gcp.Chronicle.Feed("feedResource", new()
{
Instance = "string",
Location = "string",
Details = new Gcp.Chronicle.Inputs.FeedDetailsArgs
{
LogType = "string",
AmazonKinesisFirehoseSettings = null,
AmazonS3Settings = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3SettingsArgs
{
S3Uri = "string",
SourceDeletionOption = "string",
SourceType = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3SettingsAuthenticationArgs
{
Region = "string",
AccessKeyId = "string",
ClientId = "string",
ClientSecret = "string",
RefreshUri = "string",
SecretAccessKey = "string",
},
},
AmazonS3V2Settings = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3V2SettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3V2SettingsAuthenticationArgs
{
AccessKeySecretAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3V2SettingsAuthenticationAccessKeySecretAuthArgs
{
AccessKeyId = "string",
SecretAccessKey = "string",
},
AwsIamRoleAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonS3V2SettingsAuthenticationAwsIamRoleAuthArgs
{
AwsIamRoleArn = "string",
SubjectId = "string",
},
},
S3Uri = "string",
ChronicleServiceAccount = "string",
MaxLookbackDays = 0,
SourceDeletionOption = "string",
},
AmazonSqsSettings = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsSettingsArgs
{
AccountNumber = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsSettingsAuthenticationArgs
{
AdditionalS3AccessKeySecretAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsSettingsAuthenticationAdditionalS3AccessKeySecretAuthArgs
{
AccessKeyId = "string",
SecretAccessKey = "string",
},
SqsAccessKeySecretAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsSettingsAuthenticationSqsAccessKeySecretAuthArgs
{
AccessKeyId = "string",
SecretAccessKey = "string",
},
},
Queue = "string",
Region = "string",
SourceDeletionOption = "string",
},
AmazonSqsV2Settings = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsV2SettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsV2SettingsAuthenticationArgs
{
AwsIamRoleAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsV2SettingsAuthenticationAwsIamRoleAuthArgs
{
AwsIamRoleArn = "string",
SubjectId = "string",
},
SqsV2AccessKeySecretAuth = new Gcp.Chronicle.Inputs.FeedDetailsAmazonSqsV2SettingsAuthenticationSqsV2AccessKeySecretAuthArgs
{
AccessKeyId = "string",
SecretAccessKey = "string",
},
},
Queue = "string",
S3Uri = "string",
ChronicleServiceAccount = "string",
MaxLookbackDays = 0,
SourceDeletionOption = "string",
},
AnomaliSettings = new Gcp.Chronicle.Inputs.FeedDetailsAnomaliSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAnomaliSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
AssetNamespace = "string",
AwsEc2HostsSettings = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2HostsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2HostsSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
AwsEc2InstancesSettings = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2InstancesSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2InstancesSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
AwsEc2VpcsSettings = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2VpcsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAwsEc2VpcsSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
AwsIamSettings = new Gcp.Chronicle.Inputs.FeedDetailsAwsIamSettingsArgs
{
ApiType = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAwsIamSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
AzureAdAuditSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdAuditSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdAuditSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
TenantId = "string",
},
AzureAdContextSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdContextSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdContextSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
RetrieveDevices = false,
RetrieveGroups = false,
TenantId = "string",
},
AzureAdSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureAdSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
TenantId = "string",
},
AzureBlobStoreSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureBlobStoreSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureBlobStoreSettingsAuthenticationArgs
{
SasToken = "string",
SharedKey = "string",
},
AzureUri = "string",
SourceDeletionOption = "string",
SourceType = "string",
},
AzureBlobStoreV2Settings = new Gcp.Chronicle.Inputs.FeedDetailsAzureBlobStoreV2SettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureBlobStoreV2SettingsAuthenticationArgs
{
AccessKey = "string",
AzureV2WorkloadIdentityFederation = new Gcp.Chronicle.Inputs.FeedDetailsAzureBlobStoreV2SettingsAuthenticationAzureV2WorkloadIdentityFederationArgs
{
ClientId = "string",
SubjectId = "string",
TenantId = "string",
},
SasToken = "string",
},
AzureUri = "string",
ChronicleServiceAccount = "string",
MaxLookbackDays = 0,
SourceDeletionOption = "string",
},
AzureEventHubSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureEventHubSettingsArgs
{
ConsumerGroup = "string",
EventHubConnectionString = "string",
Name = "string",
AzureSasToken = "string",
AzureStorageConnectionString = "string",
AzureStorageContainer = "string",
EventHubNamespace = "string",
},
AzureMdmIntuneSettings = new Gcp.Chronicle.Inputs.FeedDetailsAzureMdmIntuneSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsAzureMdmIntuneSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
TenantId = "string",
},
CloudPassageSettings = new Gcp.Chronicle.Inputs.FeedDetailsCloudPassageSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsCloudPassageSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
EventTypes = new[]
{
"string",
},
},
CortexXdrSettings = new Gcp.Chronicle.Inputs.FeedDetailsCortexXdrSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsCortexXdrSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Endpoint = "string",
Hostname = "string",
},
CrowdstrikeAlertsSettings = new Gcp.Chronicle.Inputs.FeedDetailsCrowdstrikeAlertsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsCrowdstrikeAlertsSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
TokenEndpoint = "string",
},
Hostname = "string",
IngestionType = "string",
},
CrowdstrikeDetectsSettings = new Gcp.Chronicle.Inputs.FeedDetailsCrowdstrikeDetectsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsCrowdstrikeDetectsSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
TokenEndpoint = "string",
},
Hostname = "string",
IngestionType = "string",
},
DummyLogTypeSettings = new Gcp.Chronicle.Inputs.FeedDetailsDummyLogTypeSettingsArgs
{
ApiEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsDummyLogTypeSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
},
DuoAuthSettings = new Gcp.Chronicle.Inputs.FeedDetailsDuoAuthSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsDuoAuthSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Hostname = "string",
},
DuoUserContextSettings = new Gcp.Chronicle.Inputs.FeedDetailsDuoUserContextSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsDuoUserContextSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Hostname = "string",
},
FeedSourceType = "string",
FoxItStixSettings = new Gcp.Chronicle.Inputs.FeedDetailsFoxItStixSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsFoxItStixSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Collection = "string",
PollServiceUri = "string",
Ssl = new Gcp.Chronicle.Inputs.FeedDetailsFoxItStixSettingsSslArgs
{
EncodedPrivateKey = "string",
SslCertificate = "string",
},
},
GcsSettings = new Gcp.Chronicle.Inputs.FeedDetailsGcsSettingsArgs
{
BucketUri = "string",
ChronicleServiceAccount = "string",
SourceDeletionOption = "string",
SourceType = "string",
},
GcsV2Settings = new Gcp.Chronicle.Inputs.FeedDetailsGcsV2SettingsArgs
{
BucketUri = "string",
ChronicleServiceAccount = "string",
MaxLookbackDays = 0,
SourceDeletionOption = "string",
},
GoogleCloudIdentityDeviceUsersSettings = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
},
GoogleCloudIdentityDevicesSettings = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDevicesSettingsArgs
{
ApiVersion = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
},
GoogleCloudStorageEventDrivenSettings = new Gcp.Chronicle.Inputs.FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs
{
BucketUri = "string",
PubsubSubscription = "string",
ChronicleServiceAccount = "string",
MaxLookbackDays = 0,
SourceDeletionOption = "string",
},
HttpSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpSettingsArgs
{
SourceDeletionOption = "string",
SourceType = "string",
Uri = "string",
},
HttpsPushAmazonKinesisFirehoseSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs
{
SplitDelimiter = "string",
},
HttpsPushGoogleCloudPubsubSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs
{
SplitDelimiter = "string",
},
HttpsPushWebhookSettings = new Gcp.Chronicle.Inputs.FeedDetailsHttpsPushWebhookSettingsArgs
{
SplitDelimiter = "string",
},
ImpervaWafSettings = new Gcp.Chronicle.Inputs.FeedDetailsImpervaWafSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsImpervaWafSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
},
Labels =
{
{ "string", "string" },
},
MandiantIocSettings = new Gcp.Chronicle.Inputs.FeedDetailsMandiantIocSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsMandiantIocSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
StartTime = "string",
},
MicrosoftGraphAlertSettings = new Gcp.Chronicle.Inputs.FeedDetailsMicrosoftGraphAlertSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsMicrosoftGraphAlertSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
TenantId = "string",
},
MicrosoftSecurityCenterAlertSettings = new Gcp.Chronicle.Inputs.FeedDetailsMicrosoftSecurityCenterAlertSettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsMicrosoftSecurityCenterAlertSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
Hostname = "string",
SubscriptionId = "string",
TenantId = "string",
},
MimecastMailSettings = new Gcp.Chronicle.Inputs.FeedDetailsMimecastMailSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsMimecastMailSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Hostname = "string",
},
MimecastMailV2Settings = new Gcp.Chronicle.Inputs.FeedDetailsMimecastMailV2SettingsArgs
{
AuthCredentials = new Gcp.Chronicle.Inputs.FeedDetailsMimecastMailV2SettingsAuthCredentialsArgs
{
ClientId = "string",
ClientSecret = "string",
},
},
NetskopeAlertSettings = new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
ContentType = "string",
Feedname = "string",
Hostname = "string",
},
NetskopeAlertV2Settings = new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertV2SettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertV2SettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
ContentCategory = "string",
ContentTypes = new[]
{
"string",
},
Hostname = "string",
},
Office365Settings = new Gcp.Chronicle.Inputs.FeedDetailsOffice365SettingsArgs
{
AuthEndpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsOffice365SettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
},
ContentType = "string",
Hostname = "string",
TenantId = "string",
},
OktaSettings = new Gcp.Chronicle.Inputs.FeedDetailsOktaSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsOktaSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsOktaSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Hostname = "string",
},
OktaUserContextSettings = new Gcp.Chronicle.Inputs.FeedDetailsOktaUserContextSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsOktaUserContextSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Hostname = "string",
ManagerIdReferenceField = "string",
},
PanIocSettings = new Gcp.Chronicle.Inputs.FeedDetailsPanIocSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsPanIocSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsPanIocSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Feed = "string",
FeedId = "string",
},
PanPrismaCloudSettings = new Gcp.Chronicle.Inputs.FeedDetailsPanPrismaCloudSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsPanPrismaCloudSettingsAuthenticationArgs
{
Password = "string",
User = "string",
},
Hostname = "string",
},
ProofpointMailSettings = new Gcp.Chronicle.Inputs.FeedDetailsProofpointMailSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsProofpointMailSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
},
ProofpointOnDemandSettings = new Gcp.Chronicle.Inputs.FeedDetailsProofpointOnDemandSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsProofpointOnDemandSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
ClusterId = "string",
},
PubsubSettings = new Gcp.Chronicle.Inputs.FeedDetailsPubsubSettingsArgs
{
GoogleServiceAccountEmail = "string",
},
QualysScanSettings = new Gcp.Chronicle.Inputs.FeedDetailsQualysScanSettingsArgs
{
ApiType = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsQualysScanSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Hostname = "string",
},
QualysVmSettings = new Gcp.Chronicle.Inputs.FeedDetailsQualysVmSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsQualysVmSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Hostname = "string",
},
Rapid7InsightSettings = new Gcp.Chronicle.Inputs.FeedDetailsRapid7InsightSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsRapid7InsightSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Endpoint = "string",
Hostname = "string",
},
RecordedFutureIocSettings = new Gcp.Chronicle.Inputs.FeedDetailsRecordedFutureIocSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsRecordedFutureIocSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
},
RhIsacIocSettings = new Gcp.Chronicle.Inputs.FeedDetailsRhIsacIocSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsRhIsacIocSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
TokenEndpoint = "string",
},
},
SalesforceSettings = new Gcp.Chronicle.Inputs.FeedDetailsSalesforceSettingsArgs
{
Hostname = "string",
OauthJwtCredentials = new Gcp.Chronicle.Inputs.FeedDetailsSalesforceSettingsOauthJwtCredentialsArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsSalesforceSettingsOauthJwtCredentialsClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsSalesforceSettingsOauthJwtCredentialsRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
OauthPasswordGrantAuth = new Gcp.Chronicle.Inputs.FeedDetailsSalesforceSettingsOauthPasswordGrantAuthArgs
{
ClientId = "string",
ClientSecret = "string",
Password = "string",
TokenEndpoint = "string",
User = "string",
},
},
SentineloneAlertSettings = new Gcp.Chronicle.Inputs.FeedDetailsSentineloneAlertSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsSentineloneAlertSettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Hostname = "string",
InitialStartTime = "string",
IsAlertApiSubscribed = false,
},
ServiceNowCmdbSettings = new Gcp.Chronicle.Inputs.FeedDetailsServiceNowCmdbSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsServiceNowCmdbSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Feedname = "string",
Hostname = "string",
},
SftpSettings = new Gcp.Chronicle.Inputs.FeedDetailsSftpSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsSftpSettingsAuthenticationArgs
{
Password = "string",
PrivateKey = "string",
PrivateKeyPassphrase = "string",
Username = "string",
},
SourceDeletionOption = "string",
SourceType = "string",
Uri = "string",
},
StsMigrationReadiness = "string",
SymantecEventExportSettings = new Gcp.Chronicle.Inputs.FeedDetailsSymantecEventExportSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsSymantecEventExportSettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
RefreshToken = "string",
TokenEndpoint = "string",
},
},
ThinkstCanarySettings = new Gcp.Chronicle.Inputs.FeedDetailsThinkstCanarySettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsThinkstCanarySettingsAuthenticationArgs
{
HeaderKeyValues = new[]
{
new Gcp.Chronicle.Inputs.FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValueArgs
{
Key = "string",
Value = "string",
},
},
},
Hostname = "string",
},
ThreatConnectIocSettings = new Gcp.Chronicle.Inputs.FeedDetailsThreatConnectIocSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsThreatConnectIocSettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Hostname = "string",
Owners = new[]
{
"string",
},
},
ThreatConnectIocV3Settings = new Gcp.Chronicle.Inputs.FeedDetailsThreatConnectIocV3SettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsThreatConnectIocV3SettingsAuthenticationArgs
{
Secret = "string",
User = "string",
},
Fields = new[]
{
"string",
},
Hostname = "string",
Owners = new[]
{
"string",
},
Schedule = 0,
TqlQuery = "string",
},
TrellixHxAlertsSettings = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxAlertsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxAlertsSettingsAuthenticationArgs
{
Msso = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxAlertsSettingsAuthenticationMssoArgs
{
ApiEndpoint = "string",
Password = "string",
Username = "string",
},
TrellixIam = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxAlertsSettingsAuthenticationTrellixIamArgs
{
ClientId = "string",
ClientSecret = "string",
Scope = "string",
},
},
Endpoint = "string",
},
TrellixHxBulkAcqsSettings = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxBulkAcqsSettingsArgs
{
Endpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationArgs
{
Msso = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationMssoArgs
{
ApiEndpoint = "string",
Password = "string",
Username = "string",
},
TrellixIam = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationTrellixIamArgs
{
ClientId = "string",
ClientSecret = "string",
Scope = "string",
},
},
},
TrellixHxHostsSettings = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxHostsSettingsArgs
{
Endpoint = "string",
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxHostsSettingsAuthenticationArgs
{
Msso = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxHostsSettingsAuthenticationMssoArgs
{
ApiEndpoint = "string",
Password = "string",
Username = "string",
},
TrellixIam = new Gcp.Chronicle.Inputs.FeedDetailsTrellixHxHostsSettingsAuthenticationTrellixIamArgs
{
ClientId = "string",
ClientSecret = "string",
Scope = "string",
},
},
},
WebhookSettings = null,
WorkdaySettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkdaySettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkdaySettingsAuthenticationArgs
{
ClientId = "string",
ClientSecret = "string",
RefreshToken = "string",
Secret = "string",
TokenEndpoint = "string",
User = "string",
},
Hostname = "string",
TenantId = "string",
},
WorkspaceActivitySettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceActivitySettingsArgs
{
Applications = new[]
{
"string",
},
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceActivitySettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceActivitySettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceActivitySettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspaceAlertsSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceAlertsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceAlertsSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceAlertsSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceAlertsSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspaceChromeOsSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceChromeOsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceChromeOsSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceChromeOsSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceChromeOsSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspaceGroupsSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceGroupsSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceGroupsSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceGroupsSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceGroupsSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspaceMobileSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceMobileSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceMobileSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceMobileSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceMobileSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspacePrivilegesSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspacePrivilegesSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspacePrivilegesSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspacePrivilegesSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspacePrivilegesSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
WorkspaceCustomerId = "string",
},
WorkspaceUsersSettings = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceUsersSettingsArgs
{
Authentication = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceUsersSettingsAuthenticationArgs
{
Claims = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceUsersSettingsAuthenticationClaimsArgs
{
Audience = "string",
Issuer = "string",
Subject = "string",
},
RsCredentials = new Gcp.Chronicle.Inputs.FeedDetailsWorkspaceUsersSettingsAuthenticationRsCredentialsArgs
{
PrivateKey = "string",
},
TokenEndpoint = "string",
},
ProjectionType = "string",
WorkspaceCustomerId = "string",
},
},
DisplayName = "string",
Enabled = false,
FailureDetails = new Gcp.Chronicle.Inputs.FeedFailureDetailsArgs
{
ErrorAction = "string",
ErrorCause = "string",
ErrorCode = "string",
HttpErrorCode = 0,
},
FeedId = "string",
Project = "string",
});
example, err := chronicle.NewFeed(ctx, "feedResource", &chronicle.FeedArgs{
Instance: pulumi.String("string"),
Location: pulumi.String("string"),
Details: &chronicle.FeedDetailsArgs{
LogType: pulumi.String("string"),
AmazonKinesisFirehoseSettings: &chronicle.FeedDetailsAmazonKinesisFirehoseSettingsArgs{},
AmazonS3Settings: &chronicle.FeedDetailsAmazonS3SettingsArgs{
S3Uri: pulumi.String("string"),
SourceDeletionOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAmazonS3SettingsAuthenticationArgs{
Region: pulumi.String("string"),
AccessKeyId: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshUri: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
},
AmazonS3V2Settings: &chronicle.FeedDetailsAmazonS3V2SettingsArgs{
Authentication: &chronicle.FeedDetailsAmazonS3V2SettingsAuthenticationArgs{
AccessKeySecretAuth: &chronicle.FeedDetailsAmazonS3V2SettingsAuthenticationAccessKeySecretAuthArgs{
AccessKeyId: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
AwsIamRoleAuth: &chronicle.FeedDetailsAmazonS3V2SettingsAuthenticationAwsIamRoleAuthArgs{
AwsIamRoleArn: pulumi.String("string"),
SubjectId: pulumi.String("string"),
},
},
S3Uri: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
MaxLookbackDays: pulumi.Int(0),
SourceDeletionOption: pulumi.String("string"),
},
AmazonSqsSettings: &chronicle.FeedDetailsAmazonSqsSettingsArgs{
AccountNumber: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAmazonSqsSettingsAuthenticationArgs{
AdditionalS3AccessKeySecretAuth: &chronicle.FeedDetailsAmazonSqsSettingsAuthenticationAdditionalS3AccessKeySecretAuthArgs{
AccessKeyId: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
SqsAccessKeySecretAuth: &chronicle.FeedDetailsAmazonSqsSettingsAuthenticationSqsAccessKeySecretAuthArgs{
AccessKeyId: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
},
Queue: pulumi.String("string"),
Region: pulumi.String("string"),
SourceDeletionOption: pulumi.String("string"),
},
AmazonSqsV2Settings: &chronicle.FeedDetailsAmazonSqsV2SettingsArgs{
Authentication: &chronicle.FeedDetailsAmazonSqsV2SettingsAuthenticationArgs{
AwsIamRoleAuth: &chronicle.FeedDetailsAmazonSqsV2SettingsAuthenticationAwsIamRoleAuthArgs{
AwsIamRoleArn: pulumi.String("string"),
SubjectId: pulumi.String("string"),
},
SqsV2AccessKeySecretAuth: &chronicle.FeedDetailsAmazonSqsV2SettingsAuthenticationSqsV2AccessKeySecretAuthArgs{
AccessKeyId: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
},
Queue: pulumi.String("string"),
S3Uri: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
MaxLookbackDays: pulumi.Int(0),
SourceDeletionOption: pulumi.String("string"),
},
AnomaliSettings: &chronicle.FeedDetailsAnomaliSettingsArgs{
Authentication: &chronicle.FeedDetailsAnomaliSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
AssetNamespace: pulumi.String("string"),
AwsEc2HostsSettings: &chronicle.FeedDetailsAwsEc2HostsSettingsArgs{
Authentication: &chronicle.FeedDetailsAwsEc2HostsSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
AwsEc2InstancesSettings: &chronicle.FeedDetailsAwsEc2InstancesSettingsArgs{
Authentication: &chronicle.FeedDetailsAwsEc2InstancesSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
AwsEc2VpcsSettings: &chronicle.FeedDetailsAwsEc2VpcsSettingsArgs{
Authentication: &chronicle.FeedDetailsAwsEc2VpcsSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
AwsIamSettings: &chronicle.FeedDetailsAwsIamSettingsArgs{
ApiType: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAwsIamSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
AzureAdAuditSettings: &chronicle.FeedDetailsAzureAdAuditSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAzureAdAuditSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
AzureAdContextSettings: &chronicle.FeedDetailsAzureAdContextSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAzureAdContextSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
RetrieveDevices: pulumi.Bool(false),
RetrieveGroups: pulumi.Bool(false),
TenantId: pulumi.String("string"),
},
AzureAdSettings: &chronicle.FeedDetailsAzureAdSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAzureAdSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
AzureBlobStoreSettings: &chronicle.FeedDetailsAzureBlobStoreSettingsArgs{
Authentication: &chronicle.FeedDetailsAzureBlobStoreSettingsAuthenticationArgs{
SasToken: pulumi.String("string"),
SharedKey: pulumi.String("string"),
},
AzureUri: pulumi.String("string"),
SourceDeletionOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
},
AzureBlobStoreV2Settings: &chronicle.FeedDetailsAzureBlobStoreV2SettingsArgs{
Authentication: &chronicle.FeedDetailsAzureBlobStoreV2SettingsAuthenticationArgs{
AccessKey: pulumi.String("string"),
AzureV2WorkloadIdentityFederation: &chronicle.FeedDetailsAzureBlobStoreV2SettingsAuthenticationAzureV2WorkloadIdentityFederationArgs{
ClientId: pulumi.String("string"),
SubjectId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
SasToken: pulumi.String("string"),
},
AzureUri: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
MaxLookbackDays: pulumi.Int(0),
SourceDeletionOption: pulumi.String("string"),
},
AzureEventHubSettings: &chronicle.FeedDetailsAzureEventHubSettingsArgs{
ConsumerGroup: pulumi.String("string"),
EventHubConnectionString: pulumi.String("string"),
Name: pulumi.String("string"),
AzureSasToken: pulumi.String("string"),
AzureStorageConnectionString: pulumi.String("string"),
AzureStorageContainer: pulumi.String("string"),
EventHubNamespace: pulumi.String("string"),
},
AzureMdmIntuneSettings: &chronicle.FeedDetailsAzureMdmIntuneSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsAzureMdmIntuneSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
CloudPassageSettings: &chronicle.FeedDetailsCloudPassageSettingsArgs{
Authentication: &chronicle.FeedDetailsCloudPassageSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
EventTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
CortexXdrSettings: &chronicle.FeedDetailsCortexXdrSettingsArgs{
Authentication: &chronicle.FeedDetailsCortexXdrSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Endpoint: pulumi.String("string"),
Hostname: pulumi.String("string"),
},
CrowdstrikeAlertsSettings: &chronicle.FeedDetailsCrowdstrikeAlertsSettingsArgs{
Authentication: &chronicle.FeedDetailsCrowdstrikeAlertsSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
IngestionType: pulumi.String("string"),
},
CrowdstrikeDetectsSettings: &chronicle.FeedDetailsCrowdstrikeDetectsSettingsArgs{
Authentication: &chronicle.FeedDetailsCrowdstrikeDetectsSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
IngestionType: pulumi.String("string"),
},
DummyLogTypeSettings: &chronicle.FeedDetailsDummyLogTypeSettingsArgs{
ApiEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsDummyLogTypeSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
DuoAuthSettings: &chronicle.FeedDetailsDuoAuthSettingsArgs{
Authentication: &chronicle.FeedDetailsDuoAuthSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
DuoUserContextSettings: &chronicle.FeedDetailsDuoUserContextSettingsArgs{
Authentication: &chronicle.FeedDetailsDuoUserContextSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
FeedSourceType: pulumi.String("string"),
FoxItStixSettings: &chronicle.FeedDetailsFoxItStixSettingsArgs{
Authentication: &chronicle.FeedDetailsFoxItStixSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Collection: pulumi.String("string"),
PollServiceUri: pulumi.String("string"),
Ssl: &chronicle.FeedDetailsFoxItStixSettingsSslArgs{
EncodedPrivateKey: pulumi.String("string"),
SslCertificate: pulumi.String("string"),
},
},
GcsSettings: &chronicle.FeedDetailsGcsSettingsArgs{
BucketUri: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
SourceDeletionOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
},
GcsV2Settings: &chronicle.FeedDetailsGcsV2SettingsArgs{
BucketUri: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
MaxLookbackDays: pulumi.Int(0),
SourceDeletionOption: pulumi.String("string"),
},
GoogleCloudIdentityDeviceUsersSettings: &chronicle.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsArgs{
Authentication: &chronicle.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
},
GoogleCloudIdentityDevicesSettings: &chronicle.FeedDetailsGoogleCloudIdentityDevicesSettingsArgs{
ApiVersion: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
},
GoogleCloudStorageEventDrivenSettings: &chronicle.FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs{
BucketUri: pulumi.String("string"),
PubsubSubscription: pulumi.String("string"),
ChronicleServiceAccount: pulumi.String("string"),
MaxLookbackDays: pulumi.Int(0),
SourceDeletionOption: pulumi.String("string"),
},
HttpSettings: &chronicle.FeedDetailsHttpSettingsArgs{
SourceDeletionOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
Uri: pulumi.String("string"),
},
HttpsPushAmazonKinesisFirehoseSettings: &chronicle.FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs{
SplitDelimiter: pulumi.String("string"),
},
HttpsPushGoogleCloudPubsubSettings: &chronicle.FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs{
SplitDelimiter: pulumi.String("string"),
},
HttpsPushWebhookSettings: &chronicle.FeedDetailsHttpsPushWebhookSettingsArgs{
SplitDelimiter: pulumi.String("string"),
},
ImpervaWafSettings: &chronicle.FeedDetailsImpervaWafSettingsArgs{
Authentication: &chronicle.FeedDetailsImpervaWafSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
MandiantIocSettings: &chronicle.FeedDetailsMandiantIocSettingsArgs{
Authentication: &chronicle.FeedDetailsMandiantIocSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
StartTime: pulumi.String("string"),
},
MicrosoftGraphAlertSettings: &chronicle.FeedDetailsMicrosoftGraphAlertSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsMicrosoftGraphAlertSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
MicrosoftSecurityCenterAlertSettings: &chronicle.FeedDetailsMicrosoftSecurityCenterAlertSettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsMicrosoftSecurityCenterAlertSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
MimecastMailSettings: &chronicle.FeedDetailsMimecastMailSettingsArgs{
Authentication: &chronicle.FeedDetailsMimecastMailSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Hostname: pulumi.String("string"),
},
MimecastMailV2Settings: &chronicle.FeedDetailsMimecastMailV2SettingsArgs{
AuthCredentials: &chronicle.FeedDetailsMimecastMailV2SettingsAuthCredentialsArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
},
NetskopeAlertSettings: &chronicle.FeedDetailsNetskopeAlertSettingsArgs{
Authentication: &chronicle.FeedDetailsNetskopeAlertSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
ContentType: pulumi.String("string"),
Feedname: pulumi.String("string"),
Hostname: pulumi.String("string"),
},
NetskopeAlertV2Settings: &chronicle.FeedDetailsNetskopeAlertV2SettingsArgs{
Authentication: &chronicle.FeedDetailsNetskopeAlertV2SettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
ContentCategory: pulumi.String("string"),
ContentTypes: pulumi.StringArray{
pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
Office365Settings: &chronicle.FeedDetailsOffice365SettingsArgs{
AuthEndpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsOffice365SettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
ContentType: pulumi.String("string"),
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
OktaSettings: &chronicle.FeedDetailsOktaSettingsArgs{
Authentication: &chronicle.FeedDetailsOktaSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsOktaSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsOktaSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Hostname: pulumi.String("string"),
},
OktaUserContextSettings: &chronicle.FeedDetailsOktaUserContextSettingsArgs{
Authentication: &chronicle.FeedDetailsOktaUserContextSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Hostname: pulumi.String("string"),
ManagerIdReferenceField: pulumi.String("string"),
},
PanIocSettings: &chronicle.FeedDetailsPanIocSettingsArgs{
Authentication: &chronicle.FeedDetailsPanIocSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsPanIocSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsPanIocSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Feed: pulumi.String("string"),
FeedId: pulumi.String("string"),
},
PanPrismaCloudSettings: &chronicle.FeedDetailsPanPrismaCloudSettingsArgs{
Authentication: &chronicle.FeedDetailsPanPrismaCloudSettingsAuthenticationArgs{
Password: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
ProofpointMailSettings: &chronicle.FeedDetailsProofpointMailSettingsArgs{
Authentication: &chronicle.FeedDetailsProofpointMailSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
},
ProofpointOnDemandSettings: &chronicle.FeedDetailsProofpointOnDemandSettingsArgs{
Authentication: &chronicle.FeedDetailsProofpointOnDemandSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
ClusterId: pulumi.String("string"),
},
PubsubSettings: &chronicle.FeedDetailsPubsubSettingsArgs{
GoogleServiceAccountEmail: pulumi.String("string"),
},
QualysScanSettings: &chronicle.FeedDetailsQualysScanSettingsArgs{
ApiType: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsQualysScanSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
QualysVmSettings: &chronicle.FeedDetailsQualysVmSettingsArgs{
Authentication: &chronicle.FeedDetailsQualysVmSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
},
Rapid7InsightSettings: &chronicle.FeedDetailsRapid7InsightSettingsArgs{
Authentication: &chronicle.FeedDetailsRapid7InsightSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Endpoint: pulumi.String("string"),
Hostname: pulumi.String("string"),
},
RecordedFutureIocSettings: &chronicle.FeedDetailsRecordedFutureIocSettingsArgs{
Authentication: &chronicle.FeedDetailsRecordedFutureIocSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
RhIsacIocSettings: &chronicle.FeedDetailsRhIsacIocSettingsArgs{
Authentication: &chronicle.FeedDetailsRhIsacIocSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
},
},
SalesforceSettings: &chronicle.FeedDetailsSalesforceSettingsArgs{
Hostname: pulumi.String("string"),
OauthJwtCredentials: &chronicle.FeedDetailsSalesforceSettingsOauthJwtCredentialsArgs{
Claims: &chronicle.FeedDetailsSalesforceSettingsOauthJwtCredentialsClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsSalesforceSettingsOauthJwtCredentialsRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
OauthPasswordGrantAuth: &chronicle.FeedDetailsSalesforceSettingsOauthPasswordGrantAuthArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Password: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
User: pulumi.String("string"),
},
},
SentineloneAlertSettings: &chronicle.FeedDetailsSentineloneAlertSettingsArgs{
Authentication: &chronicle.FeedDetailsSentineloneAlertSettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Hostname: pulumi.String("string"),
InitialStartTime: pulumi.String("string"),
IsAlertApiSubscribed: pulumi.Bool(false),
},
ServiceNowCmdbSettings: &chronicle.FeedDetailsServiceNowCmdbSettingsArgs{
Authentication: &chronicle.FeedDetailsServiceNowCmdbSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Feedname: pulumi.String("string"),
Hostname: pulumi.String("string"),
},
SftpSettings: &chronicle.FeedDetailsSftpSettingsArgs{
Authentication: &chronicle.FeedDetailsSftpSettingsAuthenticationArgs{
Password: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyPassphrase: pulumi.String("string"),
Username: pulumi.String("string"),
},
SourceDeletionOption: pulumi.String("string"),
SourceType: pulumi.String("string"),
Uri: pulumi.String("string"),
},
StsMigrationReadiness: pulumi.String("string"),
SymantecEventExportSettings: &chronicle.FeedDetailsSymantecEventExportSettingsArgs{
Authentication: &chronicle.FeedDetailsSymantecEventExportSettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
},
},
ThinkstCanarySettings: &chronicle.FeedDetailsThinkstCanarySettingsArgs{
Authentication: &chronicle.FeedDetailsThinkstCanarySettingsAuthenticationArgs{
HeaderKeyValues: chronicle.FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValueArray{
&chronicle.FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValueArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Hostname: pulumi.String("string"),
},
ThreatConnectIocSettings: &chronicle.FeedDetailsThreatConnectIocSettingsArgs{
Authentication: &chronicle.FeedDetailsThreatConnectIocSettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
},
ThreatConnectIocV3Settings: &chronicle.FeedDetailsThreatConnectIocV3SettingsArgs{
Authentication: &chronicle.FeedDetailsThreatConnectIocV3SettingsAuthenticationArgs{
Secret: pulumi.String("string"),
User: pulumi.String("string"),
},
Fields: pulumi.StringArray{
pulumi.String("string"),
},
Hostname: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Schedule: pulumi.Int(0),
TqlQuery: pulumi.String("string"),
},
TrellixHxAlertsSettings: &chronicle.FeedDetailsTrellixHxAlertsSettingsArgs{
Authentication: &chronicle.FeedDetailsTrellixHxAlertsSettingsAuthenticationArgs{
Msso: &chronicle.FeedDetailsTrellixHxAlertsSettingsAuthenticationMssoArgs{
ApiEndpoint: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
TrellixIam: &chronicle.FeedDetailsTrellixHxAlertsSettingsAuthenticationTrellixIamArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Scope: pulumi.String("string"),
},
},
Endpoint: pulumi.String("string"),
},
TrellixHxBulkAcqsSettings: &chronicle.FeedDetailsTrellixHxBulkAcqsSettingsArgs{
Endpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationArgs{
Msso: &chronicle.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationMssoArgs{
ApiEndpoint: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
TrellixIam: &chronicle.FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationTrellixIamArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Scope: pulumi.String("string"),
},
},
},
TrellixHxHostsSettings: &chronicle.FeedDetailsTrellixHxHostsSettingsArgs{
Endpoint: pulumi.String("string"),
Authentication: &chronicle.FeedDetailsTrellixHxHostsSettingsAuthenticationArgs{
Msso: &chronicle.FeedDetailsTrellixHxHostsSettingsAuthenticationMssoArgs{
ApiEndpoint: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
TrellixIam: &chronicle.FeedDetailsTrellixHxHostsSettingsAuthenticationTrellixIamArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Scope: pulumi.String("string"),
},
},
},
WebhookSettings: &chronicle.FeedDetailsWebhookSettingsArgs{},
WorkdaySettings: &chronicle.FeedDetailsWorkdaySettingsArgs{
Authentication: &chronicle.FeedDetailsWorkdaySettingsAuthenticationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
Secret: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
User: pulumi.String("string"),
},
Hostname: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
WorkspaceActivitySettings: &chronicle.FeedDetailsWorkspaceActivitySettingsArgs{
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Authentication: &chronicle.FeedDetailsWorkspaceActivitySettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceActivitySettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceActivitySettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspaceAlertsSettings: &chronicle.FeedDetailsWorkspaceAlertsSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspaceAlertsSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceAlertsSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceAlertsSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspaceChromeOsSettings: &chronicle.FeedDetailsWorkspaceChromeOsSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspaceChromeOsSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceChromeOsSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceChromeOsSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspaceGroupsSettings: &chronicle.FeedDetailsWorkspaceGroupsSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspaceGroupsSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceGroupsSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceGroupsSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspaceMobileSettings: &chronicle.FeedDetailsWorkspaceMobileSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspaceMobileSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceMobileSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceMobileSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspacePrivilegesSettings: &chronicle.FeedDetailsWorkspacePrivilegesSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspacePrivilegesSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspacePrivilegesSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspacePrivilegesSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
WorkspaceCustomerId: pulumi.String("string"),
},
WorkspaceUsersSettings: &chronicle.FeedDetailsWorkspaceUsersSettingsArgs{
Authentication: &chronicle.FeedDetailsWorkspaceUsersSettingsAuthenticationArgs{
Claims: &chronicle.FeedDetailsWorkspaceUsersSettingsAuthenticationClaimsArgs{
Audience: pulumi.String("string"),
Issuer: pulumi.String("string"),
Subject: pulumi.String("string"),
},
RsCredentials: &chronicle.FeedDetailsWorkspaceUsersSettingsAuthenticationRsCredentialsArgs{
PrivateKey: pulumi.String("string"),
},
TokenEndpoint: pulumi.String("string"),
},
ProjectionType: pulumi.String("string"),
WorkspaceCustomerId: pulumi.String("string"),
},
},
DisplayName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
FailureDetails: &chronicle.FeedFailureDetailsArgs{
ErrorAction: pulumi.String("string"),
ErrorCause: pulumi.String("string"),
ErrorCode: pulumi.String("string"),
HttpErrorCode: pulumi.Int(0),
},
Feed: pulumi.String("string"),
Project: pulumi.String("string"),
})
var feedResource = new Feed("feedResource", FeedArgs.builder()
.instance("string")
.location("string")
.details(FeedDetailsArgs.builder()
.logType("string")
.amazonKinesisFirehoseSettings(FeedDetailsAmazonKinesisFirehoseSettingsArgs.builder()
.build())
.amazonS3Settings(FeedDetailsAmazonS3SettingsArgs.builder()
.s3Uri("string")
.sourceDeletionOption("string")
.sourceType("string")
.authentication(FeedDetailsAmazonS3SettingsAuthenticationArgs.builder()
.region("string")
.accessKeyId("string")
.clientId("string")
.clientSecret("string")
.refreshUri("string")
.secretAccessKey("string")
.build())
.build())
.amazonS3V2Settings(FeedDetailsAmazonS3V2SettingsArgs.builder()
.authentication(FeedDetailsAmazonS3V2SettingsAuthenticationArgs.builder()
.accessKeySecretAuth(FeedDetailsAmazonS3V2SettingsAuthenticationAccessKeySecretAuthArgs.builder()
.accessKeyId("string")
.secretAccessKey("string")
.build())
.awsIamRoleAuth(FeedDetailsAmazonS3V2SettingsAuthenticationAwsIamRoleAuthArgs.builder()
.awsIamRoleArn("string")
.subjectId("string")
.build())
.build())
.s3Uri("string")
.chronicleServiceAccount("string")
.maxLookbackDays(0)
.sourceDeletionOption("string")
.build())
.amazonSqsSettings(FeedDetailsAmazonSqsSettingsArgs.builder()
.accountNumber("string")
.authentication(FeedDetailsAmazonSqsSettingsAuthenticationArgs.builder()
.additionalS3AccessKeySecretAuth(FeedDetailsAmazonSqsSettingsAuthenticationAdditionalS3AccessKeySecretAuthArgs.builder()
.accessKeyId("string")
.secretAccessKey("string")
.build())
.sqsAccessKeySecretAuth(FeedDetailsAmazonSqsSettingsAuthenticationSqsAccessKeySecretAuthArgs.builder()
.accessKeyId("string")
.secretAccessKey("string")
.build())
.build())
.queue("string")
.region("string")
.sourceDeletionOption("string")
.build())
.amazonSqsV2Settings(FeedDetailsAmazonSqsV2SettingsArgs.builder()
.authentication(FeedDetailsAmazonSqsV2SettingsAuthenticationArgs.builder()
.awsIamRoleAuth(FeedDetailsAmazonSqsV2SettingsAuthenticationAwsIamRoleAuthArgs.builder()
.awsIamRoleArn("string")
.subjectId("string")
.build())
.sqsV2AccessKeySecretAuth(FeedDetailsAmazonSqsV2SettingsAuthenticationSqsV2AccessKeySecretAuthArgs.builder()
.accessKeyId("string")
.secretAccessKey("string")
.build())
.build())
.queue("string")
.s3Uri("string")
.chronicleServiceAccount("string")
.maxLookbackDays(0)
.sourceDeletionOption("string")
.build())
.anomaliSettings(FeedDetailsAnomaliSettingsArgs.builder()
.authentication(FeedDetailsAnomaliSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.assetNamespace("string")
.awsEc2HostsSettings(FeedDetailsAwsEc2HostsSettingsArgs.builder()
.authentication(FeedDetailsAwsEc2HostsSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.awsEc2InstancesSettings(FeedDetailsAwsEc2InstancesSettingsArgs.builder()
.authentication(FeedDetailsAwsEc2InstancesSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.awsEc2VpcsSettings(FeedDetailsAwsEc2VpcsSettingsArgs.builder()
.authentication(FeedDetailsAwsEc2VpcsSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.awsIamSettings(FeedDetailsAwsIamSettingsArgs.builder()
.apiType("string")
.authentication(FeedDetailsAwsIamSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.azureAdAuditSettings(FeedDetailsAzureAdAuditSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsAzureAdAuditSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.tenantId("string")
.build())
.azureAdContextSettings(FeedDetailsAzureAdContextSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsAzureAdContextSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.retrieveDevices(false)
.retrieveGroups(false)
.tenantId("string")
.build())
.azureAdSettings(FeedDetailsAzureAdSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsAzureAdSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.tenantId("string")
.build())
.azureBlobStoreSettings(FeedDetailsAzureBlobStoreSettingsArgs.builder()
.authentication(FeedDetailsAzureBlobStoreSettingsAuthenticationArgs.builder()
.sasToken("string")
.sharedKey("string")
.build())
.azureUri("string")
.sourceDeletionOption("string")
.sourceType("string")
.build())
.azureBlobStoreV2Settings(FeedDetailsAzureBlobStoreV2SettingsArgs.builder()
.authentication(FeedDetailsAzureBlobStoreV2SettingsAuthenticationArgs.builder()
.accessKey("string")
.azureV2WorkloadIdentityFederation(FeedDetailsAzureBlobStoreV2SettingsAuthenticationAzureV2WorkloadIdentityFederationArgs.builder()
.clientId("string")
.subjectId("string")
.tenantId("string")
.build())
.sasToken("string")
.build())
.azureUri("string")
.chronicleServiceAccount("string")
.maxLookbackDays(0)
.sourceDeletionOption("string")
.build())
.azureEventHubSettings(FeedDetailsAzureEventHubSettingsArgs.builder()
.consumerGroup("string")
.eventHubConnectionString("string")
.name("string")
.azureSasToken("string")
.azureStorageConnectionString("string")
.azureStorageContainer("string")
.eventHubNamespace("string")
.build())
.azureMdmIntuneSettings(FeedDetailsAzureMdmIntuneSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsAzureMdmIntuneSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.tenantId("string")
.build())
.cloudPassageSettings(FeedDetailsCloudPassageSettingsArgs.builder()
.authentication(FeedDetailsCloudPassageSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.eventTypes("string")
.build())
.cortexXdrSettings(FeedDetailsCortexXdrSettingsArgs.builder()
.authentication(FeedDetailsCortexXdrSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.endpoint("string")
.hostname("string")
.build())
.crowdstrikeAlertsSettings(FeedDetailsCrowdstrikeAlertsSettingsArgs.builder()
.authentication(FeedDetailsCrowdstrikeAlertsSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.tokenEndpoint("string")
.build())
.hostname("string")
.ingestionType("string")
.build())
.crowdstrikeDetectsSettings(FeedDetailsCrowdstrikeDetectsSettingsArgs.builder()
.authentication(FeedDetailsCrowdstrikeDetectsSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.tokenEndpoint("string")
.build())
.hostname("string")
.ingestionType("string")
.build())
.dummyLogTypeSettings(FeedDetailsDummyLogTypeSettingsArgs.builder()
.apiEndpoint("string")
.authentication(FeedDetailsDummyLogTypeSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.build())
.duoAuthSettings(FeedDetailsDuoAuthSettingsArgs.builder()
.authentication(FeedDetailsDuoAuthSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.hostname("string")
.build())
.duoUserContextSettings(FeedDetailsDuoUserContextSettingsArgs.builder()
.authentication(FeedDetailsDuoUserContextSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.hostname("string")
.build())
.feedSourceType("string")
.foxItStixSettings(FeedDetailsFoxItStixSettingsArgs.builder()
.authentication(FeedDetailsFoxItStixSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.collection("string")
.pollServiceUri("string")
.ssl(FeedDetailsFoxItStixSettingsSslArgs.builder()
.encodedPrivateKey("string")
.sslCertificate("string")
.build())
.build())
.gcsSettings(FeedDetailsGcsSettingsArgs.builder()
.bucketUri("string")
.chronicleServiceAccount("string")
.sourceDeletionOption("string")
.sourceType("string")
.build())
.gcsV2Settings(FeedDetailsGcsV2SettingsArgs.builder()
.bucketUri("string")
.chronicleServiceAccount("string")
.maxLookbackDays(0)
.sourceDeletionOption("string")
.build())
.googleCloudIdentityDeviceUsersSettings(FeedDetailsGoogleCloudIdentityDeviceUsersSettingsArgs.builder()
.authentication(FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationArgs.builder()
.claims(FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.build())
.googleCloudIdentityDevicesSettings(FeedDetailsGoogleCloudIdentityDevicesSettingsArgs.builder()
.apiVersion("string")
.authentication(FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationArgs.builder()
.claims(FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.build())
.googleCloudStorageEventDrivenSettings(FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs.builder()
.bucketUri("string")
.pubsubSubscription("string")
.chronicleServiceAccount("string")
.maxLookbackDays(0)
.sourceDeletionOption("string")
.build())
.httpSettings(FeedDetailsHttpSettingsArgs.builder()
.sourceDeletionOption("string")
.sourceType("string")
.uri("string")
.build())
.httpsPushAmazonKinesisFirehoseSettings(FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs.builder()
.splitDelimiter("string")
.build())
.httpsPushGoogleCloudPubsubSettings(FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs.builder()
.splitDelimiter("string")
.build())
.httpsPushWebhookSettings(FeedDetailsHttpsPushWebhookSettingsArgs.builder()
.splitDelimiter("string")
.build())
.impervaWafSettings(FeedDetailsImpervaWafSettingsArgs.builder()
.authentication(FeedDetailsImpervaWafSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.build())
.labels(Map.of("string", "string"))
.mandiantIocSettings(FeedDetailsMandiantIocSettingsArgs.builder()
.authentication(FeedDetailsMandiantIocSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.startTime("string")
.build())
.microsoftGraphAlertSettings(FeedDetailsMicrosoftGraphAlertSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsMicrosoftGraphAlertSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.tenantId("string")
.build())
.microsoftSecurityCenterAlertSettings(FeedDetailsMicrosoftSecurityCenterAlertSettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsMicrosoftSecurityCenterAlertSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.hostname("string")
.subscriptionId("string")
.tenantId("string")
.build())
.mimecastMailSettings(FeedDetailsMimecastMailSettingsArgs.builder()
.authentication(FeedDetailsMimecastMailSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.hostname("string")
.build())
.mimecastMailV2Settings(FeedDetailsMimecastMailV2SettingsArgs.builder()
.authCredentials(FeedDetailsMimecastMailV2SettingsAuthCredentialsArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.build())
.netskopeAlertSettings(FeedDetailsNetskopeAlertSettingsArgs.builder()
.authentication(FeedDetailsNetskopeAlertSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.contentType("string")
.feedname("string")
.hostname("string")
.build())
.netskopeAlertV2Settings(FeedDetailsNetskopeAlertV2SettingsArgs.builder()
.authentication(FeedDetailsNetskopeAlertV2SettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.contentCategory("string")
.contentTypes("string")
.hostname("string")
.build())
.office365Settings(FeedDetailsOffice365SettingsArgs.builder()
.authEndpoint("string")
.authentication(FeedDetailsOffice365SettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.contentType("string")
.hostname("string")
.tenantId("string")
.build())
.oktaSettings(FeedDetailsOktaSettingsArgs.builder()
.authentication(FeedDetailsOktaSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsOktaSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.hostname("string")
.build())
.oktaUserContextSettings(FeedDetailsOktaUserContextSettingsArgs.builder()
.authentication(FeedDetailsOktaUserContextSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.hostname("string")
.managerIdReferenceField("string")
.build())
.panIocSettings(FeedDetailsPanIocSettingsArgs.builder()
.authentication(FeedDetailsPanIocSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsPanIocSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.feed("string")
.feedId("string")
.build())
.panPrismaCloudSettings(FeedDetailsPanPrismaCloudSettingsArgs.builder()
.authentication(FeedDetailsPanPrismaCloudSettingsAuthenticationArgs.builder()
.password("string")
.user("string")
.build())
.hostname("string")
.build())
.proofpointMailSettings(FeedDetailsProofpointMailSettingsArgs.builder()
.authentication(FeedDetailsProofpointMailSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.build())
.proofpointOnDemandSettings(FeedDetailsProofpointOnDemandSettingsArgs.builder()
.authentication(FeedDetailsProofpointOnDemandSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.clusterId("string")
.build())
.pubsubSettings(FeedDetailsPubsubSettingsArgs.builder()
.googleServiceAccountEmail("string")
.build())
.qualysScanSettings(FeedDetailsQualysScanSettingsArgs.builder()
.apiType("string")
.authentication(FeedDetailsQualysScanSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.hostname("string")
.build())
.qualysVmSettings(FeedDetailsQualysVmSettingsArgs.builder()
.authentication(FeedDetailsQualysVmSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.hostname("string")
.build())
.rapid7InsightSettings(FeedDetailsRapid7InsightSettingsArgs.builder()
.authentication(FeedDetailsRapid7InsightSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.endpoint("string")
.hostname("string")
.build())
.recordedFutureIocSettings(FeedDetailsRecordedFutureIocSettingsArgs.builder()
.authentication(FeedDetailsRecordedFutureIocSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.build())
.rhIsacIocSettings(FeedDetailsRhIsacIocSettingsArgs.builder()
.authentication(FeedDetailsRhIsacIocSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.tokenEndpoint("string")
.build())
.build())
.salesforceSettings(FeedDetailsSalesforceSettingsArgs.builder()
.hostname("string")
.oauthJwtCredentials(FeedDetailsSalesforceSettingsOauthJwtCredentialsArgs.builder()
.claims(FeedDetailsSalesforceSettingsOauthJwtCredentialsClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsSalesforceSettingsOauthJwtCredentialsRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.oauthPasswordGrantAuth(FeedDetailsSalesforceSettingsOauthPasswordGrantAuthArgs.builder()
.clientId("string")
.clientSecret("string")
.password("string")
.tokenEndpoint("string")
.user("string")
.build())
.build())
.sentineloneAlertSettings(FeedDetailsSentineloneAlertSettingsArgs.builder()
.authentication(FeedDetailsSentineloneAlertSettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.hostname("string")
.initialStartTime("string")
.isAlertApiSubscribed(false)
.build())
.serviceNowCmdbSettings(FeedDetailsServiceNowCmdbSettingsArgs.builder()
.authentication(FeedDetailsServiceNowCmdbSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.feedname("string")
.hostname("string")
.build())
.sftpSettings(FeedDetailsSftpSettingsArgs.builder()
.authentication(FeedDetailsSftpSettingsAuthenticationArgs.builder()
.password("string")
.privateKey("string")
.privateKeyPassphrase("string")
.username("string")
.build())
.sourceDeletionOption("string")
.sourceType("string")
.uri("string")
.build())
.stsMigrationReadiness("string")
.symantecEventExportSettings(FeedDetailsSymantecEventExportSettingsArgs.builder()
.authentication(FeedDetailsSymantecEventExportSettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.refreshToken("string")
.tokenEndpoint("string")
.build())
.build())
.thinkstCanarySettings(FeedDetailsThinkstCanarySettingsArgs.builder()
.authentication(FeedDetailsThinkstCanarySettingsAuthenticationArgs.builder()
.headerKeyValues(FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValueArgs.builder()
.key("string")
.value("string")
.build())
.build())
.hostname("string")
.build())
.threatConnectIocSettings(FeedDetailsThreatConnectIocSettingsArgs.builder()
.authentication(FeedDetailsThreatConnectIocSettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.hostname("string")
.owners("string")
.build())
.threatConnectIocV3Settings(FeedDetailsThreatConnectIocV3SettingsArgs.builder()
.authentication(FeedDetailsThreatConnectIocV3SettingsAuthenticationArgs.builder()
.secret("string")
.user("string")
.build())
.fields("string")
.hostname("string")
.owners("string")
.schedule(0)
.tqlQuery("string")
.build())
.trellixHxAlertsSettings(FeedDetailsTrellixHxAlertsSettingsArgs.builder()
.authentication(FeedDetailsTrellixHxAlertsSettingsAuthenticationArgs.builder()
.msso(FeedDetailsTrellixHxAlertsSettingsAuthenticationMssoArgs.builder()
.apiEndpoint("string")
.password("string")
.username("string")
.build())
.trellixIam(FeedDetailsTrellixHxAlertsSettingsAuthenticationTrellixIamArgs.builder()
.clientId("string")
.clientSecret("string")
.scope("string")
.build())
.build())
.endpoint("string")
.build())
.trellixHxBulkAcqsSettings(FeedDetailsTrellixHxBulkAcqsSettingsArgs.builder()
.endpoint("string")
.authentication(FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationArgs.builder()
.msso(FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationMssoArgs.builder()
.apiEndpoint("string")
.password("string")
.username("string")
.build())
.trellixIam(FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationTrellixIamArgs.builder()
.clientId("string")
.clientSecret("string")
.scope("string")
.build())
.build())
.build())
.trellixHxHostsSettings(FeedDetailsTrellixHxHostsSettingsArgs.builder()
.endpoint("string")
.authentication(FeedDetailsTrellixHxHostsSettingsAuthenticationArgs.builder()
.msso(FeedDetailsTrellixHxHostsSettingsAuthenticationMssoArgs.builder()
.apiEndpoint("string")
.password("string")
.username("string")
.build())
.trellixIam(FeedDetailsTrellixHxHostsSettingsAuthenticationTrellixIamArgs.builder()
.clientId("string")
.clientSecret("string")
.scope("string")
.build())
.build())
.build())
.webhookSettings(FeedDetailsWebhookSettingsArgs.builder()
.build())
.workdaySettings(FeedDetailsWorkdaySettingsArgs.builder()
.authentication(FeedDetailsWorkdaySettingsAuthenticationArgs.builder()
.clientId("string")
.clientSecret("string")
.refreshToken("string")
.secret("string")
.tokenEndpoint("string")
.user("string")
.build())
.hostname("string")
.tenantId("string")
.build())
.workspaceActivitySettings(FeedDetailsWorkspaceActivitySettingsArgs.builder()
.applications("string")
.authentication(FeedDetailsWorkspaceActivitySettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceActivitySettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceActivitySettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspaceAlertsSettings(FeedDetailsWorkspaceAlertsSettingsArgs.builder()
.authentication(FeedDetailsWorkspaceAlertsSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceAlertsSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceAlertsSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspaceChromeOsSettings(FeedDetailsWorkspaceChromeOsSettingsArgs.builder()
.authentication(FeedDetailsWorkspaceChromeOsSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceChromeOsSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceChromeOsSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspaceGroupsSettings(FeedDetailsWorkspaceGroupsSettingsArgs.builder()
.authentication(FeedDetailsWorkspaceGroupsSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceGroupsSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceGroupsSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspaceMobileSettings(FeedDetailsWorkspaceMobileSettingsArgs.builder()
.authentication(FeedDetailsWorkspaceMobileSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceMobileSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceMobileSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspacePrivilegesSettings(FeedDetailsWorkspacePrivilegesSettingsArgs.builder()
.authentication(FeedDetailsWorkspacePrivilegesSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspacePrivilegesSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspacePrivilegesSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.workspaceCustomerId("string")
.build())
.workspaceUsersSettings(FeedDetailsWorkspaceUsersSettingsArgs.builder()
.authentication(FeedDetailsWorkspaceUsersSettingsAuthenticationArgs.builder()
.claims(FeedDetailsWorkspaceUsersSettingsAuthenticationClaimsArgs.builder()
.audience("string")
.issuer("string")
.subject("string")
.build())
.rsCredentials(FeedDetailsWorkspaceUsersSettingsAuthenticationRsCredentialsArgs.builder()
.privateKey("string")
.build())
.tokenEndpoint("string")
.build())
.projectionType("string")
.workspaceCustomerId("string")
.build())
.build())
.displayName("string")
.enabled(false)
.failureDetails(FeedFailureDetailsArgs.builder()
.errorAction("string")
.errorCause("string")
.errorCode("string")
.httpErrorCode(0)
.build())
.feed("string")
.project("string")
.build());
feed_resource = gcp.chronicle.Feed("feedResource",
instance="string",
location="string",
details={
"log_type": "string",
"amazon_kinesis_firehose_settings": {},
"amazon_s3_settings": {
"s3_uri": "string",
"source_deletion_option": "string",
"source_type": "string",
"authentication": {
"region": "string",
"access_key_id": "string",
"client_id": "string",
"client_secret": "string",
"refresh_uri": "string",
"secret_access_key": "string",
},
},
"amazon_s3_v2_settings": {
"authentication": {
"access_key_secret_auth": {
"access_key_id": "string",
"secret_access_key": "string",
},
"aws_iam_role_auth": {
"aws_iam_role_arn": "string",
"subject_id": "string",
},
},
"s3_uri": "string",
"chronicle_service_account": "string",
"max_lookback_days": 0,
"source_deletion_option": "string",
},
"amazon_sqs_settings": {
"account_number": "string",
"authentication": {
"additional_s3_access_key_secret_auth": {
"access_key_id": "string",
"secret_access_key": "string",
},
"sqs_access_key_secret_auth": {
"access_key_id": "string",
"secret_access_key": "string",
},
},
"queue": "string",
"region": "string",
"source_deletion_option": "string",
},
"amazon_sqs_v2_settings": {
"authentication": {
"aws_iam_role_auth": {
"aws_iam_role_arn": "string",
"subject_id": "string",
},
"sqs_v2_access_key_secret_auth": {
"access_key_id": "string",
"secret_access_key": "string",
},
},
"queue": "string",
"s3_uri": "string",
"chronicle_service_account": "string",
"max_lookback_days": 0,
"source_deletion_option": "string",
},
"anomali_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
},
"asset_namespace": "string",
"aws_ec2_hosts_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
},
"aws_ec2_instances_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
},
"aws_ec2_vpcs_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
},
"aws_iam_settings": {
"api_type": "string",
"authentication": {
"secret": "string",
"user": "string",
},
},
"azure_ad_audit_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"tenant_id": "string",
},
"azure_ad_context_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"retrieve_devices": False,
"retrieve_groups": False,
"tenant_id": "string",
},
"azure_ad_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"tenant_id": "string",
},
"azure_blob_store_settings": {
"authentication": {
"sas_token": "string",
"shared_key": "string",
},
"azure_uri": "string",
"source_deletion_option": "string",
"source_type": "string",
},
"azure_blob_store_v2_settings": {
"authentication": {
"access_key": "string",
"azure_v2_workload_identity_federation": {
"client_id": "string",
"subject_id": "string",
"tenant_id": "string",
},
"sas_token": "string",
},
"azure_uri": "string",
"chronicle_service_account": "string",
"max_lookback_days": 0,
"source_deletion_option": "string",
},
"azure_event_hub_settings": {
"consumer_group": "string",
"event_hub_connection_string": "string",
"name": "string",
"azure_sas_token": "string",
"azure_storage_connection_string": "string",
"azure_storage_container": "string",
"event_hub_namespace": "string",
},
"azure_mdm_intune_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"tenant_id": "string",
},
"cloud_passage_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"event_types": ["string"],
},
"cortex_xdr_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"endpoint": "string",
"hostname": "string",
},
"crowdstrike_alerts_settings": {
"authentication": {
"client_id": "string",
"client_secret": "string",
"token_endpoint": "string",
},
"hostname": "string",
"ingestion_type": "string",
},
"crowdstrike_detects_settings": {
"authentication": {
"client_id": "string",
"client_secret": "string",
"token_endpoint": "string",
},
"hostname": "string",
"ingestion_type": "string",
},
"dummy_log_type_settings": {
"api_endpoint": "string",
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
},
"duo_auth_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"hostname": "string",
},
"duo_user_context_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"hostname": "string",
},
"feed_source_type": "string",
"fox_it_stix_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"collection": "string",
"poll_service_uri": "string",
"ssl": {
"encoded_private_key": "string",
"ssl_certificate": "string",
},
},
"gcs_settings": {
"bucket_uri": "string",
"chronicle_service_account": "string",
"source_deletion_option": "string",
"source_type": "string",
},
"gcs_v2_settings": {
"bucket_uri": "string",
"chronicle_service_account": "string",
"max_lookback_days": 0,
"source_deletion_option": "string",
},
"google_cloud_identity_device_users_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
},
"google_cloud_identity_devices_settings": {
"api_version": "string",
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
},
"google_cloud_storage_event_driven_settings": {
"bucket_uri": "string",
"pubsub_subscription": "string",
"chronicle_service_account": "string",
"max_lookback_days": 0,
"source_deletion_option": "string",
},
"http_settings": {
"source_deletion_option": "string",
"source_type": "string",
"uri": "string",
},
"https_push_amazon_kinesis_firehose_settings": {
"split_delimiter": "string",
},
"https_push_google_cloud_pubsub_settings": {
"split_delimiter": "string",
},
"https_push_webhook_settings": {
"split_delimiter": "string",
},
"imperva_waf_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
},
"labels": {
"string": "string",
},
"mandiant_ioc_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"start_time": "string",
},
"microsoft_graph_alert_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"tenant_id": "string",
},
"microsoft_security_center_alert_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"hostname": "string",
"subscription_id": "string",
"tenant_id": "string",
},
"mimecast_mail_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"hostname": "string",
},
"mimecast_mail_v2_settings": {
"auth_credentials": {
"client_id": "string",
"client_secret": "string",
},
},
"netskope_alert_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"content_type": "string",
"feedname": "string",
"hostname": "string",
},
"netskope_alert_v2_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"content_category": "string",
"content_types": ["string"],
"hostname": "string",
},
"office365_settings": {
"auth_endpoint": "string",
"authentication": {
"client_id": "string",
"client_secret": "string",
},
"content_type": "string",
"hostname": "string",
"tenant_id": "string",
},
"okta_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"hostname": "string",
},
"okta_user_context_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"hostname": "string",
"manager_id_reference_field": "string",
},
"pan_ioc_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"feed": "string",
"feed_id": "string",
},
"pan_prisma_cloud_settings": {
"authentication": {
"password": "string",
"user": "string",
},
"hostname": "string",
},
"proofpoint_mail_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
},
"proofpoint_on_demand_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"cluster_id": "string",
},
"pubsub_settings": {
"google_service_account_email": "string",
},
"qualys_scan_settings": {
"api_type": "string",
"authentication": {
"secret": "string",
"user": "string",
},
"hostname": "string",
},
"qualys_vm_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"hostname": "string",
},
"rapid7_insight_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"endpoint": "string",
"hostname": "string",
},
"recorded_future_ioc_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
},
"rh_isac_ioc_settings": {
"authentication": {
"client_id": "string",
"client_secret": "string",
"token_endpoint": "string",
},
},
"salesforce_settings": {
"hostname": "string",
"oauth_jwt_credentials": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"oauth_password_grant_auth": {
"client_id": "string",
"client_secret": "string",
"password": "string",
"token_endpoint": "string",
"user": "string",
},
},
"sentinelone_alert_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"hostname": "string",
"initial_start_time": "string",
"is_alert_api_subscribed": False,
},
"service_now_cmdb_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"feedname": "string",
"hostname": "string",
},
"sftp_settings": {
"authentication": {
"password": "string",
"private_key": "string",
"private_key_passphrase": "string",
"username": "string",
},
"source_deletion_option": "string",
"source_type": "string",
"uri": "string",
},
"sts_migration_readiness": "string",
"symantec_event_export_settings": {
"authentication": {
"client_id": "string",
"client_secret": "string",
"refresh_token": "string",
"token_endpoint": "string",
},
},
"thinkst_canary_settings": {
"authentication": {
"header_key_values": [{
"key": "string",
"value": "string",
}],
},
"hostname": "string",
},
"threat_connect_ioc_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"hostname": "string",
"owners": ["string"],
},
"threat_connect_ioc_v3_settings": {
"authentication": {
"secret": "string",
"user": "string",
},
"fields": ["string"],
"hostname": "string",
"owners": ["string"],
"schedule": 0,
"tql_query": "string",
},
"trellix_hx_alerts_settings": {
"authentication": {
"msso": {
"api_endpoint": "string",
"password": "string",
"username": "string",
},
"trellix_iam": {
"client_id": "string",
"client_secret": "string",
"scope": "string",
},
},
"endpoint": "string",
},
"trellix_hx_bulk_acqs_settings": {
"endpoint": "string",
"authentication": {
"msso": {
"api_endpoint": "string",
"password": "string",
"username": "string",
},
"trellix_iam": {
"client_id": "string",
"client_secret": "string",
"scope": "string",
},
},
},
"trellix_hx_hosts_settings": {
"endpoint": "string",
"authentication": {
"msso": {
"api_endpoint": "string",
"password": "string",
"username": "string",
},
"trellix_iam": {
"client_id": "string",
"client_secret": "string",
"scope": "string",
},
},
},
"webhook_settings": {},
"workday_settings": {
"authentication": {
"client_id": "string",
"client_secret": "string",
"refresh_token": "string",
"secret": "string",
"token_endpoint": "string",
"user": "string",
},
"hostname": "string",
"tenant_id": "string",
},
"workspace_activity_settings": {
"applications": ["string"],
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_alerts_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_chrome_os_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_groups_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_mobile_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_privileges_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"workspace_customer_id": "string",
},
"workspace_users_settings": {
"authentication": {
"claims": {
"audience": "string",
"issuer": "string",
"subject": "string",
},
"rs_credentials": {
"private_key": "string",
},
"token_endpoint": "string",
},
"projection_type": "string",
"workspace_customer_id": "string",
},
},
display_name="string",
enabled=False,
failure_details={
"error_action": "string",
"error_cause": "string",
"error_code": "string",
"http_error_code": 0,
},
feed="string",
project="string")
const feedResource = new gcp.chronicle.Feed("feedResource", {
instance: "string",
location: "string",
details: {
logType: "string",
amazonKinesisFirehoseSettings: {},
amazonS3Settings: {
s3Uri: "string",
sourceDeletionOption: "string",
sourceType: "string",
authentication: {
region: "string",
accessKeyId: "string",
clientId: "string",
clientSecret: "string",
refreshUri: "string",
secretAccessKey: "string",
},
},
amazonS3V2Settings: {
authentication: {
accessKeySecretAuth: {
accessKeyId: "string",
secretAccessKey: "string",
},
awsIamRoleAuth: {
awsIamRoleArn: "string",
subjectId: "string",
},
},
s3Uri: "string",
chronicleServiceAccount: "string",
maxLookbackDays: 0,
sourceDeletionOption: "string",
},
amazonSqsSettings: {
accountNumber: "string",
authentication: {
additionalS3AccessKeySecretAuth: {
accessKeyId: "string",
secretAccessKey: "string",
},
sqsAccessKeySecretAuth: {
accessKeyId: "string",
secretAccessKey: "string",
},
},
queue: "string",
region: "string",
sourceDeletionOption: "string",
},
amazonSqsV2Settings: {
authentication: {
awsIamRoleAuth: {
awsIamRoleArn: "string",
subjectId: "string",
},
sqsV2AccessKeySecretAuth: {
accessKeyId: "string",
secretAccessKey: "string",
},
},
queue: "string",
s3Uri: "string",
chronicleServiceAccount: "string",
maxLookbackDays: 0,
sourceDeletionOption: "string",
},
anomaliSettings: {
authentication: {
secret: "string",
user: "string",
},
},
assetNamespace: "string",
awsEc2HostsSettings: {
authentication: {
secret: "string",
user: "string",
},
},
awsEc2InstancesSettings: {
authentication: {
secret: "string",
user: "string",
},
},
awsEc2VpcsSettings: {
authentication: {
secret: "string",
user: "string",
},
},
awsIamSettings: {
apiType: "string",
authentication: {
secret: "string",
user: "string",
},
},
azureAdAuditSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
tenantId: "string",
},
azureAdContextSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
retrieveDevices: false,
retrieveGroups: false,
tenantId: "string",
},
azureAdSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
tenantId: "string",
},
azureBlobStoreSettings: {
authentication: {
sasToken: "string",
sharedKey: "string",
},
azureUri: "string",
sourceDeletionOption: "string",
sourceType: "string",
},
azureBlobStoreV2Settings: {
authentication: {
accessKey: "string",
azureV2WorkloadIdentityFederation: {
clientId: "string",
subjectId: "string",
tenantId: "string",
},
sasToken: "string",
},
azureUri: "string",
chronicleServiceAccount: "string",
maxLookbackDays: 0,
sourceDeletionOption: "string",
},
azureEventHubSettings: {
consumerGroup: "string",
eventHubConnectionString: "string",
name: "string",
azureSasToken: "string",
azureStorageConnectionString: "string",
azureStorageContainer: "string",
eventHubNamespace: "string",
},
azureMdmIntuneSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
tenantId: "string",
},
cloudPassageSettings: {
authentication: {
secret: "string",
user: "string",
},
eventTypes: ["string"],
},
cortexXdrSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
endpoint: "string",
hostname: "string",
},
crowdstrikeAlertsSettings: {
authentication: {
clientId: "string",
clientSecret: "string",
tokenEndpoint: "string",
},
hostname: "string",
ingestionType: "string",
},
crowdstrikeDetectsSettings: {
authentication: {
clientId: "string",
clientSecret: "string",
tokenEndpoint: "string",
},
hostname: "string",
ingestionType: "string",
},
dummyLogTypeSettings: {
apiEndpoint: "string",
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
},
duoAuthSettings: {
authentication: {
secret: "string",
user: "string",
},
hostname: "string",
},
duoUserContextSettings: {
authentication: {
secret: "string",
user: "string",
},
hostname: "string",
},
feedSourceType: "string",
foxItStixSettings: {
authentication: {
secret: "string",
user: "string",
},
collection: "string",
pollServiceUri: "string",
ssl: {
encodedPrivateKey: "string",
sslCertificate: "string",
},
},
gcsSettings: {
bucketUri: "string",
chronicleServiceAccount: "string",
sourceDeletionOption: "string",
sourceType: "string",
},
gcsV2Settings: {
bucketUri: "string",
chronicleServiceAccount: "string",
maxLookbackDays: 0,
sourceDeletionOption: "string",
},
googleCloudIdentityDeviceUsersSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
},
googleCloudIdentityDevicesSettings: {
apiVersion: "string",
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
},
googleCloudStorageEventDrivenSettings: {
bucketUri: "string",
pubsubSubscription: "string",
chronicleServiceAccount: "string",
maxLookbackDays: 0,
sourceDeletionOption: "string",
},
httpSettings: {
sourceDeletionOption: "string",
sourceType: "string",
uri: "string",
},
httpsPushAmazonKinesisFirehoseSettings: {
splitDelimiter: "string",
},
httpsPushGoogleCloudPubsubSettings: {
splitDelimiter: "string",
},
httpsPushWebhookSettings: {
splitDelimiter: "string",
},
impervaWafSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
},
labels: {
string: "string",
},
mandiantIocSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
startTime: "string",
},
microsoftGraphAlertSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
tenantId: "string",
},
microsoftSecurityCenterAlertSettings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
hostname: "string",
subscriptionId: "string",
tenantId: "string",
},
mimecastMailSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
hostname: "string",
},
mimecastMailV2Settings: {
authCredentials: {
clientId: "string",
clientSecret: "string",
},
},
netskopeAlertSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
contentType: "string",
feedname: "string",
hostname: "string",
},
netskopeAlertV2Settings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
contentCategory: "string",
contentTypes: ["string"],
hostname: "string",
},
office365Settings: {
authEndpoint: "string",
authentication: {
clientId: "string",
clientSecret: "string",
},
contentType: "string",
hostname: "string",
tenantId: "string",
},
oktaSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
hostname: "string",
},
oktaUserContextSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
hostname: "string",
managerIdReferenceField: "string",
},
panIocSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
feed: "string",
feedId: "string",
},
panPrismaCloudSettings: {
authentication: {
password: "string",
user: "string",
},
hostname: "string",
},
proofpointMailSettings: {
authentication: {
secret: "string",
user: "string",
},
},
proofpointOnDemandSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
clusterId: "string",
},
pubsubSettings: {
googleServiceAccountEmail: "string",
},
qualysScanSettings: {
apiType: "string",
authentication: {
secret: "string",
user: "string",
},
hostname: "string",
},
qualysVmSettings: {
authentication: {
secret: "string",
user: "string",
},
hostname: "string",
},
rapid7InsightSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
endpoint: "string",
hostname: "string",
},
recordedFutureIocSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
},
rhIsacIocSettings: {
authentication: {
clientId: "string",
clientSecret: "string",
tokenEndpoint: "string",
},
},
salesforceSettings: {
hostname: "string",
oauthJwtCredentials: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
oauthPasswordGrantAuth: {
clientId: "string",
clientSecret: "string",
password: "string",
tokenEndpoint: "string",
user: "string",
},
},
sentineloneAlertSettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
hostname: "string",
initialStartTime: "string",
isAlertApiSubscribed: false,
},
serviceNowCmdbSettings: {
authentication: {
secret: "string",
user: "string",
},
feedname: "string",
hostname: "string",
},
sftpSettings: {
authentication: {
password: "string",
privateKey: "string",
privateKeyPassphrase: "string",
username: "string",
},
sourceDeletionOption: "string",
sourceType: "string",
uri: "string",
},
stsMigrationReadiness: "string",
symantecEventExportSettings: {
authentication: {
clientId: "string",
clientSecret: "string",
refreshToken: "string",
tokenEndpoint: "string",
},
},
thinkstCanarySettings: {
authentication: {
headerKeyValues: [{
key: "string",
value: "string",
}],
},
hostname: "string",
},
threatConnectIocSettings: {
authentication: {
secret: "string",
user: "string",
},
hostname: "string",
owners: ["string"],
},
threatConnectIocV3Settings: {
authentication: {
secret: "string",
user: "string",
},
fields: ["string"],
hostname: "string",
owners: ["string"],
schedule: 0,
tqlQuery: "string",
},
trellixHxAlertsSettings: {
authentication: {
msso: {
apiEndpoint: "string",
password: "string",
username: "string",
},
trellixIam: {
clientId: "string",
clientSecret: "string",
scope: "string",
},
},
endpoint: "string",
},
trellixHxBulkAcqsSettings: {
endpoint: "string",
authentication: {
msso: {
apiEndpoint: "string",
password: "string",
username: "string",
},
trellixIam: {
clientId: "string",
clientSecret: "string",
scope: "string",
},
},
},
trellixHxHostsSettings: {
endpoint: "string",
authentication: {
msso: {
apiEndpoint: "string",
password: "string",
username: "string",
},
trellixIam: {
clientId: "string",
clientSecret: "string",
scope: "string",
},
},
},
webhookSettings: {},
workdaySettings: {
authentication: {
clientId: "string",
clientSecret: "string",
refreshToken: "string",
secret: "string",
tokenEndpoint: "string",
user: "string",
},
hostname: "string",
tenantId: "string",
},
workspaceActivitySettings: {
applications: ["string"],
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspaceAlertsSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspaceChromeOsSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspaceGroupsSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspaceMobileSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspacePrivilegesSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
workspaceCustomerId: "string",
},
workspaceUsersSettings: {
authentication: {
claims: {
audience: "string",
issuer: "string",
subject: "string",
},
rsCredentials: {
privateKey: "string",
},
tokenEndpoint: "string",
},
projectionType: "string",
workspaceCustomerId: "string",
},
},
displayName: "string",
enabled: false,
failureDetails: {
errorAction: "string",
errorCause: "string",
errorCode: "string",
httpErrorCode: 0,
},
feed: "string",
project: "string",
});
type: gcp:chronicle:Feed
properties:
details:
amazonKinesisFirehoseSettings: {}
amazonS3Settings:
authentication:
accessKeyId: string
clientId: string
clientSecret: string
refreshUri: string
region: string
secretAccessKey: string
s3Uri: string
sourceDeletionOption: string
sourceType: string
amazonS3V2Settings:
authentication:
accessKeySecretAuth:
accessKeyId: string
secretAccessKey: string
awsIamRoleAuth:
awsIamRoleArn: string
subjectId: string
chronicleServiceAccount: string
maxLookbackDays: 0
s3Uri: string
sourceDeletionOption: string
amazonSqsSettings:
accountNumber: string
authentication:
additionalS3AccessKeySecretAuth:
accessKeyId: string
secretAccessKey: string
sqsAccessKeySecretAuth:
accessKeyId: string
secretAccessKey: string
queue: string
region: string
sourceDeletionOption: string
amazonSqsV2Settings:
authentication:
awsIamRoleAuth:
awsIamRoleArn: string
subjectId: string
sqsV2AccessKeySecretAuth:
accessKeyId: string
secretAccessKey: string
chronicleServiceAccount: string
maxLookbackDays: 0
queue: string
s3Uri: string
sourceDeletionOption: string
anomaliSettings:
authentication:
secret: string
user: string
assetNamespace: string
awsEc2HostsSettings:
authentication:
secret: string
user: string
awsEc2InstancesSettings:
authentication:
secret: string
user: string
awsEc2VpcsSettings:
authentication:
secret: string
user: string
awsIamSettings:
apiType: string
authentication:
secret: string
user: string
azureAdAuditSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
tenantId: string
azureAdContextSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
retrieveDevices: false
retrieveGroups: false
tenantId: string
azureAdSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
tenantId: string
azureBlobStoreSettings:
authentication:
sasToken: string
sharedKey: string
azureUri: string
sourceDeletionOption: string
sourceType: string
azureBlobStoreV2Settings:
authentication:
accessKey: string
azureV2WorkloadIdentityFederation:
clientId: string
subjectId: string
tenantId: string
sasToken: string
azureUri: string
chronicleServiceAccount: string
maxLookbackDays: 0
sourceDeletionOption: string
azureEventHubSettings:
azureSasToken: string
azureStorageConnectionString: string
azureStorageContainer: string
consumerGroup: string
eventHubConnectionString: string
eventHubNamespace: string
name: string
azureMdmIntuneSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
tenantId: string
cloudPassageSettings:
authentication:
secret: string
user: string
eventTypes:
- string
cortexXdrSettings:
authentication:
headerKeyValues:
- key: string
value: string
endpoint: string
hostname: string
crowdstrikeAlertsSettings:
authentication:
clientId: string
clientSecret: string
tokenEndpoint: string
hostname: string
ingestionType: string
crowdstrikeDetectsSettings:
authentication:
clientId: string
clientSecret: string
tokenEndpoint: string
hostname: string
ingestionType: string
dummyLogTypeSettings:
apiEndpoint: string
authentication:
headerKeyValues:
- key: string
value: string
duoAuthSettings:
authentication:
secret: string
user: string
hostname: string
duoUserContextSettings:
authentication:
secret: string
user: string
hostname: string
feedSourceType: string
foxItStixSettings:
authentication:
secret: string
user: string
collection: string
pollServiceUri: string
ssl:
encodedPrivateKey: string
sslCertificate: string
gcsSettings:
bucketUri: string
chronicleServiceAccount: string
sourceDeletionOption: string
sourceType: string
gcsV2Settings:
bucketUri: string
chronicleServiceAccount: string
maxLookbackDays: 0
sourceDeletionOption: string
googleCloudIdentityDeviceUsersSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
googleCloudIdentityDevicesSettings:
apiVersion: string
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
googleCloudStorageEventDrivenSettings:
bucketUri: string
chronicleServiceAccount: string
maxLookbackDays: 0
pubsubSubscription: string
sourceDeletionOption: string
httpSettings:
sourceDeletionOption: string
sourceType: string
uri: string
httpsPushAmazonKinesisFirehoseSettings:
splitDelimiter: string
httpsPushGoogleCloudPubsubSettings:
splitDelimiter: string
httpsPushWebhookSettings:
splitDelimiter: string
impervaWafSettings:
authentication:
headerKeyValues:
- key: string
value: string
labels:
string: string
logType: string
mandiantIocSettings:
authentication:
headerKeyValues:
- key: string
value: string
startTime: string
microsoftGraphAlertSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
tenantId: string
microsoftSecurityCenterAlertSettings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
hostname: string
subscriptionId: string
tenantId: string
mimecastMailSettings:
authentication:
headerKeyValues:
- key: string
value: string
hostname: string
mimecastMailV2Settings:
authCredentials:
clientId: string
clientSecret: string
netskopeAlertSettings:
authentication:
headerKeyValues:
- key: string
value: string
contentType: string
feedname: string
hostname: string
netskopeAlertV2Settings:
authentication:
headerKeyValues:
- key: string
value: string
contentCategory: string
contentTypes:
- string
hostname: string
office365Settings:
authEndpoint: string
authentication:
clientId: string
clientSecret: string
contentType: string
hostname: string
tenantId: string
oktaSettings:
authentication:
headerKeyValues:
- key: string
value: string
hostname: string
oktaUserContextSettings:
authentication:
headerKeyValues:
- key: string
value: string
hostname: string
managerIdReferenceField: string
panIocSettings:
authentication:
headerKeyValues:
- key: string
value: string
feed: string
feedId: string
panPrismaCloudSettings:
authentication:
password: string
user: string
hostname: string
proofpointMailSettings:
authentication:
secret: string
user: string
proofpointOnDemandSettings:
authentication:
headerKeyValues:
- key: string
value: string
clusterId: string
pubsubSettings:
googleServiceAccountEmail: string
qualysScanSettings:
apiType: string
authentication:
secret: string
user: string
hostname: string
qualysVmSettings:
authentication:
secret: string
user: string
hostname: string
rapid7InsightSettings:
authentication:
headerKeyValues:
- key: string
value: string
endpoint: string
hostname: string
recordedFutureIocSettings:
authentication:
headerKeyValues:
- key: string
value: string
rhIsacIocSettings:
authentication:
clientId: string
clientSecret: string
tokenEndpoint: string
salesforceSettings:
hostname: string
oauthJwtCredentials:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
oauthPasswordGrantAuth:
clientId: string
clientSecret: string
password: string
tokenEndpoint: string
user: string
sentineloneAlertSettings:
authentication:
headerKeyValues:
- key: string
value: string
hostname: string
initialStartTime: string
isAlertApiSubscribed: false
serviceNowCmdbSettings:
authentication:
secret: string
user: string
feedname: string
hostname: string
sftpSettings:
authentication:
password: string
privateKey: string
privateKeyPassphrase: string
username: string
sourceDeletionOption: string
sourceType: string
uri: string
stsMigrationReadiness: string
symantecEventExportSettings:
authentication:
clientId: string
clientSecret: string
refreshToken: string
tokenEndpoint: string
thinkstCanarySettings:
authentication:
headerKeyValues:
- key: string
value: string
hostname: string
threatConnectIocSettings:
authentication:
secret: string
user: string
hostname: string
owners:
- string
threatConnectIocV3Settings:
authentication:
secret: string
user: string
fields:
- string
hostname: string
owners:
- string
schedule: 0
tqlQuery: string
trellixHxAlertsSettings:
authentication:
msso:
apiEndpoint: string
password: string
username: string
trellixIam:
clientId: string
clientSecret: string
scope: string
endpoint: string
trellixHxBulkAcqsSettings:
authentication:
msso:
apiEndpoint: string
password: string
username: string
trellixIam:
clientId: string
clientSecret: string
scope: string
endpoint: string
trellixHxHostsSettings:
authentication:
msso:
apiEndpoint: string
password: string
username: string
trellixIam:
clientId: string
clientSecret: string
scope: string
endpoint: string
webhookSettings: {}
workdaySettings:
authentication:
clientId: string
clientSecret: string
refreshToken: string
secret: string
tokenEndpoint: string
user: string
hostname: string
tenantId: string
workspaceActivitySettings:
applications:
- string
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspaceAlertsSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspaceChromeOsSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspaceGroupsSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspaceMobileSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspacePrivilegesSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
workspaceCustomerId: string
workspaceUsersSettings:
authentication:
claims:
audience: string
issuer: string
subject: string
rsCredentials:
privateKey: string
tokenEndpoint: string
projectionType: string
workspaceCustomerId: string
displayName: string
enabled: false
failureDetails:
errorAction: string
errorCause: string
errorCode: string
httpErrorCode: 0
feed: string
instance: string
location: string
project: string
Feed 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 Feed resource accepts the following input properties:
- Instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- Display
Name string - Customer-provided feed name.
- Enabled bool
- Whether the feed is enabled.
- Failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- Feed
Id string - Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Details
Feed
Details Args - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- Display
Name string - Customer-provided feed name.
- Enabled bool
- Whether the feed is enabled.
- Failure
Details FeedFailure Details Args - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- Feed string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- instance String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - location String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name String - Customer-provided feed name.
- enabled Boolean
- Whether the feed is enabled.
- failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- feed String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name string - Customer-provided feed name.
- enabled boolean
- Whether the feed is enabled.
- failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- feed string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- instance str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - location str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - details
Feed
Details Args - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display_
name str - Customer-provided feed name.
- enabled bool
- Whether the feed is enabled.
- failure_
details FeedFailure Details Args - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- feed str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- instance String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - location String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - details Property Map
- Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name String - Customer-provided feed name.
- enabled Boolean
- Whether the feed is enabled.
- failure
Details Property Map - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- feed String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the Feed resource produces the following output properties:
- Failure
Msg string - Details about the most recent failure when feed state is FAILED.
- Feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- Name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- Read
Only bool - Whether this feed can be updated or deleted.
- Reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- Secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- State string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- Uid string
- Unique identifier for the feed.
- Failure
Msg string - Details about the most recent failure when feed state is FAILED.
- Feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- Name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- Read
Only bool - Whether this feed can be updated or deleted.
- Reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- Secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- State string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- Uid string
- Unique identifier for the feed.
- failure
Msg String - Details about the most recent failure when feed state is FAILED.
- feed
Service StringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Feed StringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- name String
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- read
Only Boolean - Whether this feed can be updated or deleted.
- reference
Id String - Reference ID, this field will contain the legacy id of the feed.
- secret String
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state String
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid String
- Unique identifier for the feed.
- failure
Msg string - Details about the most recent failure when feed state is FAILED.
- feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- read
Only boolean - Whether this feed can be updated or deleted.
- reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid string
- Unique identifier for the feed.
- failure_
msg str - Details about the most recent failure when feed state is FAILED.
- feed_
service_ straccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
feed_ strinitiation_ time - Latest timestamp when the transfer was successful for the feed.
- name str
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- read_
only bool - Whether this feed can be updated or deleted.
- reference_
id str - Reference ID, this field will contain the legacy id of the feed.
- secret str
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state str
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid str
- Unique identifier for the feed.
- failure
Msg String - Details about the most recent failure when feed state is FAILED.
- feed
Service StringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Feed StringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- name String
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- read
Only Boolean - Whether this feed can be updated or deleted.
- reference
Id String - Reference ID, this field will contain the legacy id of the feed.
- secret String
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state String
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid String
- Unique identifier for the feed.
Look up Existing Feed Resource
Get an existing Feed 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?: FeedState, opts?: CustomResourceOptions): Feed@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
details: Optional[FeedDetailsArgs] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
failure_details: Optional[FeedFailureDetailsArgs] = None,
failure_msg: Optional[str] = None,
feed: Optional[str] = None,
feed_service_account: Optional[str] = None,
instance: Optional[str] = None,
last_feed_initiation_time: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
read_only: Optional[bool] = None,
reference_id: Optional[str] = None,
secret: Optional[str] = None,
state: Optional[str] = None,
uid: Optional[str] = None) -> Feedfunc GetFeed(ctx *Context, name string, id IDInput, state *FeedState, opts ...ResourceOption) (*Feed, error)public static Feed Get(string name, Input<string> id, FeedState? state, CustomResourceOptions? opts = null)public static Feed get(String name, Output<String> id, FeedState state, CustomResourceOptions options)resources: _: type: gcp:chronicle:Feed get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- Display
Name string - Customer-provided feed name.
- Enabled bool
- Whether the feed is enabled.
- Failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- Failure
Msg string - Details about the most recent failure when feed state is FAILED.
- Feed
Id string - Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- Instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- Location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Read
Only bool - Whether this feed can be updated or deleted.
- Reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- Secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- State string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- Uid string
- Unique identifier for the feed.
- Details
Feed
Details Args - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- Display
Name string - Customer-provided feed name.
- Enabled bool
- Whether the feed is enabled.
- Failure
Details FeedFailure Details Args - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- Failure
Msg string - Details about the most recent failure when feed state is FAILED.
- Feed string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- Instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- Location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - Name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Read
Only bool - Whether this feed can be updated or deleted.
- Reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- Secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- State string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- Uid string
- Unique identifier for the feed.
- details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name String - Customer-provided feed name.
- enabled Boolean
- Whether the feed is enabled.
- failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- failure
Msg String - Details about the most recent failure when feed state is FAILED.
- feed String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - feed
Service StringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- instance String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - last
Feed StringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- location String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name String
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- read
Only Boolean - Whether this feed can be updated or deleted.
- reference
Id String - Reference ID, this field will contain the legacy id of the feed.
- secret String
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state String
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid String
- Unique identifier for the feed.
- details
Feed
Details - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name string - Customer-provided feed name.
- enabled boolean
- Whether the feed is enabled.
- failure
Details FeedFailure Details - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- failure
Msg string - Details about the most recent failure when feed state is FAILED.
- feed string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - feed
Service stringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- instance string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - last
Feed stringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- location string
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name string
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- read
Only boolean - Whether this feed can be updated or deleted.
- reference
Id string - Reference ID, this field will contain the legacy id of the feed.
- secret string
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state string
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid string
- Unique identifier for the feed.
- details
Feed
Details Args - Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display_
name str - Customer-provided feed name.
- enabled bool
- Whether the feed is enabled.
- failure_
details FeedFailure Details Args - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- failure_
msg str - Details about the most recent failure when feed state is FAILED.
- feed str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - feed_
service_ straccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- instance str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - last_
feed_ strinitiation_ time - Latest timestamp when the transfer was successful for the feed.
- location str
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name str
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- read_
only bool - Whether this feed can be updated or deleted.
- reference_
id str - Reference ID, this field will contain the legacy id of the feed.
- secret str
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state str
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid str
- Unique identifier for the feed.
- details Property Map
- Additional details of the feed, these details are dynamic and will be different for each of the feeds. Structure is documented below.
- display
Name String - Customer-provided feed name.
- enabled Boolean
- Whether the feed is enabled.
- failure
Details Property Map - FeedFailureDetails contains details about the errors thrown by chronicle for the feeds. These are user visible details. These details help user identify the root cause and take appropriate action for the feed errors. NEXT TAG: 5 Structure is documented below.
- failure
Msg String - Details about the most recent failure when feed state is FAILED.
- feed String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - feed
Service StringAccount - Output only. The service account used by Chronicle to ingest data from Cloud Storage. This is only available when the feed source type is GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN or GOOGLE_CLOUD_STORAGE.
- instance String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - last
Feed StringInitiation Time - Latest timestamp when the transfer was successful for the feed.
- location String
- Resource ID segment making up resource
name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. - name String
- The resource name of the feed. Format: projects/{project}/locations/{location}/instances/{instance}/feeds/{feed}
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- read
Only Boolean - Whether this feed can be updated or deleted.
- reference
Id String - Reference ID, this field will contain the legacy id of the feed.
- secret String
- Output only. The secret generated for the feed. This is only available when the feed source type is HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE.
- state String
- The state of the feed (e.g., ACTIVE, INACTIVE).
- uid String
- Unique identifier for the feed.
Supporting Types
FeedDetails, FeedDetailsArgs
- Log
Type string - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- Amazon
Kinesis FeedFirehose Settings Details Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- Amazon
S3Settings FeedDetails Amazon S3Settings - Amazon S3 settings. Structure is documented below.
- Amazon
S3V2Settings FeedDetails Amazon S3V2Settings - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- Amazon
Sqs FeedSettings Details Amazon Sqs Settings - Amazon SQS settings. Structure is documented below.
- Amazon
Sqs FeedV2Settings Details Amazon Sqs V2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- Anomali
Settings FeedDetails Anomali Settings - Anomali IOC settings. Structure is documented below.
- Asset
Namespace string - The asset namespace to apply to all logs ingested through this feed.
- Aws
Ec2Hosts FeedSettings Details Aws Ec2Hosts Settings - AWS EC2 Hosts Settings. Structure is documented below.
- Aws
Ec2Instances FeedSettings Details Aws Ec2Instances Settings - AWS EC2 Instances Settings. Structure is documented below.
- Aws
Ec2Vpcs FeedSettings Details Aws Ec2Vpcs Settings - AWS EC2 Vpcs Settings. Structure is documented below.
- Aws
Iam FeedSettings Details Aws Iam Settings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- Azure
Ad FeedAudit Settings Details Azure Ad Audit Settings - Azure AD Audit settings. Structure is documented below.
- Azure
Ad FeedContext Settings Details Azure Ad Context Settings - Azure AD Context settings. Structure is documented below.
- Azure
Ad FeedSettings Details Azure Ad Settings - Azure AD settings. Structure is documented below.
- Azure
Blob FeedStore Settings Details Azure Blob Store Settings - Azure Blob Storage settings. Structure is documented below.
- Azure
Blob FeedStore V2Settings Details Azure Blob Store V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- Azure
Event FeedHub Settings Details Azure Event Hub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- Azure
Mdm FeedIntune Settings Details Azure Mdm Intune Settings - Azure MDM Intune settings. Structure is documented below.
- Cloud
Passage FeedSettings Details Cloud Passage Settings - CloudPassage settings. Structure is documented below.
- Cortex
Xdr FeedSettings Details Cortex Xdr Settings - PAN Cortex XDR settings. Structure is documented below.
- Crowdstrike
Alerts FeedSettings Details Crowdstrike Alerts Settings - CrowdStrike Alerts settings. Structure is documented below.
- Crowdstrike
Detects FeedSettings Details Crowdstrike Detects Settings - CrowdStrike Detects settings. Structure is documented below.
- Dummy
Log FeedType Settings Details Dummy Log Type Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- Duo
Auth FeedSettings Details Duo Auth Settings - Duo Authentication settings. Structure is documented below.
- Duo
User FeedContext Settings Details Duo User Context Settings - Duo User Context settings. Structure is documented below.
- Feed
Source stringType - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - Fox
It FeedStix Settings Details Fox It Stix Settings - Fox-IT STIX settings. Structure is documented below.
- Gcs
Settings FeedDetails Gcs Settings - Google Cloud Storage settings. Structure is documented below.
- Gcs
V2Settings FeedDetails Gcs V2Settings - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- Google
Cloud FeedIdentity Device Users Settings Details Google Cloud Identity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- Google
Cloud FeedIdentity Devices Settings Details Google Cloud Identity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- Google
Cloud FeedStorage Event Driven Settings Details Google Cloud Storage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- Http
Settings FeedDetails Http Settings - HTTP settings. Structure is documented below.
- Https
Push FeedAmazon Kinesis Firehose Settings Details Https Push Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- Https
Push FeedGoogle Cloud Pubsub Settings Details Https Push Google Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- Https
Push FeedWebhook Settings Details Https Push Webhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- Imperva
Waf FeedSettings Details Imperva Waf Settings - Imperva WAF settings. Structure is documented below.
- Labels Dictionary<string, string>
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- Mandiant
Ioc FeedSettings Details Mandiant Ioc Settings - Mandiant IOC settings. Structure is documented below.
- Microsoft
Graph FeedAlert Settings Details Microsoft Graph Alert Settings - Microsoft Graph Alert settings. Structure is documented below.
- Microsoft
Security FeedCenter Alert Settings Details Microsoft Security Center Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- Mimecast
Mail FeedSettings Details Mimecast Mail Settings - Mimecast Mail settings. Structure is documented below.
- Mimecast
Mail FeedV2Settings Details Mimecast Mail V2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- Netskope
Alert FeedSettings Details Netskope Alert Settings - Netskope Alert settings. Structure is documented below.
- Netskope
Alert FeedV2Settings Details Netskope Alert V2Settings - Netskope Alert V2 settings. Structure is documented below.
- Office365Settings
Feed
Details Office365Settings - Office 365 settings. Structure is documented below.
- Okta
Settings FeedDetails Okta Settings - Okta settings. Structure is documented below.
- Okta
User FeedContext Settings Details Okta User Context Settings - Okta user context settings. Structure is documented below.
- Pan
Ioc FeedSettings Details Pan Ioc Settings - PAN IOC settings. Structure is documented below.
- Pan
Prisma FeedCloud Settings Details Pan Prisma Cloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- Proofpoint
Mail FeedSettings Details Proofpoint Mail Settings - Proofpoint Mail settings. Structure is documented below.
- Proofpoint
On FeedDemand Settings Details Proofpoint On Demand Settings - Proofpoint On-demand settings. Structure is documented below.
- Pubsub
Settings FeedDetails Pubsub Settings - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- Qualys
Scan FeedSettings Details Qualys Scan Settings - Qualys Scan settings. Structure is documented below.
- Qualys
Vm FeedSettings Details Qualys Vm Settings - Qualys VM settings. Structure is documented below.
- Rapid7Insight
Settings FeedDetails Rapid7Insight Settings - Rapid7 Insight settings. Structure is documented below.
- Recorded
Future FeedIoc Settings Details Recorded Future Ioc Settings - Recorded Future IOC settings. Structure is documented below.
- Rh
Isac FeedIoc Settings Details Rh Isac Ioc Settings - RH-ISAC settings. Structure is documented below.
- Salesforce
Settings FeedDetails Salesforce Settings - Salesforce settings. Structure is documented below.
- Sentinelone
Alert FeedSettings Details Sentinelone Alert Settings - SentinelOne Alert settings. Structure is documented below.
- Service
Now FeedCmdb Settings Details Service Now Cmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- Sftp
Settings FeedDetails Sftp Settings - SFTP settings. Structure is documented below.
- Sts
Migration stringReadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- Symantec
Event FeedExport Settings Details Symantec Event Export Settings - Symantec Event Export settings. Structure is documented below.
- Thinkst
Canary FeedSettings Details Thinkst Canary Settings - Thinkst Canary settings. Structure is documented below.
- Threat
Connect FeedIoc Settings Details Threat Connect Ioc Settings - ThreatConnect IOC Settings. Structure is documented below.
- Threat
Connect FeedIoc V3Settings Details Threat Connect Ioc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- Trellix
Hx FeedAlerts Settings Details Trellix Hx Alerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- Trellix
Hx FeedBulk Acqs Settings Details Trellix Hx Bulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- Trellix
Hx FeedHosts Settings Details Trellix Hx Hosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- Webhook
Settings FeedDetails Webhook Settings - Settings required by Webhook Feeds(HTTP-Push).
- Workday
Settings FeedDetails Workday Settings - Workday settings. Structure is documented below.
- Workspace
Activity FeedSettings Details Workspace Activity Settings - Workspace Activity settings. Structure is documented below.
- Workspace
Alerts FeedSettings Details Workspace Alerts Settings - Workspace Alert settings. Structure is documented below.
- Workspace
Chrome FeedOs Settings Details Workspace Chrome Os Settings - Workspace Chrome OS settings. Structure is documented below.
- Workspace
Groups FeedSettings Details Workspace Groups Settings - Workspace Groups settings. Structure is documented below.
- Workspace
Mobile FeedSettings Details Workspace Mobile Settings - Workspace Mobile settings. Structure is documented below.
- Workspace
Privileges FeedSettings Details Workspace Privileges Settings - Workspace Privileges settings. Structure is documented below.
- Workspace
Users FeedSettings Details Workspace Users Settings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
- Log
Type string - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- Amazon
Kinesis FeedFirehose Settings Details Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- Amazon
S3Settings FeedDetails Amazon S3Settings - Amazon S3 settings. Structure is documented below.
- Amazon
S3V2Settings FeedDetails Amazon S3V2Settings - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- Amazon
Sqs FeedSettings Details Amazon Sqs Settings - Amazon SQS settings. Structure is documented below.
- Amazon
Sqs FeedV2Settings Details Amazon Sqs V2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- Anomali
Settings FeedDetails Anomali Settings - Anomali IOC settings. Structure is documented below.
- Asset
Namespace string - The asset namespace to apply to all logs ingested through this feed.
- Aws
Ec2Hosts FeedSettings Details Aws Ec2Hosts Settings - AWS EC2 Hosts Settings. Structure is documented below.
- Aws
Ec2Instances FeedSettings Details Aws Ec2Instances Settings - AWS EC2 Instances Settings. Structure is documented below.
- Aws
Ec2Vpcs FeedSettings Details Aws Ec2Vpcs Settings - AWS EC2 Vpcs Settings. Structure is documented below.
- Aws
Iam FeedSettings Details Aws Iam Settings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- Azure
Ad FeedAudit Settings Details Azure Ad Audit Settings - Azure AD Audit settings. Structure is documented below.
- Azure
Ad FeedContext Settings Details Azure Ad Context Settings - Azure AD Context settings. Structure is documented below.
- Azure
Ad FeedSettings Details Azure Ad Settings - Azure AD settings. Structure is documented below.
- Azure
Blob FeedStore Settings Details Azure Blob Store Settings - Azure Blob Storage settings. Structure is documented below.
- Azure
Blob FeedStore V2Settings Details Azure Blob Store V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- Azure
Event FeedHub Settings Details Azure Event Hub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- Azure
Mdm FeedIntune Settings Details Azure Mdm Intune Settings - Azure MDM Intune settings. Structure is documented below.
- Cloud
Passage FeedSettings Details Cloud Passage Settings - CloudPassage settings. Structure is documented below.
- Cortex
Xdr FeedSettings Details Cortex Xdr Settings - PAN Cortex XDR settings. Structure is documented below.
- Crowdstrike
Alerts FeedSettings Details Crowdstrike Alerts Settings - CrowdStrike Alerts settings. Structure is documented below.
- Crowdstrike
Detects FeedSettings Details Crowdstrike Detects Settings - CrowdStrike Detects settings. Structure is documented below.
- Dummy
Log FeedType Settings Details Dummy Log Type Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- Duo
Auth FeedSettings Details Duo Auth Settings - Duo Authentication settings. Structure is documented below.
- Duo
User FeedContext Settings Details Duo User Context Settings - Duo User Context settings. Structure is documented below.
- Feed
Source stringType - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - Fox
It FeedStix Settings Details Fox It Stix Settings - Fox-IT STIX settings. Structure is documented below.
- Gcs
Settings FeedDetails Gcs Settings - Google Cloud Storage settings. Structure is documented below.
- Gcs
V2Settings FeedDetails Gcs V2Settings - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- Google
Cloud FeedIdentity Device Users Settings Details Google Cloud Identity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- Google
Cloud FeedIdentity Devices Settings Details Google Cloud Identity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- Google
Cloud FeedStorage Event Driven Settings Details Google Cloud Storage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- Http
Settings FeedDetails Http Settings - HTTP settings. Structure is documented below.
- Https
Push FeedAmazon Kinesis Firehose Settings Details Https Push Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- Https
Push FeedGoogle Cloud Pubsub Settings Details Https Push Google Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- Https
Push FeedWebhook Settings Details Https Push Webhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- Imperva
Waf FeedSettings Details Imperva Waf Settings - Imperva WAF settings. Structure is documented below.
- Labels map[string]string
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- Mandiant
Ioc FeedSettings Details Mandiant Ioc Settings - Mandiant IOC settings. Structure is documented below.
- Microsoft
Graph FeedAlert Settings Details Microsoft Graph Alert Settings - Microsoft Graph Alert settings. Structure is documented below.
- Microsoft
Security FeedCenter Alert Settings Details Microsoft Security Center Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- Mimecast
Mail FeedSettings Details Mimecast Mail Settings - Mimecast Mail settings. Structure is documented below.
- Mimecast
Mail FeedV2Settings Details Mimecast Mail V2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- Netskope
Alert FeedSettings Details Netskope Alert Settings - Netskope Alert settings. Structure is documented below.
- Netskope
Alert FeedV2Settings Details Netskope Alert V2Settings - Netskope Alert V2 settings. Structure is documented below.
- Office365Settings
Feed
Details Office365Settings - Office 365 settings. Structure is documented below.
- Okta
Settings FeedDetails Okta Settings - Okta settings. Structure is documented below.
- Okta
User FeedContext Settings Details Okta User Context Settings - Okta user context settings. Structure is documented below.
- Pan
Ioc FeedSettings Details Pan Ioc Settings - PAN IOC settings. Structure is documented below.
- Pan
Prisma FeedCloud Settings Details Pan Prisma Cloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- Proofpoint
Mail FeedSettings Details Proofpoint Mail Settings - Proofpoint Mail settings. Structure is documented below.
- Proofpoint
On FeedDemand Settings Details Proofpoint On Demand Settings - Proofpoint On-demand settings. Structure is documented below.
- Pubsub
Settings FeedDetails Pubsub Settings - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- Qualys
Scan FeedSettings Details Qualys Scan Settings - Qualys Scan settings. Structure is documented below.
- Qualys
Vm FeedSettings Details Qualys Vm Settings - Qualys VM settings. Structure is documented below.
- Rapid7Insight
Settings FeedDetails Rapid7Insight Settings - Rapid7 Insight settings. Structure is documented below.
- Recorded
Future FeedIoc Settings Details Recorded Future Ioc Settings - Recorded Future IOC settings. Structure is documented below.
- Rh
Isac FeedIoc Settings Details Rh Isac Ioc Settings - RH-ISAC settings. Structure is documented below.
- Salesforce
Settings FeedDetails Salesforce Settings - Salesforce settings. Structure is documented below.
- Sentinelone
Alert FeedSettings Details Sentinelone Alert Settings - SentinelOne Alert settings. Structure is documented below.
- Service
Now FeedCmdb Settings Details Service Now Cmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- Sftp
Settings FeedDetails Sftp Settings - SFTP settings. Structure is documented below.
- Sts
Migration stringReadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- Symantec
Event FeedExport Settings Details Symantec Event Export Settings - Symantec Event Export settings. Structure is documented below.
- Thinkst
Canary FeedSettings Details Thinkst Canary Settings - Thinkst Canary settings. Structure is documented below.
- Threat
Connect FeedIoc Settings Details Threat Connect Ioc Settings - ThreatConnect IOC Settings. Structure is documented below.
- Threat
Connect FeedIoc V3Settings Details Threat Connect Ioc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- Trellix
Hx FeedAlerts Settings Details Trellix Hx Alerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- Trellix
Hx FeedBulk Acqs Settings Details Trellix Hx Bulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- Trellix
Hx FeedHosts Settings Details Trellix Hx Hosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- Webhook
Settings FeedDetails Webhook Settings - Settings required by Webhook Feeds(HTTP-Push).
- Workday
Settings FeedDetails Workday Settings - Workday settings. Structure is documented below.
- Workspace
Activity FeedSettings Details Workspace Activity Settings - Workspace Activity settings. Structure is documented below.
- Workspace
Alerts FeedSettings Details Workspace Alerts Settings - Workspace Alert settings. Structure is documented below.
- Workspace
Chrome FeedOs Settings Details Workspace Chrome Os Settings - Workspace Chrome OS settings. Structure is documented below.
- Workspace
Groups FeedSettings Details Workspace Groups Settings - Workspace Groups settings. Structure is documented below.
- Workspace
Mobile FeedSettings Details Workspace Mobile Settings - Workspace Mobile settings. Structure is documented below.
- Workspace
Privileges FeedSettings Details Workspace Privileges Settings - Workspace Privileges settings. Structure is documented below.
- Workspace
Users FeedSettings Details Workspace Users Settings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
- log
Type String - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- amazon
Kinesis FeedFirehose Settings Details Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- amazon
S3Settings FeedDetails Amazon S3Settings - Amazon S3 settings. Structure is documented below.
- amazon
S3V2Settings FeedDetails Amazon S3V2Settings - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- amazon
Sqs FeedSettings Details Amazon Sqs Settings - Amazon SQS settings. Structure is documented below.
- amazon
Sqs FeedV2Settings Details Amazon Sqs V2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- anomali
Settings FeedDetails Anomali Settings - Anomali IOC settings. Structure is documented below.
- asset
Namespace String - The asset namespace to apply to all logs ingested through this feed.
- aws
Ec2Hosts FeedSettings Details Aws Ec2Hosts Settings - AWS EC2 Hosts Settings. Structure is documented below.
- aws
Ec2Instances FeedSettings Details Aws Ec2Instances Settings - AWS EC2 Instances Settings. Structure is documented below.
- aws
Ec2Vpcs FeedSettings Details Aws Ec2Vpcs Settings - AWS EC2 Vpcs Settings. Structure is documented below.
- aws
Iam FeedSettings Details Aws Iam Settings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- azure
Ad FeedAudit Settings Details Azure Ad Audit Settings - Azure AD Audit settings. Structure is documented below.
- azure
Ad FeedContext Settings Details Azure Ad Context Settings - Azure AD Context settings. Structure is documented below.
- azure
Ad FeedSettings Details Azure Ad Settings - Azure AD settings. Structure is documented below.
- azure
Blob FeedStore Settings Details Azure Blob Store Settings - Azure Blob Storage settings. Structure is documented below.
- azure
Blob FeedStore V2Settings Details Azure Blob Store V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- azure
Event FeedHub Settings Details Azure Event Hub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- azure
Mdm FeedIntune Settings Details Azure Mdm Intune Settings - Azure MDM Intune settings. Structure is documented below.
- cloud
Passage FeedSettings Details Cloud Passage Settings - CloudPassage settings. Structure is documented below.
- cortex
Xdr FeedSettings Details Cortex Xdr Settings - PAN Cortex XDR settings. Structure is documented below.
- crowdstrike
Alerts FeedSettings Details Crowdstrike Alerts Settings - CrowdStrike Alerts settings. Structure is documented below.
- crowdstrike
Detects FeedSettings Details Crowdstrike Detects Settings - CrowdStrike Detects settings. Structure is documented below.
- dummy
Log FeedType Settings Details Dummy Log Type Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- duo
Auth FeedSettings Details Duo Auth Settings - Duo Authentication settings. Structure is documented below.
- duo
User FeedContext Settings Details Duo User Context Settings - Duo User Context settings. Structure is documented below.
- feed
Source StringType - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - fox
It FeedStix Settings Details Fox It Stix Settings - Fox-IT STIX settings. Structure is documented below.
- gcs
Settings FeedDetails Gcs Settings - Google Cloud Storage settings. Structure is documented below.
- gcs
V2Settings FeedDetails Gcs V2Settings - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- google
Cloud FeedIdentity Device Users Settings Details Google Cloud Identity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- google
Cloud FeedIdentity Devices Settings Details Google Cloud Identity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- google
Cloud FeedStorage Event Driven Settings Details Google Cloud Storage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- http
Settings FeedDetails Http Settings - HTTP settings. Structure is documented below.
- https
Push FeedAmazon Kinesis Firehose Settings Details Https Push Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push FeedGoogle Cloud Pubsub Settings Details Https Push Google Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push FeedWebhook Settings Details Https Push Webhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- imperva
Waf FeedSettings Details Imperva Waf Settings - Imperva WAF settings. Structure is documented below.
- labels Map<String,String>
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- mandiant
Ioc FeedSettings Details Mandiant Ioc Settings - Mandiant IOC settings. Structure is documented below.
- microsoft
Graph FeedAlert Settings Details Microsoft Graph Alert Settings - Microsoft Graph Alert settings. Structure is documented below.
- microsoft
Security FeedCenter Alert Settings Details Microsoft Security Center Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- mimecast
Mail FeedSettings Details Mimecast Mail Settings - Mimecast Mail settings. Structure is documented below.
- mimecast
Mail FeedV2Settings Details Mimecast Mail V2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- netskope
Alert FeedSettings Details Netskope Alert Settings - Netskope Alert settings. Structure is documented below.
- netskope
Alert FeedV2Settings Details Netskope Alert V2Settings - Netskope Alert V2 settings. Structure is documented below.
- office365Settings
Feed
Details Office365Settings - Office 365 settings. Structure is documented below.
- okta
Settings FeedDetails Okta Settings - Okta settings. Structure is documented below.
- okta
User FeedContext Settings Details Okta User Context Settings - Okta user context settings. Structure is documented below.
- pan
Ioc FeedSettings Details Pan Ioc Settings - PAN IOC settings. Structure is documented below.
- pan
Prisma FeedCloud Settings Details Pan Prisma Cloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- proofpoint
Mail FeedSettings Details Proofpoint Mail Settings - Proofpoint Mail settings. Structure is documented below.
- proofpoint
On FeedDemand Settings Details Proofpoint On Demand Settings - Proofpoint On-demand settings. Structure is documented below.
- pubsub
Settings FeedDetails Pubsub Settings - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- qualys
Scan FeedSettings Details Qualys Scan Settings - Qualys Scan settings. Structure is documented below.
- qualys
Vm FeedSettings Details Qualys Vm Settings - Qualys VM settings. Structure is documented below.
- rapid7Insight
Settings FeedDetails Rapid7Insight Settings - Rapid7 Insight settings. Structure is documented below.
- recorded
Future FeedIoc Settings Details Recorded Future Ioc Settings - Recorded Future IOC settings. Structure is documented below.
- rh
Isac FeedIoc Settings Details Rh Isac Ioc Settings - RH-ISAC settings. Structure is documented below.
- salesforce
Settings FeedDetails Salesforce Settings - Salesforce settings. Structure is documented below.
- sentinelone
Alert FeedSettings Details Sentinelone Alert Settings - SentinelOne Alert settings. Structure is documented below.
- service
Now FeedCmdb Settings Details Service Now Cmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- sftp
Settings FeedDetails Sftp Settings - SFTP settings. Structure is documented below.
- sts
Migration StringReadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- symantec
Event FeedExport Settings Details Symantec Event Export Settings - Symantec Event Export settings. Structure is documented below.
- thinkst
Canary FeedSettings Details Thinkst Canary Settings - Thinkst Canary settings. Structure is documented below.
- threat
Connect FeedIoc Settings Details Threat Connect Ioc Settings - ThreatConnect IOC Settings. Structure is documented below.
- threat
Connect FeedIoc V3Settings Details Threat Connect Ioc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- trellix
Hx FeedAlerts Settings Details Trellix Hx Alerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- trellix
Hx FeedBulk Acqs Settings Details Trellix Hx Bulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- trellix
Hx FeedHosts Settings Details Trellix Hx Hosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- webhook
Settings FeedDetails Webhook Settings - Settings required by Webhook Feeds(HTTP-Push).
- workday
Settings FeedDetails Workday Settings - Workday settings. Structure is documented below.
- workspace
Activity FeedSettings Details Workspace Activity Settings - Workspace Activity settings. Structure is documented below.
- workspace
Alerts FeedSettings Details Workspace Alerts Settings - Workspace Alert settings. Structure is documented below.
- workspace
Chrome FeedOs Settings Details Workspace Chrome Os Settings - Workspace Chrome OS settings. Structure is documented below.
- workspace
Groups FeedSettings Details Workspace Groups Settings - Workspace Groups settings. Structure is documented below.
- workspace
Mobile FeedSettings Details Workspace Mobile Settings - Workspace Mobile settings. Structure is documented below.
- workspace
Privileges FeedSettings Details Workspace Privileges Settings - Workspace Privileges settings. Structure is documented below.
- workspace
Users FeedSettings Details Workspace Users Settings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
- log
Type string - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- amazon
Kinesis FeedFirehose Settings Details Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- amazon
S3Settings FeedDetails Amazon S3Settings - Amazon S3 settings. Structure is documented below.
- amazon
S3V2Settings FeedDetails Amazon S3V2Settings - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- amazon
Sqs FeedSettings Details Amazon Sqs Settings - Amazon SQS settings. Structure is documented below.
- amazon
Sqs FeedV2Settings Details Amazon Sqs V2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- anomali
Settings FeedDetails Anomali Settings - Anomali IOC settings. Structure is documented below.
- asset
Namespace string - The asset namespace to apply to all logs ingested through this feed.
- aws
Ec2Hosts FeedSettings Details Aws Ec2Hosts Settings - AWS EC2 Hosts Settings. Structure is documented below.
- aws
Ec2Instances FeedSettings Details Aws Ec2Instances Settings - AWS EC2 Instances Settings. Structure is documented below.
- aws
Ec2Vpcs FeedSettings Details Aws Ec2Vpcs Settings - AWS EC2 Vpcs Settings. Structure is documented below.
- aws
Iam FeedSettings Details Aws Iam Settings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- azure
Ad FeedAudit Settings Details Azure Ad Audit Settings - Azure AD Audit settings. Structure is documented below.
- azure
Ad FeedContext Settings Details Azure Ad Context Settings - Azure AD Context settings. Structure is documented below.
- azure
Ad FeedSettings Details Azure Ad Settings - Azure AD settings. Structure is documented below.
- azure
Blob FeedStore Settings Details Azure Blob Store Settings - Azure Blob Storage settings. Structure is documented below.
- azure
Blob FeedStore V2Settings Details Azure Blob Store V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- azure
Event FeedHub Settings Details Azure Event Hub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- azure
Mdm FeedIntune Settings Details Azure Mdm Intune Settings - Azure MDM Intune settings. Structure is documented below.
- cloud
Passage FeedSettings Details Cloud Passage Settings - CloudPassage settings. Structure is documented below.
- cortex
Xdr FeedSettings Details Cortex Xdr Settings - PAN Cortex XDR settings. Structure is documented below.
- crowdstrike
Alerts FeedSettings Details Crowdstrike Alerts Settings - CrowdStrike Alerts settings. Structure is documented below.
- crowdstrike
Detects FeedSettings Details Crowdstrike Detects Settings - CrowdStrike Detects settings. Structure is documented below.
- dummy
Log FeedType Settings Details Dummy Log Type Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- duo
Auth FeedSettings Details Duo Auth Settings - Duo Authentication settings. Structure is documented below.
- duo
User FeedContext Settings Details Duo User Context Settings - Duo User Context settings. Structure is documented below.
- feed
Source stringType - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - fox
It FeedStix Settings Details Fox It Stix Settings - Fox-IT STIX settings. Structure is documented below.
- gcs
Settings FeedDetails Gcs Settings - Google Cloud Storage settings. Structure is documented below.
- gcs
V2Settings FeedDetails Gcs V2Settings - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- google
Cloud FeedIdentity Device Users Settings Details Google Cloud Identity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- google
Cloud FeedIdentity Devices Settings Details Google Cloud Identity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- google
Cloud FeedStorage Event Driven Settings Details Google Cloud Storage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- http
Settings FeedDetails Http Settings - HTTP settings. Structure is documented below.
- https
Push FeedAmazon Kinesis Firehose Settings Details Https Push Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push FeedGoogle Cloud Pubsub Settings Details Https Push Google Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push FeedWebhook Settings Details Https Push Webhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- imperva
Waf FeedSettings Details Imperva Waf Settings - Imperva WAF settings. Structure is documented below.
- labels {[key: string]: string}
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- mandiant
Ioc FeedSettings Details Mandiant Ioc Settings - Mandiant IOC settings. Structure is documented below.
- microsoft
Graph FeedAlert Settings Details Microsoft Graph Alert Settings - Microsoft Graph Alert settings. Structure is documented below.
- microsoft
Security FeedCenter Alert Settings Details Microsoft Security Center Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- mimecast
Mail FeedSettings Details Mimecast Mail Settings - Mimecast Mail settings. Structure is documented below.
- mimecast
Mail FeedV2Settings Details Mimecast Mail V2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- netskope
Alert FeedSettings Details Netskope Alert Settings - Netskope Alert settings. Structure is documented below.
- netskope
Alert FeedV2Settings Details Netskope Alert V2Settings - Netskope Alert V2 settings. Structure is documented below.
- office365Settings
Feed
Details Office365Settings - Office 365 settings. Structure is documented below.
- okta
Settings FeedDetails Okta Settings - Okta settings. Structure is documented below.
- okta
User FeedContext Settings Details Okta User Context Settings - Okta user context settings. Structure is documented below.
- pan
Ioc FeedSettings Details Pan Ioc Settings - PAN IOC settings. Structure is documented below.
- pan
Prisma FeedCloud Settings Details Pan Prisma Cloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- proofpoint
Mail FeedSettings Details Proofpoint Mail Settings - Proofpoint Mail settings. Structure is documented below.
- proofpoint
On FeedDemand Settings Details Proofpoint On Demand Settings - Proofpoint On-demand settings. Structure is documented below.
- pubsub
Settings FeedDetails Pubsub Settings - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- qualys
Scan FeedSettings Details Qualys Scan Settings - Qualys Scan settings. Structure is documented below.
- qualys
Vm FeedSettings Details Qualys Vm Settings - Qualys VM settings. Structure is documented below.
- rapid7Insight
Settings FeedDetails Rapid7Insight Settings - Rapid7 Insight settings. Structure is documented below.
- recorded
Future FeedIoc Settings Details Recorded Future Ioc Settings - Recorded Future IOC settings. Structure is documented below.
- rh
Isac FeedIoc Settings Details Rh Isac Ioc Settings - RH-ISAC settings. Structure is documented below.
- salesforce
Settings FeedDetails Salesforce Settings - Salesforce settings. Structure is documented below.
- sentinelone
Alert FeedSettings Details Sentinelone Alert Settings - SentinelOne Alert settings. Structure is documented below.
- service
Now FeedCmdb Settings Details Service Now Cmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- sftp
Settings FeedDetails Sftp Settings - SFTP settings. Structure is documented below.
- sts
Migration stringReadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- symantec
Event FeedExport Settings Details Symantec Event Export Settings - Symantec Event Export settings. Structure is documented below.
- thinkst
Canary FeedSettings Details Thinkst Canary Settings - Thinkst Canary settings. Structure is documented below.
- threat
Connect FeedIoc Settings Details Threat Connect Ioc Settings - ThreatConnect IOC Settings. Structure is documented below.
- threat
Connect FeedIoc V3Settings Details Threat Connect Ioc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- trellix
Hx FeedAlerts Settings Details Trellix Hx Alerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- trellix
Hx FeedBulk Acqs Settings Details Trellix Hx Bulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- trellix
Hx FeedHosts Settings Details Trellix Hx Hosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- webhook
Settings FeedDetails Webhook Settings - Settings required by Webhook Feeds(HTTP-Push).
- workday
Settings FeedDetails Workday Settings - Workday settings. Structure is documented below.
- workspace
Activity FeedSettings Details Workspace Activity Settings - Workspace Activity settings. Structure is documented below.
- workspace
Alerts FeedSettings Details Workspace Alerts Settings - Workspace Alert settings. Structure is documented below.
- workspace
Chrome FeedOs Settings Details Workspace Chrome Os Settings - Workspace Chrome OS settings. Structure is documented below.
- workspace
Groups FeedSettings Details Workspace Groups Settings - Workspace Groups settings. Structure is documented below.
- workspace
Mobile FeedSettings Details Workspace Mobile Settings - Workspace Mobile settings. Structure is documented below.
- workspace
Privileges FeedSettings Details Workspace Privileges Settings - Workspace Privileges settings. Structure is documented below.
- workspace
Users FeedSettings Details Workspace Users Settings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
- log_
type str - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- amazon_
kinesis_ Feedfirehose_ settings Details Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- amazon_
s3_ Feedsettings Details Amazon S3Settings - Amazon S3 settings. Structure is documented below.
- amazon_
s3_ Feedv2_ settings Details Amazon S3V2Settings - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- amazon_
sqs_ Feedsettings Details Amazon Sqs Settings - Amazon SQS settings. Structure is documented below.
- amazon_
sqs_ Feedv2_ settings Details Amazon Sqs V2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- anomali_
settings FeedDetails Anomali Settings - Anomali IOC settings. Structure is documented below.
- asset_
namespace str - The asset namespace to apply to all logs ingested through this feed.
- aws_
ec2_ Feedhosts_ settings Details Aws Ec2Hosts Settings - AWS EC2 Hosts Settings. Structure is documented below.
- aws_
ec2_ Feedinstances_ settings Details Aws Ec2Instances Settings - AWS EC2 Instances Settings. Structure is documented below.
- aws_
ec2_ Feedvpcs_ settings Details Aws Ec2Vpcs Settings - AWS EC2 Vpcs Settings. Structure is documented below.
- aws_
iam_ Feedsettings Details Aws Iam Settings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- azure_
ad_ Feedaudit_ settings Details Azure Ad Audit Settings - Azure AD Audit settings. Structure is documented below.
- azure_
ad_ Feedcontext_ settings Details Azure Ad Context Settings - Azure AD Context settings. Structure is documented below.
- azure_
ad_ Feedsettings Details Azure Ad Settings - Azure AD settings. Structure is documented below.
- azure_
blob_ Feedstore_ settings Details Azure Blob Store Settings - Azure Blob Storage settings. Structure is documented below.
- azure_
blob_ Feedstore_ v2_ settings Details Azure Blob Store V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- azure_
event_ Feedhub_ settings Details Azure Event Hub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- azure_
mdm_ Feedintune_ settings Details Azure Mdm Intune Settings - Azure MDM Intune settings. Structure is documented below.
- cloud_
passage_ Feedsettings Details Cloud Passage Settings - CloudPassage settings. Structure is documented below.
- cortex_
xdr_ Feedsettings Details Cortex Xdr Settings - PAN Cortex XDR settings. Structure is documented below.
- crowdstrike_
alerts_ Feedsettings Details Crowdstrike Alerts Settings - CrowdStrike Alerts settings. Structure is documented below.
- crowdstrike_
detects_ Feedsettings Details Crowdstrike Detects Settings - CrowdStrike Detects settings. Structure is documented below.
- dummy_
log_ Feedtype_ settings Details Dummy Log Type Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- duo_
auth_ Feedsettings Details Duo Auth Settings - Duo Authentication settings. Structure is documented below.
- duo_
user_ Feedcontext_ settings Details Duo User Context Settings - Duo User Context settings. Structure is documented below.
- feed_
source_ strtype - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - fox_
it_ Feedstix_ settings Details Fox It Stix Settings - Fox-IT STIX settings. Structure is documented below.
- gcs_
settings FeedDetails Gcs Settings - Google Cloud Storage settings. Structure is documented below.
- gcs_
v2_ Feedsettings Details Gcs V2Settings - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- google_
cloud_ Feedidentity_ device_ users_ settings Details Google Cloud Identity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- google_
cloud_ Feedidentity_ devices_ settings Details Google Cloud Identity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- google_
cloud_ Feedstorage_ event_ driven_ settings Details Google Cloud Storage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- http_
settings FeedDetails Http Settings - HTTP settings. Structure is documented below.
- https_
push_ Feedamazon_ kinesis_ firehose_ settings Details Https Push Amazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- https_
push_ Feedgoogle_ cloud_ pubsub_ settings Details Https Push Google Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- https_
push_ Feedwebhook_ settings Details Https Push Webhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- imperva_
waf_ Feedsettings Details Imperva Waf Settings - Imperva WAF settings. Structure is documented below.
- labels Mapping[str, str]
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- mandiant_
ioc_ Feedsettings Details Mandiant Ioc Settings - Mandiant IOC settings. Structure is documented below.
- microsoft_
graph_ Feedalert_ settings Details Microsoft Graph Alert Settings - Microsoft Graph Alert settings. Structure is documented below.
- microsoft_
security_ Feedcenter_ alert_ settings Details Microsoft Security Center Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- mimecast_
mail_ Feedsettings Details Mimecast Mail Settings - Mimecast Mail settings. Structure is documented below.
- mimecast_
mail_ Feedv2_ settings Details Mimecast Mail V2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- netskope_
alert_ Feedsettings Details Netskope Alert Settings - Netskope Alert settings. Structure is documented below.
- netskope_
alert_ Feedv2_ settings Details Netskope Alert V2Settings - Netskope Alert V2 settings. Structure is documented below.
- office365_
settings FeedDetails Office365Settings - Office 365 settings. Structure is documented below.
- okta_
settings FeedDetails Okta Settings - Okta settings. Structure is documented below.
- okta_
user_ Feedcontext_ settings Details Okta User Context Settings - Okta user context settings. Structure is documented below.
- pan_
ioc_ Feedsettings Details Pan Ioc Settings - PAN IOC settings. Structure is documented below.
- pan_
prisma_ Feedcloud_ settings Details Pan Prisma Cloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- proofpoint_
mail_ Feedsettings Details Proofpoint Mail Settings - Proofpoint Mail settings. Structure is documented below.
- proofpoint_
on_ Feeddemand_ settings Details Proofpoint On Demand Settings - Proofpoint On-demand settings. Structure is documented below.
- pubsub_
settings FeedDetails Pubsub Settings - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- qualys_
scan_ Feedsettings Details Qualys Scan Settings - Qualys Scan settings. Structure is documented below.
- qualys_
vm_ Feedsettings Details Qualys Vm Settings - Qualys VM settings. Structure is documented below.
- rapid7_
insight_ Feedsettings Details Rapid7Insight Settings - Rapid7 Insight settings. Structure is documented below.
- recorded_
future_ Feedioc_ settings Details Recorded Future Ioc Settings - Recorded Future IOC settings. Structure is documented below.
- rh_
isac_ Feedioc_ settings Details Rh Isac Ioc Settings - RH-ISAC settings. Structure is documented below.
- salesforce_
settings FeedDetails Salesforce Settings - Salesforce settings. Structure is documented below.
- sentinelone_
alert_ Feedsettings Details Sentinelone Alert Settings - SentinelOne Alert settings. Structure is documented below.
- service_
now_ Feedcmdb_ settings Details Service Now Cmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- sftp_
settings FeedDetails Sftp Settings - SFTP settings. Structure is documented below.
- sts_
migration_ strreadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- symantec_
event_ Feedexport_ settings Details Symantec Event Export Settings - Symantec Event Export settings. Structure is documented below.
- thinkst_
canary_ Feedsettings Details Thinkst Canary Settings - Thinkst Canary settings. Structure is documented below.
- threat_
connect_ Feedioc_ settings Details Threat Connect Ioc Settings - ThreatConnect IOC Settings. Structure is documented below.
- threat_
connect_ Feedioc_ v3_ settings Details Threat Connect Ioc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- trellix_
hx_ Feedalerts_ settings Details Trellix Hx Alerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- trellix_
hx_ Feedbulk_ acqs_ settings Details Trellix Hx Bulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- trellix_
hx_ Feedhosts_ settings Details Trellix Hx Hosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- webhook_
settings FeedDetails Webhook Settings - Settings required by Webhook Feeds(HTTP-Push).
- workday_
settings FeedDetails Workday Settings - Workday settings. Structure is documented below.
- workspace_
activity_ Feedsettings Details Workspace Activity Settings - Workspace Activity settings. Structure is documented below.
- workspace_
alerts_ Feedsettings Details Workspace Alerts Settings - Workspace Alert settings. Structure is documented below.
- workspace_
chrome_ Feedos_ settings Details Workspace Chrome Os Settings - Workspace Chrome OS settings. Structure is documented below.
- workspace_
groups_ Feedsettings Details Workspace Groups Settings - Workspace Groups settings. Structure is documented below.
- workspace_
mobile_ Feedsettings Details Workspace Mobile Settings - Workspace Mobile settings. Structure is documented below.
- workspace_
privileges_ Feedsettings Details Workspace Privileges Settings - Workspace Privileges settings. Structure is documented below.
- workspace_
users_ Feedsettings Details Workspace Users Settings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
- log
Type String - LogType. Format: projects/{project}/locations/{location}/instances/{instance}/logTypes/{log_type}
- amazon
Kinesis Property MapFirehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTP-Push).
- amazon
S3Settings Property Map - Amazon S3 settings. Structure is documented below.
- amazon
S3V2Settings Property Map - AmazonS3V2Settings is the settings proto for Omniflow S3 feeds. Structure is documented below.
- amazon
Sqs Property MapSettings - Amazon SQS settings. Structure is documented below.
- amazon
Sqs Property MapV2Settings - AmazonSQSV2Settings is the settings proto for Omniflow SQS feeds. Structure is documented below.
- anomali
Settings Property Map - Anomali IOC settings. Structure is documented below.
- asset
Namespace String - The asset namespace to apply to all logs ingested through this feed.
- aws
Ec2Hosts Property MapSettings - AWS EC2 Hosts Settings. Structure is documented below.
- aws
Ec2Instances Property MapSettings - AWS EC2 Instances Settings. Structure is documented below.
- aws
Ec2Vpcs Property MapSettings - AWS EC2 Vpcs Settings. Structure is documented below.
- aws
Iam Property MapSettings - AWSIAMSettings contains details needed for creating an AWS IAM feed. Structure is documented below.
- azure
Ad Property MapAudit Settings - Azure AD Audit settings. Structure is documented below.
- azure
Ad Property MapContext Settings - Azure AD Context settings. Structure is documented below.
- azure
Ad Property MapSettings - Azure AD settings. Structure is documented below.
- azure
Blob Property MapStore Settings - Azure Blob Storage settings. Structure is documented below.
- azure
Blob Property MapStore V2Settings - AzureBlobStoreV2Settings is the settings proto for Azure Blob Storage feeds. Structure is documented below.
- azure
Event Property MapHub Settings - Settings required by Azure Event Hub Feeds. Structure is documented below.
- azure
Mdm Property MapIntune Settings - Azure MDM Intune settings. Structure is documented below.
- cloud
Passage Property MapSettings - CloudPassage settings. Structure is documented below.
- cortex
Xdr Property MapSettings - PAN Cortex XDR settings. Structure is documented below.
- crowdstrike
Alerts Property MapSettings - CrowdStrike Alerts settings. Structure is documented below.
- crowdstrike
Detects Property MapSettings - CrowdStrike Detects settings. Structure is documented below.
- dummy
Log Property MapType Settings - Settings required by Feeds of DummyLogType(used for testing purposes). Structure is documented below.
- duo
Auth Property MapSettings - Duo Authentication settings. Structure is documented below.
- duo
User Property MapContext Settings - Duo User Context settings. Structure is documented below.
- feed
Source StringType - Source Type of the feed.
Possible values:
GOOGLE_CLOUD_STORAGE
HTTP
SFTP
AMAZON_S3
AZURE_BLOBSTORE
API
AMAZON_SQS
PUBSUB
AMAZON_KINESIS_FIREHOSE
WEBHOOK
HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB
HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE
HTTPS_PUSH_WEBHOOK
AZURE_EVENT_HUB
GOOGLE_CLOUD_STORAGE_V2
AMAZON_S3_V2
AMAZON_SQS_V2
AZURE_BLOBSTORE_V2
GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN
Possible values are:
GOOGLE_CLOUD_STORAGE,HTTP,SFTP,AMAZON_S3,AZURE_BLOBSTORE,API,AMAZON_SQS,PUBSUB,AMAZON_KINESIS_FIREHOSE,WEBHOOK,HTTPS_PUSH_GOOGLE_CLOUD_PUBSUB,HTTPS_PUSH_AMAZON_KINESIS_FIREHOSE,HTTPS_PUSH_WEBHOOK,AZURE_EVENT_HUB,GOOGLE_CLOUD_STORAGE_V2,AMAZON_S3_V2,AMAZON_SQS_V2,AZURE_BLOBSTORE_V2,GOOGLE_CLOUD_STORAGE_EVENT_DRIVEN. - fox
It Property MapStix Settings - Fox-IT STIX settings. Structure is documented below.
- gcs
Settings Property Map - Google Cloud Storage settings. Structure is documented below.
- gcs
V2Settings Property Map - GoogleCloudStorageV2Settings is the settings proto for Omniflow Google Cloud Storage feeds. Structure is documented below.
- google
Cloud Property MapIdentity Device Users Settings - Google Cloud Identity Device Users settings. Structure is documented below.
- google
Cloud Property MapIdentity Devices Settings - Google Cloud Identity Devices settings. Structure is documented below.
- google
Cloud Property MapStorage Event Driven Settings - GoogleCloudStorageEventDrivenSettings is the settings proto for Omniflow Google Cloud Storage feeds driven by pubsub events. Structure is documented below.
- http
Settings Property Map - HTTP settings. Structure is documented below.
- https
Push Property MapAmazon Kinesis Firehose Settings - Settings required by Amazon Kinesis Firehose Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push Property MapGoogle Cloud Pubsub Settings - Settings required by Google Cloud Platform Pub/Sub Feeds(HTTPS-Push V2). Structure is documented below.
- https
Push Property MapWebhook Settings - Settings required by Webhook Feeds(HTTPS-Push V2). Structure is documented below.
- imperva
Waf Property MapSettings - Imperva WAF settings. Structure is documented below.
- labels Map<String>
- The ingestion metadata labels to apply to all logs ingested through this feed, and the resulting normalized data.
- mandiant
Ioc Property MapSettings - Mandiant IOC settings. Structure is documented below.
- microsoft
Graph Property MapAlert Settings - Microsoft Graph Alert settings. Structure is documented below.
- microsoft
Security Property MapCenter Alert Settings - Microsoft Security Center alert settings. Structure is documented below.
- mimecast
Mail Property MapSettings - Mimecast Mail settings. Structure is documented below.
- mimecast
Mail Property MapV2Settings - Mimecast Mail V2 Settings. Structure is documented below.
- netskope
Alert Property MapSettings - Netskope Alert settings. Structure is documented below.
- netskope
Alert Property MapV2Settings - Netskope Alert V2 settings. Structure is documented below.
- office365Settings Property Map
- Office 365 settings. Structure is documented below.
- okta
Settings Property Map - Okta settings. Structure is documented below.
- okta
User Property MapContext Settings - Okta user context settings. Structure is documented below.
- pan
Ioc Property MapSettings - PAN IOC settings. Structure is documented below.
- pan
Prisma Property MapCloud Settings - PAN Prisma Cloud settings. Structure is documented below.
- proofpoint
Mail Property MapSettings - Proofpoint Mail settings. Structure is documented below.
- proofpoint
On Property MapDemand Settings - Proofpoint On-demand settings. Structure is documented below.
- pubsub
Settings Property Map - Settings required by Google Cloud Pub/Sub Feeds(HTTP-Push). Structure is documented below.
- qualys
Scan Property MapSettings - Qualys Scan settings. Structure is documented below.
- qualys
Vm Property MapSettings - Qualys VM settings. Structure is documented below.
- rapid7Insight
Settings Property Map - Rapid7 Insight settings. Structure is documented below.
- recorded
Future Property MapIoc Settings - Recorded Future IOC settings. Structure is documented below.
- rh
Isac Property MapIoc Settings - RH-ISAC settings. Structure is documented below.
- salesforce
Settings Property Map - Salesforce settings. Structure is documented below.
- sentinelone
Alert Property MapSettings - SentinelOne Alert settings. Structure is documented below.
- service
Now Property MapCmdb Settings - ServiceNow CMDB settings. Structure is documented below.
- sftp
Settings Property Map - SFTP settings. Structure is documented below.
- sts
Migration StringReadiness - (Output) The status of the feed's migration to STS. Possible values: NOT_READY READY AUTH_RECONFIG_REQUIRED
- symantec
Event Property MapExport Settings - Symantec Event Export settings. Structure is documented below.
- thinkst
Canary Property MapSettings - Thinkst Canary settings. Structure is documented below.
- threat
Connect Property MapIoc Settings - ThreatConnect IOC Settings. Structure is documented below.
- threat
Connect Property MapIoc V3Settings - ThreatConnectIoCV3Settings Structure is documented below.
- trellix
Hx Property MapAlerts Settings - Settings required by Feeds of TrellixHxAlerts. Structure is documented below.
- trellix
Hx Property MapBulk Acqs Settings - Settings required by Feeds of TrellixHxBulkAcqs. Structure is documented below.
- trellix
Hx Property MapHosts Settings - Settings required by Feeds of TrellixHxHosts. Structure is documented below.
- webhook
Settings Property Map - Settings required by Webhook Feeds(HTTP-Push).
- workday
Settings Property Map - Workday settings. Structure is documented below.
- workspace
Activity Property MapSettings - Workspace Activity settings. Structure is documented below.
- workspace
Alerts Property MapSettings - Workspace Alert settings. Structure is documented below.
- workspace
Chrome Property MapOs Settings - Workspace Chrome OS settings. Structure is documented below.
- workspace
Groups Property MapSettings - Workspace Groups settings. Structure is documented below.
- workspace
Mobile Property MapSettings - Workspace Mobile settings. Structure is documented below.
- workspace
Privileges Property MapSettings - Workspace Privileges settings. Structure is documented below.
- workspace
Users Property MapSettings Workspace Users settings. Structure is documented below.
The
amazonS3Settingsblock supports:
FeedDetailsAmazonS3Settings, FeedDetailsAmazonS3SettingsArgs
- S3Uri string
- S3 URI.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Authentication
Feed
Details Amazon S3Settings Authentication - Amazon S3 auth.
- S3Uri string
- S3 URI.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Authentication
Feed
Details Amazon S3Settings Authentication - Amazon S3 auth.
- s3Uri String
- S3 URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Amazon S3Settings Authentication - Amazon S3 auth.
- s3Uri string
- S3 URI.
- source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Amazon S3Settings Authentication - Amazon S3 auth.
- s3_
uri str - S3 URI.
- source_
deletion_ stroption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source_
type str - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Amazon S3Settings Authentication - Amazon S3 auth.
- s3Uri String
- S3 URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication Property Map
- Amazon S3 auth.
FeedDetailsAmazonS3SettingsAuthentication, FeedDetailsAmazonS3SettingsAuthenticationArgs
- Region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- Access
Key stringId - Access key ID.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Uri string - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- Secret
Access stringKey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
- Region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- Access
Key stringId - Access key ID.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Uri string - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- Secret
Access stringKey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
- region String
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- access
Key StringId - Access key ID.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Uri String - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- secret
Access StringKey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
- region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- access
Key stringId - Access key ID.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Uri string - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- secret
Access stringKey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
- region str
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- access_
key_ strid - Access key ID.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh_
uri str - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- secret_
access_ strkey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
- region String
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- access
Key StringId - Access key ID.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Uri String - Refresh URI. Used when using OAuth auth. Note: This property is sensitive and will not be displayed in the plan.
- secret
Access StringKey - Secret access key. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsAmazonS3V2Settings, FeedDetailsAmazonS3V2SettingsArgs
- Authentication
Feed
Details Amazon S3V2Settings Authentication - A message containing fields used to authenticate with Amazon S3.
- S3Uri string
- S3 URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Authentication
Feed
Details Amazon S3V2Settings Authentication - A message containing fields used to authenticate with Amazon S3.
- S3Uri string
- S3 URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon S3V2Settings Authentication - A message containing fields used to authenticate with Amazon S3.
- s3Uri String
- S3 URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback IntegerDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon S3V2Settings Authentication - A message containing fields used to authenticate with Amazon S3.
- s3Uri string
- S3 URI.
- chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback numberDays - Maximum File Age to ingest in days.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon S3V2Settings Authentication - A message containing fields used to authenticate with Amazon S3.
- s3_
uri str - S3 URI.
- chronicle_
service_ straccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max_
lookback_ intdays - Maximum File Age to ingest in days.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- authentication Property Map
- A message containing fields used to authenticate with Amazon S3.
- s3Uri String
- S3 URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback NumberDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
FeedDetailsAmazonS3V2SettingsAuthentication, FeedDetailsAmazonS3V2SettingsAuthenticationArgs
- Access
Key FeedSecret Auth Details Amazon S3V2Settings Authentication Access Key Secret Auth - S3 V2 access key and secret auth. Structure is documented below.
- Aws
Iam FeedRole Auth Details Amazon S3V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- Access
Key FeedSecret Auth Details Amazon S3V2Settings Authentication Access Key Secret Auth - S3 V2 access key and secret auth. Structure is documented below.
- Aws
Iam FeedRole Auth Details Amazon S3V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- access
Key FeedSecret Auth Details Amazon S3V2Settings Authentication Access Key Secret Auth - S3 V2 access key and secret auth. Structure is documented below.
- aws
Iam FeedRole Auth Details Amazon S3V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- access
Key FeedSecret Auth Details Amazon S3V2Settings Authentication Access Key Secret Auth - S3 V2 access key and secret auth. Structure is documented below.
- aws
Iam FeedRole Auth Details Amazon S3V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- access_
key_ Feedsecret_ auth Details Amazon S3V2Settings Authentication Access Key Secret Auth - S3 V2 access key and secret auth. Structure is documented below.
- aws_
iam_ Feedrole_ auth Details Amazon S3V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- access
Key Property MapSecret Auth - S3 V2 access key and secret auth. Structure is documented below.
- aws
Iam Property MapRole Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
FeedDetailsAmazonS3V2SettingsAuthenticationAccessKeySecretAuth, FeedDetailsAmazonS3V2SettingsAuthenticationAccessKeySecretAuthArgs
- Access
Key stringId - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- Secret
Access stringKey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
- Access
Key stringId - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- Secret
Access stringKey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
- access
Key StringId - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- secret
Access StringKey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
- access
Key stringId - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- secret
Access stringKey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
- access_
key_ strid - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- secret_
access_ strkey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
- access
Key StringId - Access Key ID for an AWS account (a 20-character, alphanumeric string).
- secret
Access StringKey - Secret Access Key for an AWS account (a 40-character string). Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsAmazonS3V2SettingsAuthenticationAwsIamRoleAuth, FeedDetailsAmazonS3V2SettingsAuthenticationAwsIamRoleAuthArgs
- Aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- Subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- Aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- Subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam StringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id String Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws_
iam_ strrole_ arn - AWS IAM Role for Identity Federation.
- subject_
id str Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam StringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id String Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
FeedDetailsAmazonSqsSettings, FeedDetailsAmazonSqsSettingsArgs
- Account
Number string - Account number of the owner of the queue.
- Authentication
Feed
Details Amazon Sqs Settings Authentication - Amazon SQS auth. Structure is documented below.
- Queue string
- Name of the queue.
- Region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Account
Number string - Account number of the owner of the queue.
- Authentication
Feed
Details Amazon Sqs Settings Authentication - Amazon SQS auth. Structure is documented below.
- Queue string
- Name of the queue.
- Region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- account
Number String - Account number of the owner of the queue.
- authentication
Feed
Details Amazon Sqs Settings Authentication - Amazon SQS auth. Structure is documented below.
- queue String
- Name of the queue.
- region String
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- account
Number string - Account number of the owner of the queue.
- authentication
Feed
Details Amazon Sqs Settings Authentication - Amazon SQS auth. Structure is documented below.
- queue string
- Name of the queue.
- region string
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- account_
number str - Account number of the owner of the queue.
- authentication
Feed
Details Amazon Sqs Settings Authentication - Amazon SQS auth. Structure is documented below.
- queue str
- Name of the queue.
- region str
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- source_
deletion_ stroption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- account
Number String - Account number of the owner of the queue.
- authentication Property Map
- Amazon SQS auth. Structure is documented below.
- queue String
- Name of the queue.
- region String
- Possible values: US_EAST_1 US_EAST_2 US_WEST_1 US_WEST_2 US_GOV_CLOUD US_GOV_EAST_1 EU_WEST_1 EU_WEST_2 EU_WEST_3 EU_CENTRAL_1 EU_NORTH_1 EU_SOUTH_1 AP_SOUTH_1 AP_SOUTHEAST_1 AP_SOUTHEAST_2 AP_SOUTHEAST_3 AP_NORTHEAST_1 AP_NORTHEAST_2 AP_NORTHEAST_3 AP_EAST_1 SA_EAST_1 CN_NORTH_1 CN_NORTHWEST_1 CA_CENTRAL_1 AF_SOUTH_1 ME_SOUTH_1 AP_SOUTH_2 AP_SOUTHEAST_4 CA_WEST_1 EU_SOUTH_2 EU_CENTRAL_2 IL_CENTRAL_1 ME_CENTRAL_1
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
FeedDetailsAmazonSqsSettingsAuthentication, FeedDetailsAmazonSqsSettingsAuthenticationArgs
- Additional
S3Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Additional S3Access Key Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- Sqs
Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Sqs Access Key Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
- Additional
S3Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Additional S3Access Key Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- Sqs
Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Sqs Access Key Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
- additional
S3Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Additional S3Access Key Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- sqs
Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Sqs Access Key Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
- additional
S3Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Additional S3Access Key Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- sqs
Access FeedKey Secret Auth Details Amazon Sqs Settings Authentication Sqs Access Key Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
- additional_
s3_ Feedaccess_ key_ secret_ auth Details Amazon Sqs Settings Authentication Additional S3Access Key Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- sqs_
access_ Feedkey_ secret_ auth Details Amazon Sqs Settings Authentication Sqs Access Key Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
- additional
S3Access Property MapKey Secret Auth - Additional S3 access key secret auth. Structure is documented below.
- sqs
Access Property MapKey Secret Auth Amazon SQS access key and secret auth. Structure is documented below.
The
additionalS3AccessKeySecretAuthblock supports:
FeedDetailsAmazonSqsSettingsAuthenticationAdditionalS3AccessKeySecretAuth, FeedDetailsAmazonSqsSettingsAuthenticationAdditionalS3AccessKeySecretAuthArgs
- Access
Key stringId - Access key ID.
- Secret
Access stringKey - Secret access key.
- Access
Key stringId - Access key ID.
- Secret
Access stringKey - Secret access key.
- access
Key StringId - Access key ID.
- secret
Access StringKey - Secret access key.
- access
Key stringId - Access key ID.
- secret
Access stringKey - Secret access key.
- access_
key_ strid - Access key ID.
- secret_
access_ strkey - Secret access key.
- access
Key StringId - Access key ID.
- secret
Access StringKey - Secret access key.
FeedDetailsAmazonSqsSettingsAuthenticationSqsAccessKeySecretAuth, FeedDetailsAmazonSqsSettingsAuthenticationSqsAccessKeySecretAuthArgs
- Access
Key stringId - Access key ID.
- Secret
Access stringKey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
- Access
Key stringId - Access key ID.
- Secret
Access stringKey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
- access
Key StringId - Access key ID.
- secret
Access StringKey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
- access
Key stringId - Access key ID.
- secret
Access stringKey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
- access_
key_ strid - Access key ID.
- secret_
access_ strkey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
- access
Key StringId - Access key ID.
- secret
Access StringKey Secret access key. Note: This property is sensitive and will not be displayed in the plan.
The
amazonSqsV2Settingsblock supports:
FeedDetailsAmazonSqsV2Settings, FeedDetailsAmazonSqsV2SettingsArgs
- Authentication
Feed
Details Amazon Sqs V2Settings Authentication - A message containing fields used to authenticate with Amazon SQS.
- Queue string
- Amazon Resource Name(ARN) of the queue.
- S3Uri string
- S3 URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Authentication
Feed
Details Amazon Sqs V2Settings Authentication - A message containing fields used to authenticate with Amazon SQS.
- Queue string
- Amazon Resource Name(ARN) of the queue.
- S3Uri string
- S3 URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon Sqs V2Settings Authentication - A message containing fields used to authenticate with Amazon SQS.
- queue String
- Amazon Resource Name(ARN) of the queue.
- s3Uri String
- S3 URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback IntegerDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon Sqs V2Settings Authentication - A message containing fields used to authenticate with Amazon SQS.
- queue string
- Amazon Resource Name(ARN) of the queue.
- s3Uri string
- S3 URI.
- chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback numberDays - Maximum File Age to ingest in days.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Amazon Sqs V2Settings Authentication - A message containing fields used to authenticate with Amazon SQS.
- queue str
- Amazon Resource Name(ARN) of the queue.
- s3_
uri str - S3 URI.
- chronicle_
service_ straccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max_
lookback_ intdays - Maximum File Age to ingest in days.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- authentication Property Map
- A message containing fields used to authenticate with Amazon SQS.
- queue String
- Amazon Resource Name(ARN) of the queue.
- s3Uri String
- S3 URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback NumberDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
FeedDetailsAmazonSqsV2SettingsAuthentication, FeedDetailsAmazonSqsV2SettingsAuthenticationArgs
- Aws
Iam FeedRole Auth Details Amazon Sqs V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- Sqs
V2Access FeedKey Secret Auth Details Amazon Sqs V2Settings Authentication Sqs V2Access Key Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
- Aws
Iam FeedRole Auth Details Amazon Sqs V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- Sqs
V2Access FeedKey Secret Auth Details Amazon Sqs V2Settings Authentication Sqs V2Access Key Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
- aws
Iam FeedRole Auth Details Amazon Sqs V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- sqs
V2Access FeedKey Secret Auth Details Amazon Sqs V2Settings Authentication Sqs V2Access Key Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
- aws
Iam FeedRole Auth Details Amazon Sqs V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- sqs
V2Access FeedKey Secret Auth Details Amazon Sqs V2Settings Authentication Sqs V2Access Key Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
- aws_
iam_ Feedrole_ auth Details Amazon Sqs V2Settings Authentication Aws Iam Role Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- sqs_
v2_ Feedaccess_ key_ secret_ auth Details Amazon Sqs V2Settings Authentication Sqs V2Access Key Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
- aws
Iam Property MapRole Auth - AWS IAM Role Auth for SQS V2. Structure is documented below.
- sqs
V2Access Property MapKey Secret Auth - SQS V2 access key and secret auth. Structure is documented below.
FeedDetailsAmazonSqsV2SettingsAuthenticationAwsIamRoleAuth, FeedDetailsAmazonSqsV2SettingsAuthenticationAwsIamRoleAuthArgs
- Aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- Subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- Aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- Subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam StringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id String Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam stringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id string Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws_
iam_ strrole_ arn - AWS IAM Role for Identity Federation.
- subject_
id str Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
- aws
Iam StringRole Arn - AWS IAM Role for Identity Federation.
- subject
Id String Subject ID to use for SQS.
The
sqsV2AccessKeySecretAuthblock supports:
FeedDetailsAmazonSqsV2SettingsAuthenticationSqsV2AccessKeySecretAuth, FeedDetailsAmazonSqsV2SettingsAuthenticationSqsV2AccessKeySecretAuthArgs
- Access
Key stringId - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- Secret
Access stringKey - Secret access key to access the S3 bucket.
- Access
Key stringId - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- Secret
Access stringKey - Secret access key to access the S3 bucket.
- access
Key StringId - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- secret
Access StringKey - Secret access key to access the S3 bucket.
- access
Key stringId - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- secret
Access stringKey - Secret access key to access the S3 bucket.
- access_
key_ strid - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- secret_
access_ strkey - Secret access key to access the S3 bucket.
- access
Key StringId - Access key ID of the S3 bucket. Ex: AKIABCDEFGHIJKL.
- secret
Access StringKey - Secret access key to access the S3 bucket.
FeedDetailsAnomaliSettings, FeedDetailsAnomaliSettingsArgs
- Authentication
Feed
Details Anomali Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Authentication
Feed
Details Anomali Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Anomali Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Anomali Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Anomali Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
FeedDetailsAnomaliSettingsAuthentication, FeedDetailsAnomaliSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsAwsEc2HostsSettings, FeedDetailsAwsEc2HostsSettingsArgs
- Authentication
Feed
Details Aws Ec2Hosts Settings Authentication - Info for username and secret based authentication.
- Authentication
Feed
Details Aws Ec2Hosts Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Hosts Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Hosts Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Hosts Settings Authentication - Info for username and secret based authentication.
- authentication Property Map
- Info for username and secret based authentication.
FeedDetailsAwsEc2HostsSettingsAuthentication, FeedDetailsAwsEc2HostsSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsAwsEc2InstancesSettings, FeedDetailsAwsEc2InstancesSettingsArgs
- Authentication
Feed
Details Aws Ec2Instances Settings Authentication - Info for username and secret based authentication.
- Authentication
Feed
Details Aws Ec2Instances Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Instances Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Instances Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Instances Settings Authentication - Info for username and secret based authentication.
- authentication Property Map
- Info for username and secret based authentication.
FeedDetailsAwsEc2InstancesSettingsAuthentication, FeedDetailsAwsEc2InstancesSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsAwsEc2VpcsSettings, FeedDetailsAwsEc2VpcsSettingsArgs
- Authentication
Feed
Details Aws Ec2Vpcs Settings Authentication - Info for username and secret based authentication.
- Authentication
Feed
Details Aws Ec2Vpcs Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Vpcs Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Vpcs Settings Authentication - Info for username and secret based authentication.
- authentication
Feed
Details Aws Ec2Vpcs Settings Authentication - Info for username and secret based authentication.
- authentication Property Map
- Info for username and secret based authentication.
FeedDetailsAwsEc2VpcsSettingsAuthentication, FeedDetailsAwsEc2VpcsSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsAwsIamSettings, FeedDetailsAwsIamSettingsArgs
- Api
Type string - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- Authentication
Feed
Details Aws Iam Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Api
Type string - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- Authentication
Feed
Details Aws Iam Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- api
Type String - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- authentication
Feed
Details Aws Iam Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- api
Type string - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- authentication
Feed
Details Aws Iam Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- api_
type str - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- authentication
Feed
Details Aws Iam Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- api
Type String - Supported AWS IAM api type. Possible values: USERS ROLES GROUPS
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
FeedDetailsAwsIamSettingsAuthentication, FeedDetailsAwsIamSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsAzureAdAuditSettings, FeedDetailsAzureAdAuditSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Audit Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Audit Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Audit Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Audit Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Audit Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsAzureAdAuditSettingsAuthentication, FeedDetailsAzureAdAuditSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsAzureAdContextSettings, FeedDetailsAzureAdContextSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Context Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Retrieve
Devices bool - Whether to retrieve device information in user context.
- Retrieve
Groups bool - Whether to retrieve group information in user context.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Context Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Retrieve
Devices bool - Whether to retrieve device information in user context.
- Retrieve
Groups bool - Whether to retrieve group information in user context.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Context Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- retrieve
Devices Boolean - Whether to retrieve device information in user context.
- retrieve
Groups Boolean - Whether to retrieve group information in user context.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Context Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- retrieve
Devices boolean - Whether to retrieve device information in user context.
- retrieve
Groups boolean - Whether to retrieve group information in user context.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Context Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- retrieve_
devices bool - Whether to retrieve device information in user context.
- retrieve_
groups bool - Whether to retrieve group information in user context.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- retrieve
Devices Boolean - Whether to retrieve device information in user context.
- retrieve
Groups Boolean - Whether to retrieve group information in user context.
- tenant
Id String - Tenant ID.
FeedDetailsAzureAdContextSettingsAuthentication, FeedDetailsAzureAdContextSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsAzureAdSettings, FeedDetailsAzureAdSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Ad Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Azure Ad Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsAzureAdSettingsAuthentication, FeedDetailsAzureAdSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsAzureBlobStoreSettings, FeedDetailsAzureBlobStoreSettingsArgs
- Authentication
Feed
Details Azure Blob Store Settings Authentication - Azure auth. Structure is documented below.
- Azure
Uri string - Azure URI.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Authentication
Feed
Details Azure Blob Store Settings Authentication - Azure auth. Structure is documented below.
- Azure
Uri string - Azure URI.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Azure Blob Store Settings Authentication - Azure auth. Structure is documented below.
- azure
Uri String - Azure URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Azure Blob Store Settings Authentication - Azure auth. Structure is documented below.
- azure
Uri string - Azure URI.
- source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication
Feed
Details Azure Blob Store Settings Authentication - Azure auth. Structure is documented below.
- azure_
uri str - Azure URI.
- source_
deletion_ stroption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source_
type str - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- authentication Property Map
- Azure auth. Structure is documented below.
- azure
Uri String - Azure URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
FeedDetailsAzureBlobStoreSettingsAuthentication, FeedDetailsAzureBlobStoreSettingsAuthenticationArgs
- Sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- string
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
- Sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- string
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
- sas
Token String SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- String
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
- sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- string
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
- sas_
token str SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- str
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
- sas
Token String SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:- String
Shared Key. Note: This property is sensitive and will not be displayed in the plan.
The
azureBlobStoreV2Settingsblock supports:
FeedDetailsAzureBlobStoreV2Settings, FeedDetailsAzureBlobStoreV2SettingsArgs
- Authentication
Feed
Details Azure Blob Store V2Settings Authentication - A message containing fields used to authenticate with Azure Blob Storage.
- Azure
Uri string - Azure URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Authentication
Feed
Details Azure Blob Store V2Settings Authentication - A message containing fields used to authenticate with Azure Blob Storage.
- Azure
Uri string - Azure URI.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Azure Blob Store V2Settings Authentication - A message containing fields used to authenticate with Azure Blob Storage.
- azure
Uri String - Azure URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback IntegerDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Azure Blob Store V2Settings Authentication - A message containing fields used to authenticate with Azure Blob Storage.
- azure
Uri string - Azure URI.
- chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback numberDays - Maximum File Age to ingest in days.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- authentication
Feed
Details Azure Blob Store V2Settings Authentication - A message containing fields used to authenticate with Azure Blob Storage.
- azure_
uri str - Azure URI.
- chronicle_
service_ straccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max_
lookback_ intdays - Maximum File Age to ingest in days.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- authentication Property Map
- A message containing fields used to authenticate with Azure Blob Storage.
- azure
Uri String - Azure URI.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback NumberDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
FeedDetailsAzureBlobStoreV2SettingsAuthentication, FeedDetailsAzureBlobStoreV2SettingsAuthenticationArgs
- Access
Key string - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- Azure
V2Workload FeedIdentity Federation Details Azure Blob Store V2Settings Authentication Azure V2Workload Identity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- Sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
- Access
Key string - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- Azure
V2Workload FeedIdentity Federation Details Azure Blob Store V2Settings Authentication Azure V2Workload Identity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- Sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
- access
Key String - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- azure
V2Workload FeedIdentity Federation Details Azure Blob Store V2Settings Authentication Azure V2Workload Identity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- sas
Token String SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
- access
Key string - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- azure
V2Workload FeedIdentity Federation Details Azure Blob Store V2Settings Authentication Azure V2Workload Identity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- sas
Token string SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
- access_
key str - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- azure_
v2_ Feedworkload_ identity_ federation Details Azure Blob Store V2Settings Authentication Azure V2Workload Identity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- sas_
token str SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
- access
Key String - Access Key also known as shared key. Note: This property is sensitive and will not be displayed in the plan.
- azure
V2Workload Property MapIdentity Federation - Azure V2 Workload Identity Federation. Structure is documented below.
- sas
Token String SAS Token. Note: This property is sensitive and will not be displayed in the plan.
The
azureV2WorkloadIdentityFederationblock supports:
FeedDetailsAzureBlobStoreV2SettingsAuthenticationAzureV2WorkloadIdentityFederation, FeedDetailsAzureBlobStoreV2SettingsAuthenticationAzureV2WorkloadIdentityFederationArgs
- client_
id str - OAuth client ID.
- subject_
id str - Subject ID of the Azure subscription.
- tenant_
id str - Tenant ID.
FeedDetailsAzureEventHubSettings, FeedDetailsAzureEventHubSettingsArgs
- Consumer
Group string - Event hub consumer group to read from.
- Event
Hub stringConnection String - Event hub connection string for authentication.
- Name string
- Event hub to read from.
- Azure
Sas stringToken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- Azure
Storage stringConnection String - Blob store connection string for authentication.
- Azure
Storage stringContainer - Blob storage container name.
- Event
Hub stringNamespace - (Output) Event hub namespace
- Consumer
Group string - Event hub consumer group to read from.
- Event
Hub stringConnection String - Event hub connection string for authentication.
- Name string
- Event hub to read from.
- Azure
Sas stringToken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- Azure
Storage stringConnection String - Blob store connection string for authentication.
- Azure
Storage stringContainer - Blob storage container name.
- Event
Hub stringNamespace - (Output) Event hub namespace
- consumer
Group String - Event hub consumer group to read from.
- event
Hub StringConnection String - Event hub connection string for authentication.
- name String
- Event hub to read from.
- azure
Sas StringToken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- azure
Storage StringConnection String - Blob store connection string for authentication.
- azure
Storage StringContainer - Blob storage container name.
- event
Hub StringNamespace - (Output) Event hub namespace
- consumer
Group string - Event hub consumer group to read from.
- event
Hub stringConnection String - Event hub connection string for authentication.
- name string
- Event hub to read from.
- azure
Sas stringToken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- azure
Storage stringConnection String - Blob store connection string for authentication.
- azure
Storage stringContainer - Blob storage container name.
- event
Hub stringNamespace - (Output) Event hub namespace
- consumer_
group str - Event hub consumer group to read from.
- event_
hub_ strconnection_ string - Event hub connection string for authentication.
- name str
- Event hub to read from.
- azure_
sas_ strtoken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- azure_
storage_ strconnection_ string - Blob store connection string for authentication.
- azure_
storage_ strcontainer - Blob storage container name.
- event_
hub_ strnamespace - (Output) Event hub namespace
- consumer
Group String - Event hub consumer group to read from.
- event
Hub StringConnection String - Event hub connection string for authentication.
- name String
- Event hub to read from.
- azure
Sas StringToken - SAS token Note: This property is sensitive and will not be displayed in the plan.
- azure
Storage StringConnection String - Blob store connection string for authentication.
- azure
Storage StringContainer - Blob storage container name.
- event
Hub StringNamespace - (Output) Event hub namespace
FeedDetailsAzureMdmIntuneSettings, FeedDetailsAzureMdmIntuneSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Mdm Intune Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Azure Mdm Intune Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Azure Mdm Intune Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Azure Mdm Intune Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Azure Mdm Intune Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsAzureMdmIntuneSettingsAuthentication, FeedDetailsAzureMdmIntuneSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsCloudPassageSettings, FeedDetailsCloudPassageSettingsArgs
- Authentication
Feed
Details Cloud Passage Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Event
Types List<string> - Event types filter for the events API.
- Authentication
Feed
Details Cloud Passage Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Event
Types []string - Event types filter for the events API.
- authentication
Feed
Details Cloud Passage Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- event
Types List<String> - Event types filter for the events API.
- authentication
Feed
Details Cloud Passage Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- event
Types string[] - Event types filter for the events API.
- authentication
Feed
Details Cloud Passage Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- event_
types Sequence[str] - Event types filter for the events API.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- event
Types List<String> - Event types filter for the events API.
FeedDetailsCloudPassageSettingsAuthentication, FeedDetailsCloudPassageSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsCortexXdrSettings, FeedDetailsCortexXdrSettingsArgs
- Authentication
Feed
Details Cortex Xdr Settings Authentication - HTTP header based authentication. Structure is documented below.
- Endpoint string
- API Endpoint.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Cortex Xdr Settings Authentication - HTTP header based authentication. Structure is documented below.
- Endpoint string
- API Endpoint.
- Hostname string
- API Hostname.
- authentication
Feed
Details Cortex Xdr Settings Authentication - HTTP header based authentication. Structure is documented below.
- endpoint String
- API Endpoint.
- hostname String
- API Hostname.
- authentication
Feed
Details Cortex Xdr Settings Authentication - HTTP header based authentication. Structure is documented below.
- endpoint string
- API Endpoint.
- hostname string
- API Hostname.
- authentication
Feed
Details Cortex Xdr Settings Authentication - HTTP header based authentication. Structure is documented below.
- endpoint str
- API Endpoint.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- endpoint String
- API Endpoint.
- hostname String
- API Hostname.
FeedDetailsCortexXdrSettingsAuthentication, FeedDetailsCortexXdrSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Cortex Xdr Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Cortex Xdr Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Cortex Xdr Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Cortex Xdr Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Cortex Xdr Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValue, FeedDetailsCortexXdrSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsCrowdstrikeAlertsSettings, FeedDetailsCrowdstrikeAlertsSettingsArgs
- Authentication
Feed
Details Crowdstrike Alerts Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Hostname string
- API Hostname.
- Ingestion
Type string - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
- Authentication
Feed
Details Crowdstrike Alerts Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Hostname string
- API Hostname.
- Ingestion
Type string - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
- authentication
Feed
Details Crowdstrike Alerts Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API Hostname.
- ingestion
Type String - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
- authentication
Feed
Details Crowdstrike Alerts Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname string
- API Hostname.
- ingestion
Type string - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
- authentication
Feed
Details Crowdstrike Alerts Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname str
- API Hostname.
- ingestion_
type str - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
- authentication Property Map
- OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API Hostname.
- ingestion
Type String - Ingestion Type. Possible values: BRING_ALL_ALERTS BRING_ONLY_NEW_ALERTS
FeedDetailsCrowdstrikeAlertsSettingsAuthentication, FeedDetailsCrowdstrikeAlertsSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsCrowdstrikeDetectsSettings, FeedDetailsCrowdstrikeDetectsSettingsArgs
- Authentication
Feed
Details Crowdstrike Detects Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Hostname string
- API Hostname.
- Ingestion
Type string - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
- Authentication
Feed
Details Crowdstrike Detects Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Hostname string
- API Hostname.
- Ingestion
Type string - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
- authentication
Feed
Details Crowdstrike Detects Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API Hostname.
- ingestion
Type String - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
- authentication
Feed
Details Crowdstrike Detects Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname string
- API Hostname.
- ingestion
Type string - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
- authentication
Feed
Details Crowdstrike Detects Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname str
- API Hostname.
- ingestion_
type str - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
- authentication Property Map
- OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API Hostname.
- ingestion
Type String - Ingestion Type. Possible values: BRING_ONLY_NEW_DETECTIONS BRING_ALL_DETECTIONS
FeedDetailsCrowdstrikeDetectsSettingsAuthentication, FeedDetailsCrowdstrikeDetectsSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsDummyLogTypeSettings, FeedDetailsDummyLogTypeSettingsArgs
- Api
Endpoint string - Full API Endpoint.
- Authentication
Feed
Details Dummy Log Type Settings Authentication - HTTP header based authentication. Structure is documented below.
- Api
Endpoint string - Full API Endpoint.
- Authentication
Feed
Details Dummy Log Type Settings Authentication - HTTP header based authentication. Structure is documented below.
- api
Endpoint String - Full API Endpoint.
- authentication
Feed
Details Dummy Log Type Settings Authentication - HTTP header based authentication. Structure is documented below.
- api
Endpoint string - Full API Endpoint.
- authentication
Feed
Details Dummy Log Type Settings Authentication - HTTP header based authentication. Structure is documented below.
- api_
endpoint str - Full API Endpoint.
- authentication
Feed
Details Dummy Log Type Settings Authentication - HTTP header based authentication. Structure is documented below.
- api
Endpoint String - Full API Endpoint.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
FeedDetailsDummyLogTypeSettingsAuthentication, FeedDetailsDummyLogTypeSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Dummy Log Type Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Dummy Log Type Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Dummy Log Type Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Dummy Log Type Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Dummy Log Type Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValue, FeedDetailsDummyLogTypeSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsDuoAuthSettings, FeedDetailsDuoAuthSettingsArgs
- Authentication
Feed
Details Duo Auth Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Duo Auth Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Duo Auth Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Duo Auth Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Duo Auth Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsDuoAuthSettingsAuthentication, FeedDetailsDuoAuthSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsDuoUserContextSettings, FeedDetailsDuoUserContextSettingsArgs
- Authentication
Feed
Details Duo User Context Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API hostname.
- Authentication
Feed
Details Duo User Context Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API hostname.
- authentication
Feed
Details Duo User Context Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname String
- API hostname.
- authentication
Feed
Details Duo User Context Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname string
- API hostname.
- authentication
Feed
Details Duo User Context Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname str
- API hostname.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- hostname String
- API hostname.
FeedDetailsDuoUserContextSettingsAuthentication, FeedDetailsDuoUserContextSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsFoxItStixSettings, FeedDetailsFoxItStixSettingsArgs
- Authentication
Feed
Details Fox It Stix Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Collection string
- Collection available at the poll service.
- Poll
Service stringUri - TAXII poll service URI.
- Ssl
Feed
Details Fox It Stix Settings Ssl - An SSL client certificate keypair. Structure is documented below.
- Authentication
Feed
Details Fox It Stix Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Collection string
- Collection available at the poll service.
- Poll
Service stringUri - TAXII poll service URI.
- Ssl
Feed
Details Fox It Stix Settings Ssl - An SSL client certificate keypair. Structure is documented below.
- authentication
Feed
Details Fox It Stix Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- collection String
- Collection available at the poll service.
- poll
Service StringUri - TAXII poll service URI.
- ssl
Feed
Details Fox It Stix Settings Ssl - An SSL client certificate keypair. Structure is documented below.
- authentication
Feed
Details Fox It Stix Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- collection string
- Collection available at the poll service.
- poll
Service stringUri - TAXII poll service URI.
- ssl
Feed
Details Fox It Stix Settings Ssl - An SSL client certificate keypair. Structure is documented below.
- authentication
Feed
Details Fox It Stix Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- collection str
- Collection available at the poll service.
- poll_
service_ struri - TAXII poll service URI.
- ssl
Feed
Details Fox It Stix Settings Ssl - An SSL client certificate keypair. Structure is documented below.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- collection String
- Collection available at the poll service.
- poll
Service StringUri - TAXII poll service URI.
- ssl Property Map
- An SSL client certificate keypair. Structure is documented below.
FeedDetailsFoxItStixSettingsAuthentication, FeedDetailsFoxItStixSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsFoxItStixSettingsSsl, FeedDetailsFoxItStixSettingsSslArgs
- Encoded
Private stringKey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- Ssl
Certificate string - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
- Encoded
Private stringKey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- Ssl
Certificate string - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
- encoded
Private StringKey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- ssl
Certificate String - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
- encoded
Private stringKey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- ssl
Certificate string - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
- encoded_
private_ strkey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- ssl_
certificate str - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
- encoded
Private StringKey The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
-----END RSA PRIVATE KEY----- Note: This property is sensitive and will not be displayed in the plan.
- ssl
Certificate String - The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsGcsSettings, FeedDetailsGcsSettingsArgs
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Source
Type string Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Source
Type string Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service StringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- source
Type String Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
- bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- source
Type string Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
- bucket_
uri str - Google Cloud Storage Bucket URI for the feed.
- chronicle_
service_ straccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- source_
type str Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service StringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- source
Type String Possible values: FILES FOLDERS FOLDERS_RECURSIVE
The
gcsV2Settingsblock supports:
FeedDetailsGcsV2Settings, FeedDetailsGcsV2SettingsArgs
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback IntegerDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service stringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback numberDays - Maximum File Age to ingest in days.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- bucket_
uri str - Google Cloud Storage Bucket URI for the feed.
- chronicle_
service_ straccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max_
lookback_ intdays - Maximum File Age to ingest in days.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- chronicle
Service StringAccount - SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback NumberDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
FeedDetailsGoogleCloudIdentityDeviceUsersSettings, FeedDetailsGoogleCloudIdentityDeviceUsersSettingsArgs
- Authentication
Feed
Details Google Cloud Identity Device Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Authentication
Feed
Details Google Cloud Identity Device Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- authentication
Feed
Details Google Cloud Identity Device Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- authentication
Feed
Details Google Cloud Identity Device Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- authentication
Feed
Details Google Cloud Identity Device Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthentication, FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationArgs
- Claims
Feed
Details Google Cloud Identity Device Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Google Cloud Identity Device Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Google Cloud Identity Device Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Google Cloud Identity Device Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Device Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Google Cloud Identity Device Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Device Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Google Cloud Identity Device Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Device Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Google Cloud Identity Device Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationClaims, FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationClaimsArgs
FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationRsCredentials, FeedDetailsGoogleCloudIdentityDeviceUsersSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsGoogleCloudIdentityDevicesSettings, FeedDetailsGoogleCloudIdentityDevicesSettingsArgs
- Api
Version string - API Version
- Authentication
Feed
Details Google Cloud Identity Devices Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Api
Version string - API Version
- Authentication
Feed
Details Google Cloud Identity Devices Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- api
Version String - API Version
- authentication
Feed
Details Google Cloud Identity Devices Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- api
Version string - API Version
- authentication
Feed
Details Google Cloud Identity Devices Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- api_
version str - API Version
- authentication
Feed
Details Google Cloud Identity Devices Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- api
Version String - API Version
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
FeedDetailsGoogleCloudIdentityDevicesSettingsAuthentication, FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationArgs
- Claims
Feed
Details Google Cloud Identity Devices Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Google Cloud Identity Devices Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Google Cloud Identity Devices Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Google Cloud Identity Devices Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Devices Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Google Cloud Identity Devices Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Devices Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Google Cloud Identity Devices Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Google Cloud Identity Devices Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Google Cloud Identity Devices Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationClaims, FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationClaimsArgs
FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationRsCredentials, FeedDetailsGoogleCloudIdentityDevicesSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsGoogleCloudStorageEventDrivenSettings, FeedDetailsGoogleCloudStorageEventDrivenSettingsArgs
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Pubsub
Subscription string - Subscription name for pubsub topic.
- Chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- Bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- Pubsub
Subscription string - Subscription name for pubsub topic.
- Chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- Max
Lookback intDays - Maximum File Age to ingest in days.
- Source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- pubsub
Subscription String - Subscription name for pubsub topic.
- chronicle
Service StringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback IntegerDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
- bucket
Uri string - Google Cloud Storage Bucket URI for the feed.
- pubsub
Subscription string - Subscription name for pubsub topic.
- chronicle
Service stringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback numberDays - Maximum File Age to ingest in days.
- source
Deletion stringOption - Possible values: NEVER ON_SUCCESS
- bucket_
uri str - Google Cloud Storage Bucket URI for the feed.
- pubsub_
subscription str - Subscription name for pubsub topic.
- chronicle_
service_ straccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max_
lookback_ intdays - Maximum File Age to ingest in days.
- source_
deletion_ stroption - Possible values: NEVER ON_SUCCESS
- bucket
Uri String - Google Cloud Storage Bucket URI for the feed.
- pubsub
Subscription String - Subscription name for pubsub topic.
- chronicle
Service StringAccount - (Output) SA that will read data, this is Storage Transfer Service SA of Customer's Tenancy Project.
- max
Lookback NumberDays - Maximum File Age to ingest in days.
- source
Deletion StringOption - Possible values: NEVER ON_SUCCESS
FeedDetailsHttpSettings, FeedDetailsHttpSettingsArgs
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Uri string
- HTTP URI.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Uri string
- HTTP URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri String
- HTTP URI.
- source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri string
- HTTP URI.
- source_
deletion_ stroption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source_
type str - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri str
- HTTP URI.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri String
- HTTP URI.
FeedDetailsHttpsPushAmazonKinesisFirehoseSettings, FeedDetailsHttpsPushAmazonKinesisFirehoseSettingsArgs
- Split
Delimiter string - Delimiter to split on for the feed.
- Split
Delimiter string - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
- split
Delimiter string - Delimiter to split on for the feed.
- split_
delimiter str - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
FeedDetailsHttpsPushGoogleCloudPubsubSettings, FeedDetailsHttpsPushGoogleCloudPubsubSettingsArgs
- Split
Delimiter string - Delimiter to split on for the feed.
- Split
Delimiter string - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
- split
Delimiter string - Delimiter to split on for the feed.
- split_
delimiter str - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
FeedDetailsHttpsPushWebhookSettings, FeedDetailsHttpsPushWebhookSettingsArgs
- Split
Delimiter string - Delimiter to split on for the feed.
- Split
Delimiter string - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
- split
Delimiter string - Delimiter to split on for the feed.
- split_
delimiter str - Delimiter to split on for the feed.
- split
Delimiter String - Delimiter to split on for the feed.
FeedDetailsImpervaWafSettings, FeedDetailsImpervaWafSettingsArgs
- Authentication
Feed
Details Imperva Waf Settings Authentication - HTTP header based authentication. Structure is documented below.
- Authentication
Feed
Details Imperva Waf Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Imperva Waf Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Imperva Waf Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Imperva Waf Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
FeedDetailsImpervaWafSettingsAuthentication, FeedDetailsImpervaWafSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Imperva Waf Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Imperva Waf Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Imperva Waf Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Imperva Waf Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Imperva Waf Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValue, FeedDetailsImpervaWafSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsMandiantIocSettings, FeedDetailsMandiantIocSettingsArgs
- Authentication
Feed
Details Mandiant Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- Start
Time string - time since when to start fetching the IOCs
- Authentication
Feed
Details Mandiant Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- Start
Time string - time since when to start fetching the IOCs
- authentication
Feed
Details Mandiant Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- start
Time String - time since when to start fetching the IOCs
- authentication
Feed
Details Mandiant Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- start
Time string - time since when to start fetching the IOCs
- authentication
Feed
Details Mandiant Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- start_
time str - time since when to start fetching the IOCs
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- start
Time String - time since when to start fetching the IOCs
FeedDetailsMandiantIocSettingsAuthentication, FeedDetailsMandiantIocSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Mandiant Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Mandiant Ioc Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Mandiant Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Mandiant Ioc Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Mandiant Ioc Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValue, FeedDetailsMandiantIocSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsMicrosoftGraphAlertSettings, FeedDetailsMicrosoftGraphAlertSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Microsoft Graph Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Microsoft Graph Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Microsoft Graph Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Microsoft Graph Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Microsoft Graph Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsMicrosoftGraphAlertSettingsAuthentication, FeedDetailsMicrosoftGraphAlertSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsMicrosoftSecurityCenterAlertSettings, FeedDetailsMicrosoftSecurityCenterAlertSettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Microsoft Security Center Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Subscription
Id string - Subscription ID of the Microsoft security center alert settings alert.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Microsoft Security Center Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- Hostname string
- API Hostname.
- Subscription
Id string - Subscription ID of the Microsoft security center alert settings alert.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Microsoft Security Center Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- subscription
Id String - Subscription ID of the Microsoft security center alert settings alert.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Microsoft Security Center Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname string
- API Hostname.
- subscription
Id string - Subscription ID of the Microsoft security center alert settings alert.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Microsoft Security Center Alert Settings Authentication - Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname str
- API Hostname.
- subscription_
id str - Subscription ID of the Microsoft security center alert settings alert.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant. Structure is documented below.
- hostname String
- API Hostname.
- subscription
Id String - Subscription ID of the Microsoft security center alert settings alert.
- tenant
Id String - Tenant ID.
FeedDetailsMicrosoftSecurityCenterAlertSettingsAuthentication, FeedDetailsMicrosoftSecurityCenterAlertSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsMimecastMailSettings, FeedDetailsMimecastMailSettingsArgs
- Authentication
Feed
Details Mimecast Mail Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Mimecast Mail Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Mimecast Mail Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Mimecast Mail Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Mimecast Mail Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsMimecastMailSettingsAuthentication, FeedDetailsMimecastMailSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Mimecast Mail Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Mimecast Mail Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Mimecast Mail Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Mimecast Mail Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Mimecast Mail Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValue, FeedDetailsMimecastMailSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsMimecastMailV2Settings, FeedDetailsMimecastMailV2SettingsArgs
- Auth
Credentials FeedDetails Mimecast Mail V2Settings Auth Credentials - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
- Auth
Credentials FeedDetails Mimecast Mail V2Settings Auth Credentials - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
- auth
Credentials FeedDetails Mimecast Mail V2Settings Auth Credentials - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
- auth
Credentials FeedDetails Mimecast Mail V2Settings Auth Credentials - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
- auth_
credentials FeedDetails Mimecast Mail V2Settings Auth Credentials - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
- auth
Credentials Property Map - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. NEXT TAG: 3
FeedDetailsMimecastMailV2SettingsAuthCredentials, FeedDetailsMimecastMailV2SettingsAuthCredentialsArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsNetskopeAlertSettings, FeedDetailsNetskopeAlertSettingsArgs
- Authentication
Feed
Details Netskope Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- Content
Type string - Content type.
- Feedname string
- Feedname.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Netskope Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- Content
Type string - Content type.
- Feedname string
- Feedname.
- Hostname string
- API Hostname.
- authentication
Feed
Details Netskope Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- content
Type String - Content type.
- feedname String
- Feedname.
- hostname String
- API Hostname.
- authentication
Feed
Details Netskope Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- content
Type string - Content type.
- feedname string
- Feedname.
- hostname string
- API Hostname.
- authentication
Feed
Details Netskope Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- content_
type str - Content type.
- feedname str
- Feedname.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- content
Type String - Content type.
- feedname String
- Feedname.
- hostname String
- API Hostname.
FeedDetailsNetskopeAlertSettingsAuthentication, FeedDetailsNetskopeAlertSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Netskope Alert Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Netskope Alert Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Netskope Alert Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Netskope Alert Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Netskope Alert Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValue, FeedDetailsNetskopeAlertSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsNetskopeAlertV2Settings, FeedDetailsNetskopeAlertV2SettingsArgs
- Authentication
Feed
Details Netskope Alert V2Settings Authentication - HTTP header based authentication.
- Content
Category string - Content Category.
- Content
Types List<string> - Content type.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Netskope Alert V2Settings Authentication - HTTP header based authentication.
- Content
Category string - Content Category.
- Content
Types []string - Content type.
- Hostname string
- API Hostname.
- authentication
Feed
Details Netskope Alert V2Settings Authentication - HTTP header based authentication.
- content
Category String - Content Category.
- content
Types List<String> - Content type.
- hostname String
- API Hostname.
- authentication
Feed
Details Netskope Alert V2Settings Authentication - HTTP header based authentication.
- content
Category string - Content Category.
- content
Types string[] - Content type.
- hostname string
- API Hostname.
- authentication
Feed
Details Netskope Alert V2Settings Authentication - HTTP header based authentication.
- content_
category str - Content Category.
- content_
types Sequence[str] - Content type.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication.
- content
Category String - Content Category.
- content
Types List<String> - Content type.
- hostname String
- API Hostname.
FeedDetailsNetskopeAlertV2SettingsAuthentication, FeedDetailsNetskopeAlertV2SettingsAuthenticationArgs
- Header
Key List<FeedValues Details Netskope Alert V2Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Netskope Alert V2Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Netskope Alert V2Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Netskope Alert V2Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Netskope Alert V2Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValue, FeedDetailsNetskopeAlertV2SettingsAuthenticationHeaderKeyValueArgs
FeedDetailsOffice365Settings, FeedDetailsOffice365SettingsArgs
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Office365Settings Authentication - Microsoft OAuth 2.0 client credentials grant.
- Content
Type string - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Auth
Endpoint string - API Auth Endpoint.
- Authentication
Feed
Details Office365Settings Authentication - Microsoft OAuth 2.0 client credentials grant.
- Content
Type string - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication
Feed
Details Office365Settings Authentication - Microsoft OAuth 2.0 client credentials grant.
- content
Type String - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- auth
Endpoint string - API Auth Endpoint.
- authentication
Feed
Details Office365Settings Authentication - Microsoft OAuth 2.0 client credentials grant.
- content
Type string - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- auth_
endpoint str - API Auth Endpoint.
- authentication
Feed
Details Office365Settings Authentication - Microsoft OAuth 2.0 client credentials grant.
- content_
type str - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- auth
Endpoint String - API Auth Endpoint.
- authentication Property Map
- Microsoft OAuth 2.0 client credentials grant.
- content
Type String - Supported office 365 content type. Possible values: AUDIT_AZURE_ACTIVE_DIRECTORY AUDIT_EXCHANGE AUDIT_SHARE_POINT AUDIT_GENERAL DLP_ALL
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsOffice365SettingsAuthentication, FeedDetailsOffice365SettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsOktaSettings, FeedDetailsOktaSettingsArgs
- Authentication
Feed
Details Okta Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Okta Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Okta Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Okta Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Okta Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsOktaSettingsAuthentication, FeedDetailsOktaSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Okta Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Okta Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Okta Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Okta Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Okta Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsOktaSettingsAuthenticationHeaderKeyValue, FeedDetailsOktaSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsOktaUserContextSettings, FeedDetailsOktaUserContextSettingsArgs
- Authentication
Feed
Details Okta User Context Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Manager
Id stringReference Field - Manager id reference field.
- Authentication
Feed
Details Okta User Context Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Manager
Id stringReference Field - Manager id reference field.
- authentication
Feed
Details Okta User Context Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
- manager
Id StringReference Field - Manager id reference field.
- authentication
Feed
Details Okta User Context Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname string
- API Hostname.
- manager
Id stringReference Field - Manager id reference field.
- authentication
Feed
Details Okta User Context Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname str
- API Hostname.
- manager_
id_ strreference_ field - Manager id reference field.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
- manager
Id StringReference Field - Manager id reference field.
FeedDetailsOktaUserContextSettingsAuthentication, FeedDetailsOktaUserContextSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Okta User Context Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Okta User Context Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Okta User Context Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Okta User Context Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Okta User Context Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValue, FeedDetailsOktaUserContextSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsPanIocSettings, FeedDetailsPanIocSettingsArgs
- Authentication
Feed
Details Pan Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- Feed string
- PAN IOC feed name.
- Feed
Id string - PAN IOC feed ID.
- Authentication
Feed
Details Pan Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- Feed string
- PAN IOC feed name.
- Feed
Id string - PAN IOC feed ID.
- authentication
Feed
Details Pan Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- feed String
- PAN IOC feed name.
- feed
Id String - PAN IOC feed ID.
- authentication
Feed
Details Pan Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- feed string
- PAN IOC feed name.
- feed
Id string - PAN IOC feed ID.
- authentication
Feed
Details Pan Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- feed str
- PAN IOC feed name.
- feed_
id str - PAN IOC feed ID.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- feed String
- PAN IOC feed name.
- feed
Id String - PAN IOC feed ID.
FeedDetailsPanIocSettingsAuthentication, FeedDetailsPanIocSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Pan Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Pan Ioc Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Pan Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Pan Ioc Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Pan Ioc Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsPanIocSettingsAuthenticationHeaderKeyValue, FeedDetailsPanIocSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsPanPrismaCloudSettings, FeedDetailsPanPrismaCloudSettingsArgs
- Authentication
Feed
Details Pan Prisma Cloud Settings Authentication - PAN Prisma Cloud auth. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Pan Prisma Cloud Settings Authentication - PAN Prisma Cloud auth. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Pan Prisma Cloud Settings Authentication - PAN Prisma Cloud auth. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Pan Prisma Cloud Settings Authentication - PAN Prisma Cloud auth. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Pan Prisma Cloud Settings Authentication - PAN Prisma Cloud auth. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- PAN Prisma Cloud auth. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsPanPrismaCloudSettingsAuthentication, FeedDetailsPanPrismaCloudSettingsAuthenticationArgs
- Password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- password String
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- password str
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- password String
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsProofpointMailSettings, FeedDetailsProofpointMailSettingsArgs
- Authentication
Feed
Details Proofpoint Mail Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Authentication
Feed
Details Proofpoint Mail Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Proofpoint Mail Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Proofpoint Mail Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication
Feed
Details Proofpoint Mail Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
FeedDetailsProofpointMailSettingsAuthentication, FeedDetailsProofpointMailSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsProofpointOnDemandSettings, FeedDetailsProofpointOnDemandSettingsArgs
- Authentication
Feed
Details Proofpoint On Demand Settings Authentication - HTTP header based authentication. Structure is documented below.
- Cluster
Id string - Cluster ID.
- Authentication
Feed
Details Proofpoint On Demand Settings Authentication - HTTP header based authentication. Structure is documented below.
- Cluster
Id string - Cluster ID.
- authentication
Feed
Details Proofpoint On Demand Settings Authentication - HTTP header based authentication. Structure is documented below.
- cluster
Id String - Cluster ID.
- authentication
Feed
Details Proofpoint On Demand Settings Authentication - HTTP header based authentication. Structure is documented below.
- cluster
Id string - Cluster ID.
- authentication
Feed
Details Proofpoint On Demand Settings Authentication - HTTP header based authentication. Structure is documented below.
- cluster_
id str - Cluster ID.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- cluster
Id String - Cluster ID.
FeedDetailsProofpointOnDemandSettingsAuthentication, FeedDetailsProofpointOnDemandSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Proofpoint On Demand Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Proofpoint On Demand Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Proofpoint On Demand Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Proofpoint On Demand Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Proofpoint On Demand Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValue, FeedDetailsProofpointOnDemandSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsPubsubSettings, FeedDetailsPubsubSettingsArgs
- Google
Service stringAccount Email - Google Service Account Email.
- Google
Service stringAccount Email - Google Service Account Email.
- google
Service StringAccount Email - Google Service Account Email.
- google
Service stringAccount Email - Google Service Account Email.
- google_
service_ straccount_ email - Google Service Account Email.
- google
Service StringAccount Email - Google Service Account Email.
FeedDetailsQualysScanSettings, FeedDetailsQualysScanSettingsArgs
- Api
Type string - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- Authentication
Feed
Details Qualys Scan Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- Hostname.
- Api
Type string - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- Authentication
Feed
Details Qualys Scan Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- Hostname.
- api
Type String - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- authentication
Feed
Details Qualys Scan Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname String
- Hostname.
- api
Type string - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- authentication
Feed
Details Qualys Scan Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname string
- Hostname.
- api_
type str - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- authentication
Feed
Details Qualys Scan Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname str
- Hostname.
- api
Type String - Supported Qualys Scan api type. Possible values: SCAN_SUMMARY_OUTPUT SCAN_COMPLIANCE_OUTPUT SCAN_COMPLIANCE_CONTROL_OUTPUT
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- hostname String
- Hostname.
FeedDetailsQualysScanSettingsAuthentication, FeedDetailsQualysScanSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsQualysVmSettings, FeedDetailsQualysVmSettingsArgs
- Authentication
Feed
Details Qualys Vm Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Qualys Vm Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Qualys Vm Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Qualys Vm Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Qualys Vm Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsQualysVmSettingsAuthentication, FeedDetailsQualysVmSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsRapid7InsightSettings, FeedDetailsRapid7InsightSettingsArgs
- Authentication
Feed
Details Rapid7Insight Settings Authentication - HTTP header based authentication.
- Endpoint string
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- Hostname string
- API Hostname.
- Authentication
Feed
Details Rapid7Insight Settings Authentication - HTTP header based authentication.
- Endpoint string
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- Hostname string
- API Hostname.
- authentication
Feed
Details Rapid7Insight Settings Authentication - HTTP header based authentication.
- endpoint String
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- hostname String
- API Hostname.
- authentication
Feed
Details Rapid7Insight Settings Authentication - HTTP header based authentication.
- endpoint string
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- hostname string
- API Hostname.
- authentication
Feed
Details Rapid7Insight Settings Authentication - HTTP header based authentication.
- endpoint str
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication.
- endpoint String
- Rapid7 API endpoint. Should be "vulnerabilities" or "assets".
- hostname String
- API Hostname.
FeedDetailsRapid7InsightSettingsAuthentication, FeedDetailsRapid7InsightSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Rapid7Insight Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Rapid7Insight Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Rapid7Insight Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Rapid7Insight Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Rapid7Insight Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValue, FeedDetailsRapid7InsightSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsRecordedFutureIocSettings, FeedDetailsRecordedFutureIocSettingsArgs
- Authentication
Feed
Details Recorded Future Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- Authentication
Feed
Details Recorded Future Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Recorded Future Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Recorded Future Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication
Feed
Details Recorded Future Ioc Settings Authentication - HTTP header based authentication. Structure is documented below.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
FeedDetailsRecordedFutureIocSettingsAuthentication, FeedDetailsRecordedFutureIocSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Recorded Future Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Recorded Future Ioc Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Recorded Future Ioc Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Recorded Future Ioc Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Recorded Future Ioc Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValue, FeedDetailsRecordedFutureIocSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsRhIsacIocSettings, FeedDetailsRhIsacIocSettingsArgs
- Authentication
Feed
Details Rh Isac Ioc Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Authentication
Feed
Details Rh Isac Ioc Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Rh Isac Ioc Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Rh Isac Ioc Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Rh Isac Ioc Settings Authentication - OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication Property Map
- OAuth 2.0 client credentials grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
FeedDetailsRhIsacIocSettingsAuthentication, FeedDetailsRhIsacIocSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsSalesforceSettings, FeedDetailsSalesforceSettingsArgs
- Hostname string
- API hostname.
- Oauth
Jwt FeedCredentials Details Salesforce Settings Oauth Jwt Credentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Oauth
Password FeedGrant Auth Details Salesforce Settings Oauth Password Grant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Hostname string
- API hostname.
- Oauth
Jwt FeedCredentials Details Salesforce Settings Oauth Jwt Credentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Oauth
Password FeedGrant Auth Details Salesforce Settings Oauth Password Grant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API hostname.
- oauth
Jwt FeedCredentials Details Salesforce Settings Oauth Jwt Credentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- oauth
Password FeedGrant Auth Details Salesforce Settings Oauth Password Grant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname string
- API hostname.
- oauth
Jwt FeedCredentials Details Salesforce Settings Oauth Jwt Credentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- oauth
Password FeedGrant Auth Details Salesforce Settings Oauth Password Grant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname str
- API hostname.
- oauth_
jwt_ Feedcredentials Details Salesforce Settings Oauth Jwt Credentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- oauth_
password_ Feedgrant_ auth Details Salesforce Settings Oauth Password Grant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- hostname String
- API hostname.
- oauth
Jwt Property MapCredentials - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- oauth
Password Property MapGrant Auth - OAuth 2.0 password grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
FeedDetailsSalesforceSettingsOauthJwtCredentials, FeedDetailsSalesforceSettingsOauthJwtCredentialsArgs
- Claims
Feed
Details Salesforce Settings Oauth Jwt Credentials Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Salesforce Settings Oauth Jwt Credentials Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Salesforce Settings Oauth Jwt Credentials Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Salesforce Settings Oauth Jwt Credentials Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Salesforce Settings Oauth Jwt Credentials Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Salesforce Settings Oauth Jwt Credentials Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Salesforce Settings Oauth Jwt Credentials Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Salesforce Settings Oauth Jwt Credentials Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Salesforce Settings Oauth Jwt Credentials Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Salesforce Settings Oauth Jwt Credentials Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsSalesforceSettingsOauthJwtCredentialsClaims, FeedDetailsSalesforceSettingsOauthJwtCredentialsClaimsArgs
FeedDetailsSalesforceSettingsOauthJwtCredentialsRsCredentials, FeedDetailsSalesforceSettingsOauthJwtCredentialsRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsSalesforceSettingsOauthPasswordGrantAuth, FeedDetailsSalesforceSettingsOauthPasswordGrantAuthArgs
- Client
Id string - Client ID.
- Client
Secret string - Client secret.
- Password string
- Password.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- User string
- Username.
- Client
Id string - Client ID.
- Client
Secret string - Client secret.
- Password string
- Password.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- User string
- Username.
- client
Id String - Client ID.
- client
Secret String - Client secret.
- password String
- Password.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- user String
- Username.
- client
Id string - Client ID.
- client
Secret string - Client secret.
- password string
- Password.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- user string
- Username.
- client_
id str - Client ID.
- client_
secret str - Client secret.
- password str
- Password.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- user str
- Username.
- client
Id String - Client ID.
- client
Secret String - Client secret.
- password String
- Password.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- user String
- Username.
FeedDetailsSentineloneAlertSettings, FeedDetailsSentineloneAlertSettingsArgs
- Authentication
Feed
Details Sentinelone Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- Hostname of SentinelOne alert settings.
- Initial
Start stringTime - initialStartTime from when to fetch the alerts
- Is
Alert boolApi Subscribed - Is the customer subscribed to Alerts Api
- Authentication
Feed
Details Sentinelone Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- Hostname of SentinelOne alert settings.
- Initial
Start stringTime - initialStartTime from when to fetch the alerts
- Is
Alert boolApi Subscribed - Is the customer subscribed to Alerts Api
- authentication
Feed
Details Sentinelone Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname String
- Hostname of SentinelOne alert settings.
- initial
Start StringTime - initialStartTime from when to fetch the alerts
- is
Alert BooleanApi Subscribed - Is the customer subscribed to Alerts Api
- authentication
Feed
Details Sentinelone Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname string
- Hostname of SentinelOne alert settings.
- initial
Start stringTime - initialStartTime from when to fetch the alerts
- is
Alert booleanApi Subscribed - Is the customer subscribed to Alerts Api
- authentication
Feed
Details Sentinelone Alert Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname str
- Hostname of SentinelOne alert settings.
- initial_
start_ strtime - initialStartTime from when to fetch the alerts
- is_
alert_ boolapi_ subscribed - Is the customer subscribed to Alerts Api
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- hostname String
- Hostname of SentinelOne alert settings.
- initial
Start StringTime - initialStartTime from when to fetch the alerts
- is
Alert BooleanApi Subscribed - Is the customer subscribed to Alerts Api
FeedDetailsSentineloneAlertSettingsAuthentication, FeedDetailsSentineloneAlertSettingsAuthenticationArgs
- Header
Key List<FeedValues Details Sentinelone Alert Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Sentinelone Alert Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Sentinelone Alert Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Sentinelone Alert Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Sentinelone Alert Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValue, FeedDetailsSentineloneAlertSettingsAuthenticationHeaderKeyValueArgs
FeedDetailsServiceNowCmdbSettings, FeedDetailsServiceNowCmdbSettingsArgs
- Authentication
Feed
Details Service Now Cmdb Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Feedname string
- Feedname.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Service Now Cmdb Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Feedname string
- Feedname.
- Hostname string
- API Hostname.
- authentication
Feed
Details Service Now Cmdb Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- feedname String
- Feedname.
- hostname String
- API Hostname.
- authentication
Feed
Details Service Now Cmdb Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- feedname string
- Feedname.
- hostname string
- API Hostname.
- authentication
Feed
Details Service Now Cmdb Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- feedname str
- Feedname.
- hostname str
- API Hostname.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- feedname String
- Feedname.
- hostname String
- API Hostname.
FeedDetailsServiceNowCmdbSettingsAuthentication, FeedDetailsServiceNowCmdbSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsSftpSettings, FeedDetailsSftpSettingsArgs
- Authentication
Feed
Details Sftp Settings Authentication - SFTP Auth. Structure is documented below.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Uri string
- SFTP URI.
- Authentication
Feed
Details Sftp Settings Authentication - SFTP Auth. Structure is documented below.
- Source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- Source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- Uri string
- SFTP URI.
- authentication
Feed
Details Sftp Settings Authentication - SFTP Auth. Structure is documented below.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri String
- SFTP URI.
- authentication
Feed
Details Sftp Settings Authentication - SFTP Auth. Structure is documented below.
- source
Deletion stringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type string - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri string
- SFTP URI.
- authentication
Feed
Details Sftp Settings Authentication - SFTP Auth. Structure is documented below.
- source_
deletion_ stroption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source_
type str - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri str
- SFTP URI.
- authentication Property Map
- SFTP Auth. Structure is documented below.
- source
Deletion StringOption - Possible values: SOURCE_DELETION_NEVER SOURCE_DELETION_ON_SUCCESS SOURCE_DELETION_ON_SUCCESS_FILES_ONLY
- source
Type String - Possible values: FILES FOLDERS FOLDERS_RECURSIVE
- uri String
- SFTP URI.
FeedDetailsSftpSettingsAuthentication, FeedDetailsSftpSettingsAuthenticationArgs
- Password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key stringPassphrase - Private key passphrase. Used for private key authentication.
- Username string
- Username. Used for username and password authentication.
- Password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key stringPassphrase - Private key passphrase. Used for private key authentication.
- Username string
- Username. Used for username and password authentication.
- password String
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key StringPassphrase - Private key passphrase. Used for private key authentication.
- username String
- Username. Used for username and password authentication.
- password string
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key stringPassphrase - Private key passphrase. Used for private key authentication.
- username string
- Username. Used for username and password authentication.
- password str
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- private_
key_ strpassphrase - Private key passphrase. Used for private key authentication.
- username str
- Username. Used for username and password authentication.
- password String
- Password. Used for username and password authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key. Used for private key authentication. Note: This property is sensitive and will not be displayed in the plan.
- private
Key StringPassphrase - Private key passphrase. Used for private key authentication.
- username String
- Username. Used for username and password authentication.
FeedDetailsSymantecEventExportSettings, FeedDetailsSymantecEventExportSettingsArgs
- Authentication
Feed
Details Symantec Event Export Settings Authentication - OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- Authentication
Feed
Details Symantec Event Export Settings Authentication - OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Symantec Event Export Settings Authentication - OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Symantec Event Export Settings Authentication - OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication
Feed
Details Symantec Event Export Settings Authentication - OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
- authentication Property Map
- OAuth 2.0 refresh token grant. See https://tools.ietf.org/html/rfc6749. Structure is documented below.
FeedDetailsSymantecEventExportSettingsAuthentication, FeedDetailsSymantecEventExportSettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Token string - Refresh Token.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Token string - Refresh Token.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token String - Refresh Token.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token string - Refresh Token.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh_
token str - Refresh Token.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token String - Refresh Token.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsThinkstCanarySettings, FeedDetailsThinkstCanarySettingsArgs
- Authentication
Feed
Details Thinkst Canary Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Authentication
Feed
Details Thinkst Canary Settings Authentication - HTTP header based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- authentication
Feed
Details Thinkst Canary Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
- authentication
Feed
Details Thinkst Canary Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname string
- API Hostname.
- authentication
Feed
Details Thinkst Canary Settings Authentication - HTTP header based authentication. Structure is documented below.
- hostname str
- API Hostname.
- authentication Property Map
- HTTP header based authentication. Structure is documented below.
- hostname String
- API Hostname.
FeedDetailsThinkstCanarySettingsAuthentication, FeedDetailsThinkstCanarySettingsAuthenticationArgs
- Header
Key List<FeedValues Details Thinkst Canary Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- Header
Key []FeedValues Details Thinkst Canary Settings Authentication Header Key Value - Header key-value pairs. Structure is documented below.
- header
Key List<FeedValues Details Thinkst Canary Settings Authentication Header Key Value> - Header key-value pairs. Structure is documented below.
- header
Key FeedValues Details Thinkst Canary Settings Authentication Header Key Value[] - Header key-value pairs. Structure is documented below.
- header_
key_ Sequence[Feedvalues Details Thinkst Canary Settings Authentication Header Key Value] - Header key-value pairs. Structure is documented below.
- header
Key List<Property Map>Values - Header key-value pairs. Structure is documented below.
FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValue, FeedDetailsThinkstCanarySettingsAuthenticationHeaderKeyValueArgs
FeedDetailsThreatConnectIocSettings, FeedDetailsThreatConnectIocSettingsArgs
- Authentication
Feed
Details Threat Connect Ioc Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Owners List<string>
- Owners.
- Authentication
Feed
Details Threat Connect Ioc Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- Hostname string
- API Hostname.
- Owners []string
- Owners.
- authentication
Feed
Details Threat Connect Ioc Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
- owners List<String>
- Owners.
- authentication
Feed
Details Threat Connect Ioc Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname string
- API Hostname.
- owners string[]
- Owners.
- authentication
Feed
Details Threat Connect Ioc Settings Authentication - Info for username and secret based authentication. Structure is documented below.
- hostname str
- API Hostname.
- owners Sequence[str]
- Owners.
- authentication Property Map
- Info for username and secret based authentication. Structure is documented below.
- hostname String
- API Hostname.
- owners List<String>
- Owners.
FeedDetailsThreatConnectIocSettingsAuthentication, FeedDetailsThreatConnectIocSettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsThreatConnectIocV3Settings, FeedDetailsThreatConnectIocV3SettingsArgs
- Authentication
Feed
Details Threat Connect Ioc V3Settings Authentication - Info for username and secret based authentication.
- Fields List<string>
- Fields
- Hostname string
- hostname.
- Owners List<string>
- Owners.
- Schedule int
- Schedule
- Tql
Query string - ThreatConnect Query Language filter.
- Authentication
Feed
Details Threat Connect Ioc V3Settings Authentication - Info for username and secret based authentication.
- Fields []string
- Fields
- Hostname string
- hostname.
- Owners []string
- Owners.
- Schedule int
- Schedule
- Tql
Query string - ThreatConnect Query Language filter.
- authentication
Feed
Details Threat Connect Ioc V3Settings Authentication - Info for username and secret based authentication.
- fields List<String>
- Fields
- hostname String
- hostname.
- owners List<String>
- Owners.
- schedule Integer
- Schedule
- tql
Query String - ThreatConnect Query Language filter.
- authentication
Feed
Details Threat Connect Ioc V3Settings Authentication - Info for username and secret based authentication.
- fields string[]
- Fields
- hostname string
- hostname.
- owners string[]
- Owners.
- schedule number
- Schedule
- tql
Query string - ThreatConnect Query Language filter.
- authentication
Feed
Details Threat Connect Ioc V3Settings Authentication - Info for username and secret based authentication.
- fields Sequence[str]
- Fields
- hostname str
- hostname.
- owners Sequence[str]
- Owners.
- schedule int
- Schedule
- tql_
query str - ThreatConnect Query Language filter.
- authentication Property Map
- Info for username and secret based authentication.
- fields List<String>
- Fields
- hostname String
- hostname.
- owners List<String>
- Owners.
- schedule Number
- Schedule
- tql
Query String - ThreatConnect Query Language filter.
FeedDetailsThreatConnectIocV3SettingsAuthentication, FeedDetailsThreatConnectIocV3SettingsAuthenticationArgs
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsTrellixHxAlertsSettings, FeedDetailsTrellixHxAlertsSettingsArgs
- Authentication
Feed
Details Trellix Hx Alerts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- Authentication
Feed
Details Trellix Hx Alerts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Alerts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Alerts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Alerts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint str
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication Property Map
- TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
FeedDetailsTrellixHxAlertsSettingsAuthentication, FeedDetailsTrellixHxAlertsSettingsAuthenticationArgs
- Msso
Feed
Details Trellix Hx Alerts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Alerts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- Msso
Feed
Details Trellix Hx Alerts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Alerts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Alerts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Alerts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Alerts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Alerts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Alerts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix_
iam FeedDetails Trellix Hx Alerts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso Property Map
- Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam Property Map - Settings for TrellixIAMAuthentication. Structure is documented below.
FeedDetailsTrellixHxAlertsSettingsAuthenticationMsso, FeedDetailsTrellixHxAlertsSettingsAuthenticationMssoArgs
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api_
endpoint str - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password str
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username str
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
FeedDetailsTrellixHxAlertsSettingsAuthenticationTrellixIam, FeedDetailsTrellixHxAlertsSettingsAuthenticationTrellixIamArgs
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client_
id str - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client_
secret str - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope str
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
FeedDetailsTrellixHxBulkAcqsSettings, FeedDetailsTrellixHxBulkAcqsSettingsArgs
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- Authentication
Feed
Details Trellix Hx Bulk Acqs Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- Authentication
Feed
Details Trellix Hx Bulk Acqs Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Bulk Acqs Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Bulk Acqs Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint str
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Bulk Acqs Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication Property Map
- TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
FeedDetailsTrellixHxBulkAcqsSettingsAuthentication, FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationArgs
- Msso
Feed
Details Trellix Hx Bulk Acqs Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Bulk Acqs Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- Msso
Feed
Details Trellix Hx Bulk Acqs Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Bulk Acqs Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Bulk Acqs Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Bulk Acqs Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Bulk Acqs Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Bulk Acqs Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Bulk Acqs Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix_
iam FeedDetails Trellix Hx Bulk Acqs Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso Property Map
- Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam Property Map - Settings for TrellixIAMAuthentication. Structure is documented below.
FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationMsso, FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationMssoArgs
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api_
endpoint str - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password str
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username str
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationTrellixIam, FeedDetailsTrellixHxBulkAcqsSettingsAuthenticationTrellixIamArgs
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client_
id str - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client_
secret str - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope str
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
FeedDetailsTrellixHxHostsSettings, FeedDetailsTrellixHxHostsSettingsArgs
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- Authentication
Feed
Details Trellix Hx Hosts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- Endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- Authentication
Feed
Details Trellix Hx Hosts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Hosts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint string
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Hosts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint str
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication
Feed
Details Trellix Hx Hosts Settings Authentication - TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
- endpoint String
- Trellix HX Device URL.
This must be a valid URL with an http or https scheme. It has no default.
Usually a device URL is in the form of either:
https://xxx.trellix.com/hx/id//
- or - https://htapdeviceproxy.md.mandiant.net/dphb/hx//
- authentication Property Map
- TrellixStarXAuthentication contains a oneof with all of the authentication types supported by Trellix *X devices. Structure is documented below.
FeedDetailsTrellixHxHostsSettingsAuthentication, FeedDetailsTrellixHxHostsSettingsAuthenticationArgs
- Msso
Feed
Details Trellix Hx Hosts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Hosts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- Msso
Feed
Details Trellix Hx Hosts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- Trellix
Iam FeedDetails Trellix Hx Hosts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Hosts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Hosts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Hosts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam FeedDetails Trellix Hx Hosts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso
Feed
Details Trellix Hx Hosts Settings Authentication Msso - Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix_
iam FeedDetails Trellix Hx Hosts Settings Authentication Trellix Iam - Settings for TrellixIAMAuthentication. Structure is documented below.
- msso Property Map
- Info for MssoAuthentication using a username, password, and login api endpoint. Structure is documented below.
- trellix
Iam Property Map - Settings for TrellixIAMAuthentication. Structure is documented below.
FeedDetailsTrellixHxHostsSettingsAuthenticationMsso, FeedDetailsTrellixHxHostsSettingsAuthenticationMssoArgs
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- Api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- Password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint string - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password string
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username string
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api_
endpoint str - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password str
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username str
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
- api
Endpoint String - The login api endpoint url. This must be a valid URL with an http or https scheme. It has no default.
- password String
- Password of the account identified by username. There are no restrictions on the format of the password. It has no default, specifically enforced min / max length or character set. The password will have been provided by an MSSO administrator and it is assumed that they have provided a password that is internally consistent with MSSO authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- username String
- Username for MSSO authentication. There are no restrictions on the format of the username. It has no default, specifically enforced min / max length or character set. The username will have been provided by an MSSO administrator and it is assumed that they have provided a username that is internally consistent with MSSO authentication requirements / validation.
FeedDetailsTrellixHxHostsSettingsAuthenticationTrellixIam, FeedDetailsTrellixHxHostsSettingsAuthenticationTrellixIamArgs
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- Client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- Scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id string - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret string - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope string
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client_
id str - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client_
secret str - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope str
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
- client
Id String - Client ID generated in Trellix IAM. This is a unique identifier for the user that is generated in Trellix IAM. It has no default, specifically enforced min / max length or character set. It is assumed that the Client ID generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation.
- client
Secret String - Secret associated with the Client ID. This is the secret generated in Trellix IAM for the Client ID. It has no default, specifically enforced min / max length or character set. It is assumed that the secret generated in Trellix IAM is internally consistent with Trellix IAM authentication requirements / validation. Note: This property is sensitive and will not be displayed in the plan.
- scope String
- OAUTH 2 scope to request for the authentication token. This is the OAUTH 2 scope to request for the authentication token. It has no default, specifically enforced min / max length or character set. It is assumed that the scope provided is internally consistent with Trellix IAM authentication requirements / validation.
FeedDetailsWorkdaySettings, FeedDetailsWorkdaySettingsArgs
- Authentication
Feed
Details Workday Settings Authentication - Authentication for Workday. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- Authentication
Feed
Details Workday Settings Authentication - Authentication for Workday. Structure is documented below.
- Hostname string
- API Hostname.
- Tenant
Id string - Tenant ID.
- authentication
Feed
Details Workday Settings Authentication - Authentication for Workday. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
- authentication
Feed
Details Workday Settings Authentication - Authentication for Workday. Structure is documented below.
- hostname string
- API Hostname.
- tenant
Id string - Tenant ID.
- authentication
Feed
Details Workday Settings Authentication - Authentication for Workday. Structure is documented below.
- hostname str
- API Hostname.
- tenant_
id str - Tenant ID.
- authentication Property Map
- Authentication for Workday. Structure is documented below.
- hostname String
- API Hostname.
- tenant
Id String - Tenant ID.
FeedDetailsWorkdaySettingsAuthentication, FeedDetailsWorkdaySettingsAuthenticationArgs
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Token string - Refresh Token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- Client
Id string - Client ID.
- Client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- Refresh
Token string - Refresh Token.
- Secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- User string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token String - Refresh Token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- client
Id string - Client ID.
- client
Secret string - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token string - Refresh Token.
- secret string
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- user string
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- client_
id str - Client ID.
- client_
secret str - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh_
token str - Refresh Token.
- secret str
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- user str
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
- client
Id String - Client ID.
- client
Secret String - Client Secret. Note: This property is sensitive and will not be displayed in the plan.
- refresh
Token String - Refresh Token.
- secret String
- The access token used to authenticate against Workday. This field is called "secret" to maintain backwards compatibility. Workday was (only) configured using username (which was unused) and secret (which is used as the access token). Either this field or all of the other OAuth fields below must be specified. Note: This property is sensitive and will not be displayed in the plan.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- user String
- Username. This is unused: Workday feeds were originally configured using a username and secret authentication method, but only the secret field was used, and it was used to supply the OAuth access token.
FeedDetailsWorkspaceActivitySettings, FeedDetailsWorkspaceActivitySettingsArgs
- Applications List<string>
- Applications.
- Authentication
Feed
Details Workspace Activity Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Applications []string
- Applications.
- Authentication
Feed
Details Workspace Activity Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- applications List<String>
- Applications.
- authentication
Feed
Details Workspace Activity Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- applications string[]
- Applications.
- authentication
Feed
Details Workspace Activity Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- applications Sequence[str]
- Applications.
- authentication
Feed
Details Workspace Activity Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- applications List<String>
- Applications.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceActivitySettingsAuthentication, FeedDetailsWorkspaceActivitySettingsAuthenticationArgs
- Claims
Feed
Details Workspace Activity Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Activity Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Activity Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Activity Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Activity Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Activity Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Activity Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Activity Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Activity Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Activity Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceActivitySettingsAuthenticationClaims, FeedDetailsWorkspaceActivitySettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceActivitySettingsAuthenticationRsCredentials, FeedDetailsWorkspaceActivitySettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspaceAlertsSettings, FeedDetailsWorkspaceAlertsSettingsArgs
- Authentication
Feed
Details Workspace Alerts Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Alerts Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Alerts Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Alerts Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Alerts Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceAlertsSettingsAuthentication, FeedDetailsWorkspaceAlertsSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Alerts Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Alerts Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Alerts Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Alerts Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Alerts Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Alerts Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Alerts Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Alerts Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Alerts Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Alerts Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceAlertsSettingsAuthenticationClaims, FeedDetailsWorkspaceAlertsSettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceAlertsSettingsAuthenticationRsCredentials, FeedDetailsWorkspaceAlertsSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspaceChromeOsSettings, FeedDetailsWorkspaceChromeOsSettingsArgs
- Authentication
Feed
Details Workspace Chrome Os Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Chrome Os Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Chrome Os Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Chrome Os Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Chrome Os Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceChromeOsSettingsAuthentication, FeedDetailsWorkspaceChromeOsSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Chrome Os Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Chrome Os Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Chrome Os Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Chrome Os Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Chrome Os Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Chrome Os Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Chrome Os Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Chrome Os Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Chrome Os Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Chrome Os Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceChromeOsSettingsAuthenticationClaims, FeedDetailsWorkspaceChromeOsSettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceChromeOsSettingsAuthenticationRsCredentials, FeedDetailsWorkspaceChromeOsSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspaceGroupsSettings, FeedDetailsWorkspaceGroupsSettingsArgs
- Authentication
Feed
Details Workspace Groups Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Groups Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Groups Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Groups Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Groups Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceGroupsSettingsAuthentication, FeedDetailsWorkspaceGroupsSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Groups Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Groups Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Groups Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Groups Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Groups Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Groups Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Groups Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Groups Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Groups Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Groups Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceGroupsSettingsAuthenticationClaims, FeedDetailsWorkspaceGroupsSettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceGroupsSettingsAuthenticationRsCredentials, FeedDetailsWorkspaceGroupsSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspaceMobileSettings, FeedDetailsWorkspaceMobileSettingsArgs
- Authentication
Feed
Details Workspace Mobile Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Mobile Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Mobile Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Mobile Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Mobile Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceMobileSettingsAuthentication, FeedDetailsWorkspaceMobileSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Mobile Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Mobile Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Mobile Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Mobile Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Mobile Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Mobile Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Mobile Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Mobile Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Mobile Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Mobile Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceMobileSettingsAuthenticationClaims, FeedDetailsWorkspaceMobileSettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceMobileSettingsAuthenticationRsCredentials, FeedDetailsWorkspaceMobileSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspacePrivilegesSettings, FeedDetailsWorkspacePrivilegesSettingsArgs
- Authentication
Feed
Details Workspace Privileges Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Privileges Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Privileges Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Privileges Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Privileges Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspacePrivilegesSettingsAuthentication, FeedDetailsWorkspacePrivilegesSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Privileges Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Privileges Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Privileges Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Privileges Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Privileges Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Privileges Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Privileges Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Privileges Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Privileges Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Privileges Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspacePrivilegesSettingsAuthenticationClaims, FeedDetailsWorkspacePrivilegesSettingsAuthenticationClaimsArgs
FeedDetailsWorkspacePrivilegesSettingsAuthenticationRsCredentials, FeedDetailsWorkspacePrivilegesSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedDetailsWorkspaceUsersSettings, FeedDetailsWorkspaceUsersSettingsArgs
- Authentication
Feed
Details Workspace Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Projection
Type string - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- Workspace
Customer stringId - Customer ID.
- Authentication
Feed
Details Workspace Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- Projection
Type string - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- Workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- projection
Type String - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- workspace
Customer StringId - Customer ID.
- authentication
Feed
Details Workspace Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- projection
Type string - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- workspace
Customer stringId - Customer ID.
- authentication
Feed
Details Workspace Users Settings Authentication - OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- projection_
type str - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- workspace_
customer_ strid - Customer ID.
- authentication Property Map
- OAuth 2.0 JWT grant. See, https://tools.ietf.org/html/rfc7519 Structure is documented below.
- projection
Type String - Projection Type. Possible values: BASIC_PROJECTION FULL_PROJECTION
- workspace
Customer StringId - Customer ID.
FeedDetailsWorkspaceUsersSettingsAuthentication, FeedDetailsWorkspaceUsersSettingsAuthenticationArgs
- Claims
Feed
Details Workspace Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- Claims
Feed
Details Workspace Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- Rs
Credentials FeedDetails Workspace Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- Token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs
Credentials FeedDetails Workspace Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token
Endpoint string - Token endpoint to get the OAuth token from.
- claims
Feed
Details Workspace Users Settings Authentication Claims - Claims identifying a specific customer. Structure is documented below.
- rs_
credentials FeedDetails Workspace Users Settings Authentication Rs Credentials - RS credentials. Structure is documented below.
- token_
endpoint str - Token endpoint to get the OAuth token from.
- claims Property Map
- Claims identifying a specific customer. Structure is documented below.
- rs
Credentials Property Map - RS credentials. Structure is documented below.
- token
Endpoint String - Token endpoint to get the OAuth token from.
FeedDetailsWorkspaceUsersSettingsAuthenticationClaims, FeedDetailsWorkspaceUsersSettingsAuthenticationClaimsArgs
FeedDetailsWorkspaceUsersSettingsAuthenticationRsCredentials, FeedDetailsWorkspaceUsersSettingsAuthenticationRsCredentialsArgs
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- Private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key string - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private_
key str - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
- private
Key String - Private key in PEM format. Note: This property is sensitive and will not be displayed in the plan.
FeedFailureDetails, FeedFailureDetailsArgs
- Error
Action string - (Output) errorAction contains the user action prescribed for remediation of feed error.
- Error
Cause string - (Output) errorCause contains the information regarding the failure cause.
- Error
Code string - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- Http
Error intCode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
- Error
Action string - (Output) errorAction contains the user action prescribed for remediation of feed error.
- Error
Cause string - (Output) errorCause contains the information regarding the failure cause.
- Error
Code string - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- Http
Error intCode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
- error
Action String - (Output) errorAction contains the user action prescribed for remediation of feed error.
- error
Cause String - (Output) errorCause contains the information regarding the failure cause.
- error
Code String - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- http
Error IntegerCode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
- error
Action string - (Output) errorAction contains the user action prescribed for remediation of feed error.
- error
Cause string - (Output) errorCause contains the information regarding the failure cause.
- error
Code string - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- http
Error numberCode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
- error_
action str - (Output) errorAction contains the user action prescribed for remediation of feed error.
- error_
cause str - (Output) errorCause contains the information regarding the failure cause.
- error_
code str - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- http_
error_ intcode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
- error
Action String - (Output) errorAction contains the user action prescribed for remediation of feed error.
- error
Cause String - (Output) errorCause contains the information regarding the failure cause.
- error
Code String - (Output) errorCode contains the error code for the feed. The field is populated for the feeds with failed status.
- http
Error NumberCode - (Output) httpErrorCode contains the HTTP error code for the feed failure. feed transfer failure may or may not result in http error code.
Import
Feed can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/instances/{{instance}}/feeds/{{feed}}{{project}}/{{location}}/{{instance}}/{{feed}}{{location}}/{{instance}}/{{feed}}
When using the pulumi import command, Feed can be imported using one of the formats above. For example:
$ pulumi import gcp:chronicle/feed:Feed default projects/{{project}}/locations/{{location}}/instances/{{instance}}/feeds/{{feed}}
$ pulumi import gcp:chronicle/feed:Feed default {{project}}/{{location}}/{{instance}}/{{feed}}
$ pulumi import gcp:chronicle/feed:Feed default {{location}}/{{instance}}/{{feed}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-betaTerraform Provider.
published on Thursday, May 7, 2026 by Pulumi
