sumologic.KinesisLogSource
Explore with Pulumi AI
Provides a Sumologic Kinesis Log source. This source is used to ingest log via Kinesis Firehose from AWS.
IMPORTANT: The AWS credentials are stored in plain-text in the state. This is a potential security issue.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sumologic from "@pulumi/sumologic";
const collector = new sumologic.Collector("collector", {description: "Just testing this"});
const kinesisLogAccessKey = new sumologic.KinesisLogSource("kinesisLogAccessKey", {
authentication: {
accessKey: "someKey",
secretKey: "******",
type: "S3BucketAuthentication",
},
category: "prod/kinesis/log",
collectorId: collector.collectorId,
contentType: "KinesisLog",
description: "Description for Kinesis Log Source",
path: {
bucketName: "testBucket",
pathExpression: "http-endpoint-failed/*",
scanInterval: 30000,
type: "KinesisLogPath",
},
});
const kinesisLogRoleArn = new sumologic.KinesisLogSource("kinesisLogRoleArn", {
authentication: {
roleArn: "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
type: "AWSRoleBasedAuthentication",
},
category: "prod/kinesis/log",
collectorId: collector.collectorId,
contentType: "KinesisLog",
description: "Description for Kinesis Log Source",
path: {
bucketName: "testBucket",
pathExpression: "http-endpoint-failed/*",
scanInterval: 30000,
type: "KinesisLogPath",
},
});
import pulumi
import pulumi_sumologic as sumologic
collector = sumologic.Collector("collector", description="Just testing this")
kinesis_log_access_key = sumologic.KinesisLogSource("kinesisLogAccessKey",
authentication={
"access_key": "someKey",
"secret_key": "******",
"type": "S3BucketAuthentication",
},
category="prod/kinesis/log",
collector_id=collector.collector_id,
content_type="KinesisLog",
description="Description for Kinesis Log Source",
path={
"bucket_name": "testBucket",
"path_expression": "http-endpoint-failed/*",
"scan_interval": 30000,
"type": "KinesisLogPath",
})
kinesis_log_role_arn = sumologic.KinesisLogSource("kinesisLogRoleArn",
authentication={
"role_arn": "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
"type": "AWSRoleBasedAuthentication",
},
category="prod/kinesis/log",
collector_id=collector.collector_id,
content_type="KinesisLog",
description="Description for Kinesis Log Source",
path={
"bucket_name": "testBucket",
"path_expression": "http-endpoint-failed/*",
"scan_interval": 30000,
"type": "KinesisLogPath",
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/sumologic/v3/sumologic"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
collector, err := sumologic.NewCollector(ctx, "collector", &sumologic.CollectorArgs{
Description: pulumi.String("Just testing this"),
})
if err != nil {
return err
}
_, err = sumologic.NewKinesisLogSource(ctx, "kinesisLogAccessKey", &sumologic.KinesisLogSourceArgs{
Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
AccessKey: pulumi.String("someKey"),
SecretKey: pulumi.String("******"),
Type: pulumi.String("S3BucketAuthentication"),
},
Category: pulumi.String("prod/kinesis/log"),
CollectorId: collector.CollectorId,
ContentType: pulumi.String("KinesisLog"),
Description: pulumi.String("Description for Kinesis Log Source"),
Path: &sumologic.KinesisLogSourcePathArgs{
BucketName: pulumi.String("testBucket"),
PathExpression: pulumi.String("http-endpoint-failed/*"),
ScanInterval: pulumi.Float64(30000),
Type: pulumi.String("KinesisLogPath"),
},
})
if err != nil {
return err
}
_, err = sumologic.NewKinesisLogSource(ctx, "kinesisLogRoleArn", &sumologic.KinesisLogSourceArgs{
Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
RoleArn: pulumi.String("arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI"),
Type: pulumi.String("AWSRoleBasedAuthentication"),
},
Category: pulumi.String("prod/kinesis/log"),
CollectorId: collector.CollectorId,
ContentType: pulumi.String("KinesisLog"),
Description: pulumi.String("Description for Kinesis Log Source"),
Path: &sumologic.KinesisLogSourcePathArgs{
BucketName: pulumi.String("testBucket"),
PathExpression: pulumi.String("http-endpoint-failed/*"),
ScanInterval: pulumi.Float64(30000),
Type: pulumi.String("KinesisLogPath"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sumologic = Pulumi.Sumologic;
return await Deployment.RunAsync(() =>
{
var collector = new Sumologic.Collector("collector", new()
{
Description = "Just testing this",
});
var kinesisLogAccessKey = new Sumologic.KinesisLogSource("kinesisLogAccessKey", new()
{
Authentication = new Sumologic.Inputs.KinesisLogSourceAuthenticationArgs
{
AccessKey = "someKey",
SecretKey = "******",
Type = "S3BucketAuthentication",
},
Category = "prod/kinesis/log",
CollectorId = collector.CollectorId,
ContentType = "KinesisLog",
Description = "Description for Kinesis Log Source",
Path = new Sumologic.Inputs.KinesisLogSourcePathArgs
{
BucketName = "testBucket",
PathExpression = "http-endpoint-failed/*",
ScanInterval = 30000,
Type = "KinesisLogPath",
},
});
var kinesisLogRoleArn = new Sumologic.KinesisLogSource("kinesisLogRoleArn", new()
{
Authentication = new Sumologic.Inputs.KinesisLogSourceAuthenticationArgs
{
RoleArn = "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
Type = "AWSRoleBasedAuthentication",
},
Category = "prod/kinesis/log",
CollectorId = collector.CollectorId,
ContentType = "KinesisLog",
Description = "Description for Kinesis Log Source",
Path = new Sumologic.Inputs.KinesisLogSourcePathArgs
{
BucketName = "testBucket",
PathExpression = "http-endpoint-failed/*",
ScanInterval = 30000,
Type = "KinesisLogPath",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sumologic.Collector;
import com.pulumi.sumologic.CollectorArgs;
import com.pulumi.sumologic.KinesisLogSource;
import com.pulumi.sumologic.KinesisLogSourceArgs;
import com.pulumi.sumologic.inputs.KinesisLogSourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.KinesisLogSourcePathArgs;
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) {
var collector = new Collector("collector", CollectorArgs.builder()
.description("Just testing this")
.build());
var kinesisLogAccessKey = new KinesisLogSource("kinesisLogAccessKey", KinesisLogSourceArgs.builder()
.authentication(KinesisLogSourceAuthenticationArgs.builder()
.accessKey("someKey")
.secretKey("******")
.type("S3BucketAuthentication")
.build())
.category("prod/kinesis/log")
.collectorId(collector.collectorId())
.contentType("KinesisLog")
.description("Description for Kinesis Log Source")
.path(KinesisLogSourcePathArgs.builder()
.bucketName("testBucket")
.pathExpression("http-endpoint-failed/*")
.scanInterval(30000)
.type("KinesisLogPath")
.build())
.build());
var kinesisLogRoleArn = new KinesisLogSource("kinesisLogRoleArn", KinesisLogSourceArgs.builder()
.authentication(KinesisLogSourceAuthenticationArgs.builder()
.roleArn("arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI")
.type("AWSRoleBasedAuthentication")
.build())
.category("prod/kinesis/log")
.collectorId(collector.collectorId())
.contentType("KinesisLog")
.description("Description for Kinesis Log Source")
.path(KinesisLogSourcePathArgs.builder()
.bucketName("testBucket")
.pathExpression("http-endpoint-failed/*")
.scanInterval(30000)
.type("KinesisLogPath")
.build())
.build());
}
}
resources:
kinesisLogAccessKey:
type: sumologic:KinesisLogSource
properties:
authentication:
accessKey: someKey
secretKey: '******'
type: S3BucketAuthentication
category: prod/kinesis/log
collectorId: ${collector.collectorId}
contentType: KinesisLog
description: Description for Kinesis Log Source
path:
bucketName: testBucket
pathExpression: http-endpoint-failed/*
scanInterval: 30000
type: KinesisLogPath
kinesisLogRoleArn:
type: sumologic:KinesisLogSource
properties:
authentication:
roleArn: arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI
type: AWSRoleBasedAuthentication
category: prod/kinesis/log
collectorId: ${collector.collectorId}
contentType: KinesisLog
description: Description for Kinesis Log Source
path:
bucketName: testBucket
pathExpression: http-endpoint-failed/*
scanInterval: 30000
type: KinesisLogPath
collector:
type: sumologic:Collector
properties:
description: Just testing this
Create KinesisLogSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KinesisLogSource(name: string, args: KinesisLogSourceArgs, opts?: CustomResourceOptions);
@overload
def KinesisLogSource(resource_name: str,
args: KinesisLogSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KinesisLogSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
collector_id: Optional[float] = None,
content_type: Optional[str] = None,
filters: Optional[Sequence[KinesisLogSourceFilterArgs]] = None,
force_timezone: Optional[bool] = None,
automatic_date_parsing: Optional[bool] = None,
cutoff_relative_time: Optional[str] = None,
cutoff_timestamp: Optional[float] = None,
default_date_formats: Optional[Sequence[KinesisLogSourceDefaultDateFormatArgs]] = None,
description: Optional[str] = None,
fields: Optional[Mapping[str, str]] = None,
authentication: Optional[KinesisLogSourceAuthenticationArgs] = None,
category: Optional[str] = None,
hash_algorithm: Optional[str] = None,
host_name: Optional[str] = None,
kinesis_log_source_id: Optional[str] = None,
manual_prefix_regexp: Optional[str] = None,
message_per_request: Optional[bool] = None,
multiline_processing_enabled: Optional[bool] = None,
name: Optional[str] = None,
path: Optional[KinesisLogSourcePathArgs] = None,
timezone: Optional[str] = None,
use_autoline_matching: Optional[bool] = None)
func NewKinesisLogSource(ctx *Context, name string, args KinesisLogSourceArgs, opts ...ResourceOption) (*KinesisLogSource, error)
public KinesisLogSource(string name, KinesisLogSourceArgs args, CustomResourceOptions? opts = null)
public KinesisLogSource(String name, KinesisLogSourceArgs args)
public KinesisLogSource(String name, KinesisLogSourceArgs args, CustomResourceOptions options)
type: sumologic:KinesisLogSource
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 KinesisLogSourceArgs
- 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 KinesisLogSourceArgs
- 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 KinesisLogSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KinesisLogSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KinesisLogSourceArgs
- 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 kinesisLogSourceResource = new Sumologic.KinesisLogSource("kinesisLogSourceResource", new()
{
CollectorId = 0,
ContentType = "string",
Filters = new[]
{
new Sumologic.Inputs.KinesisLogSourceFilterArgs
{
FilterType = "string",
Name = "string",
Regexp = "string",
Mask = "string",
},
},
ForceTimezone = false,
AutomaticDateParsing = false,
CutoffRelativeTime = "string",
CutoffTimestamp = 0,
DefaultDateFormats = new[]
{
new Sumologic.Inputs.KinesisLogSourceDefaultDateFormatArgs
{
Format = "string",
Locator = "string",
},
},
Description = "string",
Fields =
{
{ "string", "string" },
},
Authentication = new Sumologic.Inputs.KinesisLogSourceAuthenticationArgs
{
AccessKey = "string",
RoleArn = "string",
SecretKey = "string",
Type = "string",
},
Category = "string",
HashAlgorithm = "string",
HostName = "string",
KinesisLogSourceId = "string",
ManualPrefixRegexp = "string",
MessagePerRequest = false,
MultilineProcessingEnabled = false,
Name = "string",
Path = new Sumologic.Inputs.KinesisLogSourcePathArgs
{
BucketName = "string",
PathExpression = "string",
ScanInterval = 0,
Type = "string",
},
Timezone = "string",
UseAutolineMatching = false,
});
example, err := sumologic.NewKinesisLogSource(ctx, "kinesisLogSourceResource", &sumologic.KinesisLogSourceArgs{
CollectorId: pulumi.Float64(0),
ContentType: pulumi.String("string"),
Filters: sumologic.KinesisLogSourceFilterArray{
&sumologic.KinesisLogSourceFilterArgs{
FilterType: pulumi.String("string"),
Name: pulumi.String("string"),
Regexp: pulumi.String("string"),
Mask: pulumi.String("string"),
},
},
ForceTimezone: pulumi.Bool(false),
AutomaticDateParsing: pulumi.Bool(false),
CutoffRelativeTime: pulumi.String("string"),
CutoffTimestamp: pulumi.Float64(0),
DefaultDateFormats: sumologic.KinesisLogSourceDefaultDateFormatArray{
&sumologic.KinesisLogSourceDefaultDateFormatArgs{
Format: pulumi.String("string"),
Locator: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Fields: pulumi.StringMap{
"string": pulumi.String("string"),
},
Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
AccessKey: pulumi.String("string"),
RoleArn: pulumi.String("string"),
SecretKey: pulumi.String("string"),
Type: pulumi.String("string"),
},
Category: pulumi.String("string"),
HashAlgorithm: pulumi.String("string"),
HostName: pulumi.String("string"),
KinesisLogSourceId: pulumi.String("string"),
ManualPrefixRegexp: pulumi.String("string"),
MessagePerRequest: pulumi.Bool(false),
MultilineProcessingEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Path: &sumologic.KinesisLogSourcePathArgs{
BucketName: pulumi.String("string"),
PathExpression: pulumi.String("string"),
ScanInterval: pulumi.Float64(0),
Type: pulumi.String("string"),
},
Timezone: pulumi.String("string"),
UseAutolineMatching: pulumi.Bool(false),
})
var kinesisLogSourceResource = new KinesisLogSource("kinesisLogSourceResource", KinesisLogSourceArgs.builder()
.collectorId(0.0)
.contentType("string")
.filters(KinesisLogSourceFilterArgs.builder()
.filterType("string")
.name("string")
.regexp("string")
.mask("string")
.build())
.forceTimezone(false)
.automaticDateParsing(false)
.cutoffRelativeTime("string")
.cutoffTimestamp(0.0)
.defaultDateFormats(KinesisLogSourceDefaultDateFormatArgs.builder()
.format("string")
.locator("string")
.build())
.description("string")
.fields(Map.of("string", "string"))
.authentication(KinesisLogSourceAuthenticationArgs.builder()
.accessKey("string")
.roleArn("string")
.secretKey("string")
.type("string")
.build())
.category("string")
.hashAlgorithm("string")
.hostName("string")
.kinesisLogSourceId("string")
.manualPrefixRegexp("string")
.messagePerRequest(false)
.multilineProcessingEnabled(false)
.name("string")
.path(KinesisLogSourcePathArgs.builder()
.bucketName("string")
.pathExpression("string")
.scanInterval(0.0)
.type("string")
.build())
.timezone("string")
.useAutolineMatching(false)
.build());
kinesis_log_source_resource = sumologic.KinesisLogSource("kinesisLogSourceResource",
collector_id=0,
content_type="string",
filters=[{
"filter_type": "string",
"name": "string",
"regexp": "string",
"mask": "string",
}],
force_timezone=False,
automatic_date_parsing=False,
cutoff_relative_time="string",
cutoff_timestamp=0,
default_date_formats=[{
"format": "string",
"locator": "string",
}],
description="string",
fields={
"string": "string",
},
authentication={
"access_key": "string",
"role_arn": "string",
"secret_key": "string",
"type": "string",
},
category="string",
hash_algorithm="string",
host_name="string",
kinesis_log_source_id="string",
manual_prefix_regexp="string",
message_per_request=False,
multiline_processing_enabled=False,
name="string",
path={
"bucket_name": "string",
"path_expression": "string",
"scan_interval": 0,
"type": "string",
},
timezone="string",
use_autoline_matching=False)
const kinesisLogSourceResource = new sumologic.KinesisLogSource("kinesisLogSourceResource", {
collectorId: 0,
contentType: "string",
filters: [{
filterType: "string",
name: "string",
regexp: "string",
mask: "string",
}],
forceTimezone: false,
automaticDateParsing: false,
cutoffRelativeTime: "string",
cutoffTimestamp: 0,
defaultDateFormats: [{
format: "string",
locator: "string",
}],
description: "string",
fields: {
string: "string",
},
authentication: {
accessKey: "string",
roleArn: "string",
secretKey: "string",
type: "string",
},
category: "string",
hashAlgorithm: "string",
hostName: "string",
kinesisLogSourceId: "string",
manualPrefixRegexp: "string",
messagePerRequest: false,
multilineProcessingEnabled: false,
name: "string",
path: {
bucketName: "string",
pathExpression: "string",
scanInterval: 0,
type: "string",
},
timezone: "string",
useAutolineMatching: false,
});
type: sumologic:KinesisLogSource
properties:
authentication:
accessKey: string
roleArn: string
secretKey: string
type: string
automaticDateParsing: false
category: string
collectorId: 0
contentType: string
cutoffRelativeTime: string
cutoffTimestamp: 0
defaultDateFormats:
- format: string
locator: string
description: string
fields:
string: string
filters:
- filterType: string
mask: string
name: string
regexp: string
forceTimezone: false
hashAlgorithm: string
hostName: string
kinesisLogSourceId: string
manualPrefixRegexp: string
messagePerRequest: false
multilineProcessingEnabled: false
name: string
path:
bucketName: string
pathExpression: string
scanInterval: 0
type: string
timezone: string
useAutolineMatching: false
KinesisLogSource 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 KinesisLogSource resource accepts the following input properties:
- Collector
Id double - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Cutoff
Relative stringTime - Cutoff
Timestamp double - Default
Date List<KinesisFormats Log Source Default Date Format> - Description string
- Fields Dictionary<string, string>
- Filters
List<Kinesis
Log Source Filter> - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Kinesis
Log stringSource Id - The internal ID of the source.
- Manual
Prefix stringRegexp - Message
Per boolRequest - Multiline
Processing boolEnabled - Name string
- Path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Use
Autoline boolMatching
- Collector
Id float64 - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Authentication
Kinesis
Log Source Authentication Args - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Cutoff
Relative stringTime - Cutoff
Timestamp float64 - Default
Date []KinesisFormats Log Source Default Date Format Args - Description string
- Fields map[string]string
- Filters
[]Kinesis
Log Source Filter Args - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Kinesis
Log stringSource Id - The internal ID of the source.
- Manual
Prefix stringRegexp - Message
Per boolRequest - Multiline
Processing boolEnabled - Name string
- Path
Kinesis
Log Source Path Args - The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Use
Autoline boolMatching
- collector
Id Double - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date BooleanParsing - category String
- cutoff
Relative StringTime - cutoff
Timestamp Double - default
Date List<KinesisFormats Log Source Default Date Format> - description String
- fields Map<String,String>
- filters
List<Kinesis
Log Source Filter> - force
Timezone Boolean - hash
Algorithm String - host
Name String - kinesis
Log StringSource Id - The internal ID of the source.
- manual
Prefix StringRegexp - message
Per BooleanRequest - multiline
Processing BooleanEnabled - name String
- path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- timezone String
- use
Autoline BooleanMatching
- collector
Id number - content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date booleanParsing - category string
- cutoff
Relative stringTime - cutoff
Timestamp number - default
Date KinesisFormats Log Source Default Date Format[] - description string
- fields {[key: string]: string}
- filters
Kinesis
Log Source Filter[] - force
Timezone boolean - hash
Algorithm string - host
Name string - kinesis
Log stringSource Id - The internal ID of the source.
- manual
Prefix stringRegexp - message
Per booleanRequest - multiline
Processing booleanEnabled - name string
- path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- timezone string
- use
Autoline booleanMatching
- collector_
id float - content_
type str - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
Kinesis
Log Source Authentication Args - Authentication details for connecting to the S3 bucket.
- automatic_
date_ boolparsing - category str
- cutoff_
relative_ strtime - cutoff_
timestamp float - default_
date_ Sequence[Kinesisformats Log Source Default Date Format Args] - description str
- fields Mapping[str, str]
- filters
Sequence[Kinesis
Log Source Filter Args] - force_
timezone bool - hash_
algorithm str - host_
name str - kinesis_
log_ strsource_ id - The internal ID of the source.
- manual_
prefix_ strregexp - message_
per_ boolrequest - multiline_
processing_ boolenabled - name str
- path
Kinesis
Log Source Path Args - The location of S3 bucket for failed Kinesis log data.
- timezone str
- use_
autoline_ boolmatching
- collector
Id Number - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication Property Map
- Authentication details for connecting to the S3 bucket.
- automatic
Date BooleanParsing - category String
- cutoff
Relative StringTime - cutoff
Timestamp Number - default
Date List<Property Map>Formats - description String
- fields Map<String>
- filters List<Property Map>
- force
Timezone Boolean - hash
Algorithm String - host
Name String - kinesis
Log StringSource Id - The internal ID of the source.
- manual
Prefix StringRegexp - message
Per BooleanRequest - multiline
Processing BooleanEnabled - name String
- path Property Map
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- use
Autoline BooleanMatching
Outputs
All input properties are implicitly available as output properties. Additionally, the KinesisLogSource resource produces the following output properties:
Look up Existing KinesisLogSource Resource
Get an existing KinesisLogSource 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?: KinesisLogSourceState, opts?: CustomResourceOptions): KinesisLogSource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[KinesisLogSourceAuthenticationArgs] = None,
automatic_date_parsing: Optional[bool] = None,
category: Optional[str] = None,
collector_id: Optional[float] = None,
content_type: Optional[str] = None,
cutoff_relative_time: Optional[str] = None,
cutoff_timestamp: Optional[float] = None,
default_date_formats: Optional[Sequence[KinesisLogSourceDefaultDateFormatArgs]] = None,
description: Optional[str] = None,
fields: Optional[Mapping[str, str]] = None,
filters: Optional[Sequence[KinesisLogSourceFilterArgs]] = None,
force_timezone: Optional[bool] = None,
hash_algorithm: Optional[str] = None,
host_name: Optional[str] = None,
kinesis_log_source_id: Optional[str] = None,
manual_prefix_regexp: Optional[str] = None,
message_per_request: Optional[bool] = None,
multiline_processing_enabled: Optional[bool] = None,
name: Optional[str] = None,
path: Optional[KinesisLogSourcePathArgs] = None,
timezone: Optional[str] = None,
url: Optional[str] = None,
use_autoline_matching: Optional[bool] = None) -> KinesisLogSource
func GetKinesisLogSource(ctx *Context, name string, id IDInput, state *KinesisLogSourceState, opts ...ResourceOption) (*KinesisLogSource, error)
public static KinesisLogSource Get(string name, Input<string> id, KinesisLogSourceState? state, CustomResourceOptions? opts = null)
public static KinesisLogSource get(String name, Output<String> id, KinesisLogSourceState state, CustomResourceOptions options)
resources: _: type: sumologic:KinesisLogSource 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.
- Authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Collector
Id double - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Cutoff
Relative stringTime - Cutoff
Timestamp double - Default
Date List<KinesisFormats Log Source Default Date Format> - Description string
- Fields Dictionary<string, string>
- Filters
List<Kinesis
Log Source Filter> - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Kinesis
Log stringSource Id - The internal ID of the source.
- Manual
Prefix stringRegexp - Message
Per boolRequest - Multiline
Processing boolEnabled - Name string
- Path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- Use
Autoline boolMatching
- Authentication
Kinesis
Log Source Authentication Args - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Collector
Id float64 - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Cutoff
Relative stringTime - Cutoff
Timestamp float64 - Default
Date []KinesisFormats Log Source Default Date Format Args - Description string
- Fields map[string]string
- Filters
[]Kinesis
Log Source Filter Args - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Kinesis
Log stringSource Id - The internal ID of the source.
- Manual
Prefix stringRegexp - Message
Per boolRequest - Multiline
Processing boolEnabled - Name string
- Path
Kinesis
Log Source Path Args - The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- Use
Autoline boolMatching
- authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date BooleanParsing - category String
- collector
Id Double - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative StringTime - cutoff
Timestamp Double - default
Date List<KinesisFormats Log Source Default Date Format> - description String
- fields Map<String,String>
- filters
List<Kinesis
Log Source Filter> - force
Timezone Boolean - hash
Algorithm String - host
Name String - kinesis
Log StringSource Id - The internal ID of the source.
- manual
Prefix StringRegexp - message
Per BooleanRequest - multiline
Processing BooleanEnabled - name String
- path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- timezone String
- url String
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- use
Autoline BooleanMatching
- authentication
Kinesis
Log Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date booleanParsing - category string
- collector
Id number - content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative stringTime - cutoff
Timestamp number - default
Date KinesisFormats Log Source Default Date Format[] - description string
- fields {[key: string]: string}
- filters
Kinesis
Log Source Filter[] - force
Timezone boolean - hash
Algorithm string - host
Name string - kinesis
Log stringSource Id - The internal ID of the source.
- manual
Prefix stringRegexp - message
Per booleanRequest - multiline
Processing booleanEnabled - name string
- path
Kinesis
Log Source Path - The location of S3 bucket for failed Kinesis log data.
- timezone string
- url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- use
Autoline booleanMatching
- authentication
Kinesis
Log Source Authentication Args - Authentication details for connecting to the S3 bucket.
- automatic_
date_ boolparsing - category str
- collector_
id float - content_
type str - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff_
relative_ strtime - cutoff_
timestamp float - default_
date_ Sequence[Kinesisformats Log Source Default Date Format Args] - description str
- fields Mapping[str, str]
- filters
Sequence[Kinesis
Log Source Filter Args] - force_
timezone bool - hash_
algorithm str - host_
name str - kinesis_
log_ strsource_ id - The internal ID of the source.
- manual_
prefix_ strregexp - message_
per_ boolrequest - multiline_
processing_ boolenabled - name str
- path
Kinesis
Log Source Path Args - The location of S3 bucket for failed Kinesis log data.
- timezone str
- url str
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- use_
autoline_ boolmatching
- authentication Property Map
- Authentication details for connecting to the S3 bucket.
- automatic
Date BooleanParsing - category String
- collector
Id Number - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative StringTime - cutoff
Timestamp Number - default
Date List<Property Map>Formats - description String
- fields Map<String>
- filters List<Property Map>
- force
Timezone Boolean - hash
Algorithm String - host
Name String - kinesis
Log StringSource Id - The internal ID of the source.
- manual
Prefix StringRegexp - message
Per BooleanRequest - multiline
Processing BooleanEnabled - name String
- path Property Map
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- url String
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- use
Autoline BooleanMatching
Supporting Types
KinesisLogSourceAuthentication, KinesisLogSourceAuthenticationArgs
- Access
Key string - Your AWS access key if using type
S3BucketAuthentication
- Role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- Secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- Type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
- Access
Key string - Your AWS access key if using type
S3BucketAuthentication
- Role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- Secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- Type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
- access
Key String - Your AWS access key if using type
S3BucketAuthentication
- role
Arn String - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- secret
Key String - Your AWS secret key if using type
S3BucketAuthentication
- type String
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
- access
Key string - Your AWS access key if using type
S3BucketAuthentication
- role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
- access_
key str - Your AWS access key if using type
S3BucketAuthentication
- role_
arn str - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- secret_
key str - Your AWS secret key if using type
S3BucketAuthentication
- type str
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
- access
Key String - Your AWS access key if using type
S3BucketAuthentication
- role
Arn String - Your AWS role ARN if using type
AWSRoleBasedAuthentication
- secret
Key String - Your AWS secret key if using type
S3BucketAuthentication
- type String
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
orNoAuthentication
KinesisLogSourceDefaultDateFormat, KinesisLogSourceDefaultDateFormatArgs
KinesisLogSourceFilter, KinesisLogSourceFilterArgs
- Filter
Type string - Name string
- Regexp string
- Mask string
- Filter
Type string - Name string
- Regexp string
- Mask string
- filter
Type String - name String
- regexp String
- mask String
- filter
Type string - name string
- regexp string
- mask string
- filter_
type str - name str
- regexp str
- mask str
- filter
Type String - name String
- regexp String
- mask String
KinesisLogSourcePath, KinesisLogSourcePathArgs
- Bucket
Name string - The name of the bucket. This is needed if using type
KinesisLogPath
. - Path
Expression string - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - Scan
Interval double - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- Type string
- Must be either
KinesisLogPath
orNoPathExpression
- Bucket
Name string - The name of the bucket. This is needed if using type
KinesisLogPath
. - Path
Expression string - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - Scan
Interval float64 - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- Type string
- Must be either
KinesisLogPath
orNoPathExpression
- bucket
Name String - The name of the bucket. This is needed if using type
KinesisLogPath
. - path
Expression String - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - scan
Interval Double - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type String
- Must be either
KinesisLogPath
orNoPathExpression
- bucket
Name string - The name of the bucket. This is needed if using type
KinesisLogPath
. - path
Expression string - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - scan
Interval number - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type string
- Must be either
KinesisLogPath
orNoPathExpression
- bucket_
name str - The name of the bucket. This is needed if using type
KinesisLogPath
. - path_
expression str - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - scan_
interval float - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type str
- Must be either
KinesisLogPath
orNoPathExpression
- bucket
Name String - The name of the bucket. This is needed if using type
KinesisLogPath
. - path
Expression String - The path to the data. This is needed if using type
KinesisLogPath
. For Kinesis log source, it must includehttp-endpoint-failed/
. - scan
Interval Number - The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type String
- Must be either
KinesisLogPath
orNoPathExpression
Import
Kinesis Log sources can be imported using the collector and source IDs (collector/source
), e.g.:
hcl
$ pulumi import sumologic:index/kinesisLogSource:KinesisLogSource test 123/456
HTTP sources can be imported using the collector name and source name (collectorName/sourceName
), e.g.:
hcl
$ pulumi import sumologic:index/kinesisLogSource:KinesisLogSource test my-test-collector/my-test-source
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Sumo Logic sumologic/terraform-provider-sumologic
- License
- Notes
- This Pulumi package is based on the
sumologic
Terraform Provider.