Create LogIngestConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogIngestConfig(name: string, args?: LogIngestConfigArgs, opts?: CustomResourceOptions);@overload
def LogIngestConfig(resource_name: str,
args: Optional[LogIngestConfigArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def LogIngestConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
field_normalization: Optional[LogIngestConfigFieldNormalizationArgs] = None,
field_parsers: Optional[Sequence[LogIngestConfigFieldParserArgs]] = None,
plaintext_parsers: Optional[Sequence[LogIngestConfigPlaintextParserArgs]] = None)func NewLogIngestConfig(ctx *Context, name string, args *LogIngestConfigArgs, opts ...ResourceOption) (*LogIngestConfig, error)public LogIngestConfig(string name, LogIngestConfigArgs? args = null, CustomResourceOptions? opts = null)
public LogIngestConfig(String name, LogIngestConfigArgs args)
public LogIngestConfig(String name, LogIngestConfigArgs args, CustomResourceOptions options)
type: chronosphere:LogIngestConfig
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 LogIngestConfigArgs
- 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 LogIngestConfigArgs
- 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 LogIngestConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogIngestConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogIngestConfigArgs
- 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 logIngestConfigResource = new Pulumi.LogIngestConfig("logIngestConfigResource", new()
{
FieldNormalization = new Pulumi.Inputs.LogIngestConfigFieldNormalizationArgs
{
CustomFieldNormalizations = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationCustomFieldNormalizationArgs
{
Normalization = new Pulumi.Inputs.LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationArgs
{
DefaultValue = "string",
SanitizePatterns = new[]
{
"string",
},
Sources = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSourceArgs
{
Selector = "string",
},
},
ValueMap =
{
{ "string", "string" },
},
},
Target = "string",
},
},
Message = new Pulumi.Inputs.LogIngestConfigFieldNormalizationMessageArgs
{
DefaultValue = "string",
SanitizePatterns = new[]
{
"string",
},
Sources = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationMessageSourceArgs
{
Selector = "string",
},
},
ValueMap =
{
{ "string", "string" },
},
},
PrimaryKey = new Pulumi.Inputs.LogIngestConfigFieldNormalizationPrimaryKeyArgs
{
Normalization = new Pulumi.Inputs.LogIngestConfigFieldNormalizationPrimaryKeyNormalizationArgs
{
DefaultValue = "string",
SanitizePatterns = new[]
{
"string",
},
Sources = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSourceArgs
{
Selector = "string",
},
},
ValueMap =
{
{ "string", "string" },
},
},
Target = "string",
},
Severity = new Pulumi.Inputs.LogIngestConfigFieldNormalizationSeverityArgs
{
DefaultValue = "string",
SanitizePatterns = new[]
{
"string",
},
Sources = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationSeveritySourceArgs
{
Selector = "string",
},
},
ValueMap =
{
{ "string", "string" },
},
},
Timestamp = new Pulumi.Inputs.LogIngestConfigFieldNormalizationTimestampArgs
{
Sources = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldNormalizationTimestampSourceArgs
{
Selector = "string",
},
},
},
},
FieldParsers = new[]
{
new Pulumi.Inputs.LogIngestConfigFieldParserArgs
{
Parser = new Pulumi.Inputs.LogIngestConfigFieldParserParserArgs
{
ParserType = "string",
KeyValueParser = new Pulumi.Inputs.LogIngestConfigFieldParserParserKeyValueParserArgs
{
Delimiter = "string",
PairSeparator = "string",
TrimSet = "string",
},
RegexParser = new Pulumi.Inputs.LogIngestConfigFieldParserParserRegexParserArgs
{
Regex = "string",
},
},
Source = new Pulumi.Inputs.LogIngestConfigFieldParserSourceArgs
{
Selector = "string",
},
Destination = new Pulumi.Inputs.LogIngestConfigFieldParserDestinationArgs
{
Selector = "string",
},
Mode = "string",
},
},
PlaintextParsers = new[]
{
new Pulumi.Inputs.LogIngestConfigPlaintextParserArgs
{
Name = "string",
Parser = new Pulumi.Inputs.LogIngestConfigPlaintextParserParserArgs
{
ParserType = "string",
KeyValueParser = new Pulumi.Inputs.LogIngestConfigPlaintextParserParserKeyValueParserArgs
{
Delimiter = "string",
PairSeparator = "string",
TrimSet = "string",
},
RegexParser = new Pulumi.Inputs.LogIngestConfigPlaintextParserParserRegexParserArgs
{
Regex = "string",
},
},
KeepOriginal = false,
Mode = "string",
},
},
});
example, err := chronosphere.NewLogIngestConfig(ctx, "logIngestConfigResource", &chronosphere.LogIngestConfigArgs{
FieldNormalization: &chronosphere.LogIngestConfigFieldNormalizationArgs{
CustomFieldNormalizations: chronosphere.LogIngestConfigFieldNormalizationCustomFieldNormalizationArray{
&chronosphere.LogIngestConfigFieldNormalizationCustomFieldNormalizationArgs{
Normalization: &chronosphere.LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationArgs{
DefaultValue: pulumi.String("string"),
SanitizePatterns: pulumi.StringArray{
pulumi.String("string"),
},
Sources: chronosphere.LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSourceArray{
&chronosphere.LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSourceArgs{
Selector: pulumi.String("string"),
},
},
ValueMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Target: pulumi.String("string"),
},
},
Message: &chronosphere.LogIngestConfigFieldNormalizationMessageArgs{
DefaultValue: pulumi.String("string"),
SanitizePatterns: pulumi.StringArray{
pulumi.String("string"),
},
Sources: chronosphere.LogIngestConfigFieldNormalizationMessageSourceArray{
&chronosphere.LogIngestConfigFieldNormalizationMessageSourceArgs{
Selector: pulumi.String("string"),
},
},
ValueMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
PrimaryKey: &chronosphere.LogIngestConfigFieldNormalizationPrimaryKeyArgs{
Normalization: &chronosphere.LogIngestConfigFieldNormalizationPrimaryKeyNormalizationArgs{
DefaultValue: pulumi.String("string"),
SanitizePatterns: pulumi.StringArray{
pulumi.String("string"),
},
Sources: chronosphere.LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSourceArray{
&chronosphere.LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSourceArgs{
Selector: pulumi.String("string"),
},
},
ValueMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Target: pulumi.String("string"),
},
Severity: &chronosphere.LogIngestConfigFieldNormalizationSeverityArgs{
DefaultValue: pulumi.String("string"),
SanitizePatterns: pulumi.StringArray{
pulumi.String("string"),
},
Sources: chronosphere.LogIngestConfigFieldNormalizationSeveritySourceArray{
&chronosphere.LogIngestConfigFieldNormalizationSeveritySourceArgs{
Selector: pulumi.String("string"),
},
},
ValueMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Timestamp: &chronosphere.LogIngestConfigFieldNormalizationTimestampArgs{
Sources: chronosphere.LogIngestConfigFieldNormalizationTimestampSourceArray{
&chronosphere.LogIngestConfigFieldNormalizationTimestampSourceArgs{
Selector: pulumi.String("string"),
},
},
},
},
FieldParsers: chronosphere.LogIngestConfigFieldParserArray{
&chronosphere.LogIngestConfigFieldParserArgs{
Parser: &chronosphere.LogIngestConfigFieldParserParserArgs{
ParserType: pulumi.String("string"),
KeyValueParser: &chronosphere.LogIngestConfigFieldParserParserKeyValueParserArgs{
Delimiter: pulumi.String("string"),
PairSeparator: pulumi.String("string"),
TrimSet: pulumi.String("string"),
},
RegexParser: &chronosphere.LogIngestConfigFieldParserParserRegexParserArgs{
Regex: pulumi.String("string"),
},
},
Source: &chronosphere.LogIngestConfigFieldParserSourceArgs{
Selector: pulumi.String("string"),
},
Destination: &chronosphere.LogIngestConfigFieldParserDestinationArgs{
Selector: pulumi.String("string"),
},
Mode: pulumi.String("string"),
},
},
PlaintextParsers: chronosphere.LogIngestConfigPlaintextParserArray{
&chronosphere.LogIngestConfigPlaintextParserArgs{
Name: pulumi.String("string"),
Parser: &chronosphere.LogIngestConfigPlaintextParserParserArgs{
ParserType: pulumi.String("string"),
KeyValueParser: &chronosphere.LogIngestConfigPlaintextParserParserKeyValueParserArgs{
Delimiter: pulumi.String("string"),
PairSeparator: pulumi.String("string"),
TrimSet: pulumi.String("string"),
},
RegexParser: &chronosphere.LogIngestConfigPlaintextParserParserRegexParserArgs{
Regex: pulumi.String("string"),
},
},
KeepOriginal: pulumi.Bool(false),
Mode: pulumi.String("string"),
},
},
})
var logIngestConfigResource = new LogIngestConfig("logIngestConfigResource", LogIngestConfigArgs.builder()
.fieldNormalization(LogIngestConfigFieldNormalizationArgs.builder()
.customFieldNormalizations(LogIngestConfigFieldNormalizationCustomFieldNormalizationArgs.builder()
.normalization(LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationArgs.builder()
.defaultValue("string")
.sanitizePatterns("string")
.sources(LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSourceArgs.builder()
.selector("string")
.build())
.valueMap(Map.of("string", "string"))
.build())
.target("string")
.build())
.message(LogIngestConfigFieldNormalizationMessageArgs.builder()
.defaultValue("string")
.sanitizePatterns("string")
.sources(LogIngestConfigFieldNormalizationMessageSourceArgs.builder()
.selector("string")
.build())
.valueMap(Map.of("string", "string"))
.build())
.primaryKey(LogIngestConfigFieldNormalizationPrimaryKeyArgs.builder()
.normalization(LogIngestConfigFieldNormalizationPrimaryKeyNormalizationArgs.builder()
.defaultValue("string")
.sanitizePatterns("string")
.sources(LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSourceArgs.builder()
.selector("string")
.build())
.valueMap(Map.of("string", "string"))
.build())
.target("string")
.build())
.severity(LogIngestConfigFieldNormalizationSeverityArgs.builder()
.defaultValue("string")
.sanitizePatterns("string")
.sources(LogIngestConfigFieldNormalizationSeveritySourceArgs.builder()
.selector("string")
.build())
.valueMap(Map.of("string", "string"))
.build())
.timestamp(LogIngestConfigFieldNormalizationTimestampArgs.builder()
.sources(LogIngestConfigFieldNormalizationTimestampSourceArgs.builder()
.selector("string")
.build())
.build())
.build())
.fieldParsers(LogIngestConfigFieldParserArgs.builder()
.parser(LogIngestConfigFieldParserParserArgs.builder()
.parserType("string")
.keyValueParser(LogIngestConfigFieldParserParserKeyValueParserArgs.builder()
.delimiter("string")
.pairSeparator("string")
.trimSet("string")
.build())
.regexParser(LogIngestConfigFieldParserParserRegexParserArgs.builder()
.regex("string")
.build())
.build())
.source(LogIngestConfigFieldParserSourceArgs.builder()
.selector("string")
.build())
.destination(LogIngestConfigFieldParserDestinationArgs.builder()
.selector("string")
.build())
.mode("string")
.build())
.plaintextParsers(LogIngestConfigPlaintextParserArgs.builder()
.name("string")
.parser(LogIngestConfigPlaintextParserParserArgs.builder()
.parserType("string")
.keyValueParser(LogIngestConfigPlaintextParserParserKeyValueParserArgs.builder()
.delimiter("string")
.pairSeparator("string")
.trimSet("string")
.build())
.regexParser(LogIngestConfigPlaintextParserParserRegexParserArgs.builder()
.regex("string")
.build())
.build())
.keepOriginal(false)
.mode("string")
.build())
.build());
log_ingest_config_resource = chronosphere.LogIngestConfig("logIngestConfigResource",
field_normalization={
"custom_field_normalizations": [{
"normalization": {
"default_value": "string",
"sanitize_patterns": ["string"],
"sources": [{
"selector": "string",
}],
"value_map": {
"string": "string",
},
},
"target": "string",
}],
"message": {
"default_value": "string",
"sanitize_patterns": ["string"],
"sources": [{
"selector": "string",
}],
"value_map": {
"string": "string",
},
},
"primary_key": {
"normalization": {
"default_value": "string",
"sanitize_patterns": ["string"],
"sources": [{
"selector": "string",
}],
"value_map": {
"string": "string",
},
},
"target": "string",
},
"severity": {
"default_value": "string",
"sanitize_patterns": ["string"],
"sources": [{
"selector": "string",
}],
"value_map": {
"string": "string",
},
},
"timestamp": {
"sources": [{
"selector": "string",
}],
},
},
field_parsers=[{
"parser": {
"parser_type": "string",
"key_value_parser": {
"delimiter": "string",
"pair_separator": "string",
"trim_set": "string",
},
"regex_parser": {
"regex": "string",
},
},
"source": {
"selector": "string",
},
"destination": {
"selector": "string",
},
"mode": "string",
}],
plaintext_parsers=[{
"name": "string",
"parser": {
"parser_type": "string",
"key_value_parser": {
"delimiter": "string",
"pair_separator": "string",
"trim_set": "string",
},
"regex_parser": {
"regex": "string",
},
},
"keep_original": False,
"mode": "string",
}])
const logIngestConfigResource = new chronosphere.LogIngestConfig("logIngestConfigResource", {
fieldNormalization: {
customFieldNormalizations: [{
normalization: {
defaultValue: "string",
sanitizePatterns: ["string"],
sources: [{
selector: "string",
}],
valueMap: {
string: "string",
},
},
target: "string",
}],
message: {
defaultValue: "string",
sanitizePatterns: ["string"],
sources: [{
selector: "string",
}],
valueMap: {
string: "string",
},
},
primaryKey: {
normalization: {
defaultValue: "string",
sanitizePatterns: ["string"],
sources: [{
selector: "string",
}],
valueMap: {
string: "string",
},
},
target: "string",
},
severity: {
defaultValue: "string",
sanitizePatterns: ["string"],
sources: [{
selector: "string",
}],
valueMap: {
string: "string",
},
},
timestamp: {
sources: [{
selector: "string",
}],
},
},
fieldParsers: [{
parser: {
parserType: "string",
keyValueParser: {
delimiter: "string",
pairSeparator: "string",
trimSet: "string",
},
regexParser: {
regex: "string",
},
},
source: {
selector: "string",
},
destination: {
selector: "string",
},
mode: "string",
}],
plaintextParsers: [{
name: "string",
parser: {
parserType: "string",
keyValueParser: {
delimiter: "string",
pairSeparator: "string",
trimSet: "string",
},
regexParser: {
regex: "string",
},
},
keepOriginal: false,
mode: "string",
}],
});
type: chronosphere:LogIngestConfig
properties:
fieldNormalization:
customFieldNormalizations:
- normalization:
defaultValue: string
sanitizePatterns:
- string
sources:
- selector: string
valueMap:
string: string
target: string
message:
defaultValue: string
sanitizePatterns:
- string
sources:
- selector: string
valueMap:
string: string
primaryKey:
normalization:
defaultValue: string
sanitizePatterns:
- string
sources:
- selector: string
valueMap:
string: string
target: string
severity:
defaultValue: string
sanitizePatterns:
- string
sources:
- selector: string
valueMap:
string: string
timestamp:
sources:
- selector: string
fieldParsers:
- destination:
selector: string
mode: string
parser:
keyValueParser:
delimiter: string
pairSeparator: string
trimSet: string
parserType: string
regexParser:
regex: string
source:
selector: string
plaintextParsers:
- keepOriginal: false
mode: string
name: string
parser:
keyValueParser:
delimiter: string
pairSeparator: string
trimSet: string
parserType: string
regexParser:
regex: string
LogIngestConfig 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 LogIngestConfig resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the LogIngestConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing LogIngestConfig Resource
Get an existing LogIngestConfig 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?: LogIngestConfigState, opts?: CustomResourceOptions): LogIngestConfig@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
field_normalization: Optional[LogIngestConfigFieldNormalizationArgs] = None,
field_parsers: Optional[Sequence[LogIngestConfigFieldParserArgs]] = None,
plaintext_parsers: Optional[Sequence[LogIngestConfigPlaintextParserArgs]] = None) -> LogIngestConfigfunc GetLogIngestConfig(ctx *Context, name string, id IDInput, state *LogIngestConfigState, opts ...ResourceOption) (*LogIngestConfig, error)public static LogIngestConfig Get(string name, Input<string> id, LogIngestConfigState? state, CustomResourceOptions? opts = null)public static LogIngestConfig get(String name, Output<String> id, LogIngestConfigState state, CustomResourceOptions options)resources: _: type: chronosphere:LogIngestConfig 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.
Supporting Types
LogIngestConfigFieldNormalization, LogIngestConfigFieldNormalizationArgs
- Custom
Field List<Chronosphere.Normalizations Pulumi. Inputs. Log Ingest Config Field Normalization Custom Field Normalization> - Message
Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Message - Primary
Key Chronosphere.Pulumi. Inputs. Log Ingest Config Field Normalization Primary Key - Severity
Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Severity - Timestamp
Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Timestamp
- custom_
field_ Sequence[Lognormalizations Ingest Config Field Normalization Custom Field Normalization] - message
Log
Ingest Config Field Normalization Message - primary_
key LogIngest Config Field Normalization Primary Key - severity
Log
Ingest Config Field Normalization Severity - timestamp
Log
Ingest Config Field Normalization Timestamp
LogIngestConfigFieldNormalizationCustomFieldNormalization, LogIngestConfigFieldNormalizationCustomFieldNormalizationArgs
- normalization Property Map
- target String
LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalization, LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationArgs
- Default
Value string - Sanitize
Patterns List<string> - Sources
List<Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Custom Field Normalization Normalization Source> - Value
Map Dictionary<string, string>
- Default
Value string - Sanitize
Patterns []string - Sources
[]Log
Ingest Config Field Normalization Custom Field Normalization Normalization Source - Value
Map map[string]string
- default
Value String - sanitize
Patterns List<String> - sources
List<Log
Ingest Config Field Normalization Custom Field Normalization Normalization Source> - value
Map Map<String,String>
- default
Value string - sanitize
Patterns string[] - sources
Log
Ingest Config Field Normalization Custom Field Normalization Normalization Source[] - value
Map {[key: string]: string}
- default_
value str - sanitize_
patterns Sequence[str] - sources
Sequence[Log
Ingest Config Field Normalization Custom Field Normalization Normalization Source] - value_
map Mapping[str, str]
- default
Value String - sanitize
Patterns List<String> - sources List<Property Map>
- value
Map Map<String>
LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSource, LogIngestConfigFieldNormalizationCustomFieldNormalizationNormalizationSourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldNormalizationMessage, LogIngestConfigFieldNormalizationMessageArgs
- Default
Value string - Sanitize
Patterns List<string> - Sources
List<Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Message Source> - Value
Map Dictionary<string, string>
- Default
Value string - Sanitize
Patterns []string - Sources
[]Log
Ingest Config Field Normalization Message Source - Value
Map map[string]string
- default
Value String - sanitize
Patterns List<String> - sources
List<Log
Ingest Config Field Normalization Message Source> - value
Map Map<String,String>
- default
Value string - sanitize
Patterns string[] - sources
Log
Ingest Config Field Normalization Message Source[] - value
Map {[key: string]: string}
- default_
value str - sanitize_
patterns Sequence[str] - sources
Sequence[Log
Ingest Config Field Normalization Message Source] - value_
map Mapping[str, str]
- default
Value String - sanitize
Patterns List<String> - sources List<Property Map>
- value
Map Map<String>
LogIngestConfigFieldNormalizationMessageSource, LogIngestConfigFieldNormalizationMessageSourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldNormalizationPrimaryKey, LogIngestConfigFieldNormalizationPrimaryKeyArgs
- normalization Property Map
- target String
LogIngestConfigFieldNormalizationPrimaryKeyNormalization, LogIngestConfigFieldNormalizationPrimaryKeyNormalizationArgs
- Default
Value string - Sanitize
Patterns List<string> - Sources
List<Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Primary Key Normalization Source> - Value
Map Dictionary<string, string>
- Default
Value string - Sanitize
Patterns []string - Sources
[]Log
Ingest Config Field Normalization Primary Key Normalization Source - Value
Map map[string]string
- default
Value String - sanitize
Patterns List<String> - sources
List<Log
Ingest Config Field Normalization Primary Key Normalization Source> - value
Map Map<String,String>
- default
Value string - sanitize
Patterns string[] - sources
Log
Ingest Config Field Normalization Primary Key Normalization Source[] - value
Map {[key: string]: string}
- default_
value str - sanitize_
patterns Sequence[str] - sources
Sequence[Log
Ingest Config Field Normalization Primary Key Normalization Source] - value_
map Mapping[str, str]
- default
Value String - sanitize
Patterns List<String> - sources List<Property Map>
- value
Map Map<String>
LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSource, LogIngestConfigFieldNormalizationPrimaryKeyNormalizationSourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldNormalizationSeverity, LogIngestConfigFieldNormalizationSeverityArgs
- Default
Value string - Sanitize
Patterns List<string> - Sources
List<Chronosphere.
Pulumi. Inputs. Log Ingest Config Field Normalization Severity Source> - Value
Map Dictionary<string, string>
- Default
Value string - Sanitize
Patterns []string - Sources
[]Log
Ingest Config Field Normalization Severity Source - Value
Map map[string]string
- default
Value String - sanitize
Patterns List<String> - sources
List<Log
Ingest Config Field Normalization Severity Source> - value
Map Map<String,String>
- default
Value string - sanitize
Patterns string[] - sources
Log
Ingest Config Field Normalization Severity Source[] - value
Map {[key: string]: string}
- default_
value str - sanitize_
patterns Sequence[str] - sources
Sequence[Log
Ingest Config Field Normalization Severity Source] - value_
map Mapping[str, str]
- default
Value String - sanitize
Patterns List<String> - sources List<Property Map>
- value
Map Map<String>
LogIngestConfigFieldNormalizationSeveritySource, LogIngestConfigFieldNormalizationSeveritySourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldNormalizationTimestamp, LogIngestConfigFieldNormalizationTimestampArgs
LogIngestConfigFieldNormalizationTimestampSource, LogIngestConfigFieldNormalizationTimestampSourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldParser, LogIngestConfigFieldParserArgs
LogIngestConfigFieldParserDestination, LogIngestConfigFieldParserDestinationArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigFieldParserParser, LogIngestConfigFieldParserParserArgs
LogIngestConfigFieldParserParserKeyValueParser, LogIngestConfigFieldParserParserKeyValueParserArgs
- Delimiter string
- Pair
Separator string - Trim
Set string
- Delimiter string
- Pair
Separator string - Trim
Set string
- delimiter String
- pair
Separator String - trim
Set String
- delimiter string
- pair
Separator string - trim
Set string
- delimiter str
- pair_
separator str - trim_
set str
- delimiter String
- pair
Separator String - trim
Set String
LogIngestConfigFieldParserParserRegexParser, LogIngestConfigFieldParserParserRegexParserArgs
- Regex string
- Regex string
- regex String
- regex string
- regex str
- regex String
LogIngestConfigFieldParserSource, LogIngestConfigFieldParserSourceArgs
- Selector string
- Selector string
- selector String
- selector string
- selector str
- selector String
LogIngestConfigPlaintextParser, LogIngestConfigPlaintextParserArgs
- Name string
- Parser
Log
Ingest Config Plaintext Parser Parser - Keep
Original bool - Mode string
- name String
- parser
Log
Ingest Config Plaintext Parser Parser - keep
Original Boolean - mode String
- name string
- parser
Log
Ingest Config Plaintext Parser Parser - keep
Original boolean - mode string
- name String
- parser Property Map
- keep
Original Boolean - mode String
LogIngestConfigPlaintextParserParser, LogIngestConfigPlaintextParserParserArgs
LogIngestConfigPlaintextParserParserKeyValueParser, LogIngestConfigPlaintextParserParserKeyValueParserArgs
- Delimiter string
- Pair
Separator string - Trim
Set string
- Delimiter string
- Pair
Separator string - Trim
Set string
- delimiter String
- pair
Separator String - trim
Set String
- delimiter string
- pair
Separator string - trim
Set string
- delimiter str
- pair_
separator str - trim_
set str
- delimiter String
- pair
Separator String - trim
Set String
LogIngestConfigPlaintextParserParserRegexParser, LogIngestConfigPlaintextParserParserRegexParserArgs
- Regex string
- Regex string
- regex String
- regex string
- regex str
- regex String
Package Details
- Repository
- chronosphere chronosphereio/pulumi-chronosphere
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
chronosphereTerraform Provider.
