-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgetElasticsearchIngestProcessorDate.ts
More file actions
91 lines (86 loc) · 3.37 KB
/
Copy pathgetElasticsearchIngestProcessorDate.ts
File metadata and controls
91 lines (86 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as utilities from "./utilities";
export function getElasticsearchIngestProcessorDate(args: GetElasticsearchIngestProcessorDateArgs, opts?: pulumi.InvokeOptions): Promise<GetElasticsearchIngestProcessorDateResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("elasticstack:index/getElasticsearchIngestProcessorDate:getElasticsearchIngestProcessorDate", {
"description": args.description,
"field": args.field,
"formats": args.formats,
"if": args.if,
"ignoreFailure": args.ignoreFailure,
"locale": args.locale,
"onFailures": args.onFailures,
"outputFormat": args.outputFormat,
"tag": args.tag,
"targetField": args.targetField,
"timezone": args.timezone,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getElasticsearchIngestProcessorDate.
*/
export interface GetElasticsearchIngestProcessorDateArgs {
description?: string;
field: string;
formats: string[];
if?: string;
ignoreFailure?: boolean;
locale?: string;
onFailures?: string[];
outputFormat?: string;
tag?: string;
targetField?: string;
timezone?: string;
}
/**
* A collection of values returned by getElasticsearchIngestProcessorDate.
*/
export interface GetElasticsearchIngestProcessorDateResult {
readonly description?: string;
readonly field: string;
readonly formats: string[];
readonly id: string;
readonly if?: string;
readonly ignoreFailure?: boolean;
readonly json: string;
readonly locale?: string;
readonly onFailures?: string[];
readonly outputFormat?: string;
readonly tag?: string;
readonly targetField?: string;
readonly timezone?: string;
}
export function getElasticsearchIngestProcessorDateOutput(args: GetElasticsearchIngestProcessorDateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetElasticsearchIngestProcessorDateResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("elasticstack:index/getElasticsearchIngestProcessorDate:getElasticsearchIngestProcessorDate", {
"description": args.description,
"field": args.field,
"formats": args.formats,
"if": args.if,
"ignoreFailure": args.ignoreFailure,
"locale": args.locale,
"onFailures": args.onFailures,
"outputFormat": args.outputFormat,
"tag": args.tag,
"targetField": args.targetField,
"timezone": args.timezone,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getElasticsearchIngestProcessorDate.
*/
export interface GetElasticsearchIngestProcessorDateOutputArgs {
description?: pulumi.Input<string>;
field: pulumi.Input<string>;
formats: pulumi.Input<pulumi.Input<string>[]>;
if?: pulumi.Input<string>;
ignoreFailure?: pulumi.Input<boolean>;
locale?: pulumi.Input<string>;
onFailures?: pulumi.Input<pulumi.Input<string>[]>;
outputFormat?: pulumi.Input<string>;
tag?: pulumi.Input<string>;
targetField?: pulumi.Input<string>;
timezone?: pulumi.Input<string>;
}