@r8s/crds 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/crds/certmanager-certificate.yaml +794 -0
- package/crds/certmanager-clusterissuer.yaml +3739 -0
- package/crds/clickhouse-installation.yaml +1847 -0
- package/crds/cnpg-cluster.yaml +6794 -0
- package/crds/cnpg-pooler.yaml +9311 -0
- package/crds/cnpg-scheduledbackup.yaml +191 -0
- package/crds/envoy-backendtrafficpolicy.yaml +1 -0
- package/crds/envoy-clienttrafficpolicy.yaml +1 -0
- package/crds/envoy-envoyproxy.yaml +1 -0
- package/crds/envoy-proxy.yaml +16626 -0
- package/crds/envoy-securitypolicy.yaml +1 -0
- package/crds/externaldns-endpoint.yaml +94 -0
- package/crds/gatewayapi-gateway.yaml +2253 -0
- package/crds/gatewayapi-httproute.yaml +5643 -0
- package/crds/keycloak-keycloak.yaml +3192 -0
- package/crds/keycloak-realmimport.yaml +2878 -0
- package/crds/logging-flow.yaml +1768 -0
- package/crds/logging-logging.yaml +16770 -0
- package/crds/logging-output.yaml +14658 -0
- package/crds/loki-lokistack.yaml +5390 -0
- package/crds/prometheus-alertmanager.yaml +10013 -0
- package/crds/prometheus-podmonitor.yaml +741 -0
- package/crds/prometheus-prometheus.yaml +13928 -0
- package/crds/prometheus-prometheusrule.yaml +267 -0
- package/crds/prometheus-scrapeconfig.yaml +12938 -0
- package/crds/prometheus-servicemonitor.yaml +764 -0
- package/crds/prometheus-thanosruler.yaml +9795 -0
- package/crds/redis-cluster.yaml +7862 -0
- package/crds/redis-failover.yaml +1 -0
- package/crds/redis-replication.yaml +5593 -0
- package/crds/velero-backups.yaml +630 -0
- package/crds/velero-backupstoragelocations.yaml +174 -0
- package/crds/velero-schedules.yaml +584 -0
- package/dist/generated/cert-manager.d.ts +873 -0
- package/dist/generated/cert-manager.d.ts.map +1 -0
- package/dist/generated/cert-manager.js +24 -0
- package/dist/generated/cert-manager.js.map +1 -0
- package/dist/generated/clickhouse.d.ts +692 -0
- package/dist/generated/clickhouse.d.ts.map +1 -0
- package/dist/generated/clickhouse.js +14 -0
- package/dist/generated/clickhouse.js.map +1 -0
- package/dist/generated/externaldns.d.ts +47 -0
- package/dist/generated/externaldns.d.ts.map +1 -0
- package/dist/generated/externaldns.js +14 -0
- package/dist/generated/externaldns.js.map +1 -0
- package/dist/generated/gateway.d.ts +2396 -0
- package/dist/generated/gateway.d.ts.map +1 -0
- package/dist/generated/gateway.js +34 -0
- package/dist/generated/gateway.js.map +1 -0
- package/dist/generated/index.d.ts +24 -0
- package/dist/generated/index.d.ts.map +1 -0
- package/dist/generated/index.js +61 -0
- package/dist/generated/index.js.map +1 -0
- package/dist/generated/keycloak.d.ts +1607 -0
- package/dist/generated/keycloak.d.ts.map +1 -0
- package/dist/generated/keycloak.js +24 -0
- package/dist/generated/keycloak.js.map +1 -0
- package/dist/generated/logging.d.ts +3487 -0
- package/dist/generated/logging.d.ts.map +1 -0
- package/dist/generated/logging.js +34 -0
- package/dist/generated/logging.js.map +1 -0
- package/dist/generated/loki.d.ts +578 -0
- package/dist/generated/loki.d.ts.map +1 -0
- package/dist/generated/loki.js +14 -0
- package/dist/generated/loki.js.map +1 -0
- package/dist/generated/monitoring.d.ts +4230 -0
- package/dist/generated/monitoring.d.ts.map +1 -0
- package/dist/generated/monitoring.js +74 -0
- package/dist/generated/monitoring.js.map +1 -0
- package/dist/generated/operators.d.ts +18 -0
- package/dist/generated/operators.d.ts.map +1 -0
- package/dist/generated/operators.js +191 -0
- package/dist/generated/operators.js.map +1 -0
- package/dist/generated/postgresql.d.ts +2820 -0
- package/dist/generated/postgresql.d.ts.map +1 -0
- package/dist/generated/postgresql.js +34 -0
- package/dist/generated/postgresql.js.map +1 -0
- package/dist/generated/redis.d.ts +1253 -0
- package/dist/generated/redis.d.ts.map +1 -0
- package/dist/generated/redis.js +24 -0
- package/dist/generated/redis.js.map +1 -0
- package/dist/generated/velero.d.ts +351 -0
- package/dist/generated/velero.d.ts.map +1 -0
- package/dist/generated/velero.js +34 -0
- package/dist/generated/velero.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/operators.yaml +196 -0
- package/package.json +49 -0
|
@@ -0,0 +1,3487 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GENERATED from logging CRDs — do not edit by hand.
|
|
3
|
+
* Regenerate with: npm run generate -w @r8s/crds
|
|
4
|
+
*/
|
|
5
|
+
import type { ObjectMeta } from '@r8s/k8s-types';
|
|
6
|
+
export interface Flow {
|
|
7
|
+
apiVersion: 'logging.banzaicloud.io/v1beta1';
|
|
8
|
+
kind: 'Flow';
|
|
9
|
+
metadata: ObjectMeta;
|
|
10
|
+
spec: FlowSpec;
|
|
11
|
+
status?: FlowStatus;
|
|
12
|
+
}
|
|
13
|
+
/** Props for the {@link Flow} component — a 1:1 mapping of the logging.banzaicloud.io/v1beta1 CRD. */
|
|
14
|
+
export interface FlowProps {
|
|
15
|
+
metadata: ObjectMeta;
|
|
16
|
+
spec: FlowSpec;
|
|
17
|
+
}
|
|
18
|
+
/** Render a Flow (logging.banzaicloud.io/v1beta1) exactly as defined by its CRD. */
|
|
19
|
+
export declare function FlowComponent(props: FlowProps): import("@r8s/core").r8sElement;
|
|
20
|
+
export interface Logging {
|
|
21
|
+
apiVersion: 'logging.banzaicloud.io/v1beta1';
|
|
22
|
+
kind: 'Logging';
|
|
23
|
+
metadata: ObjectMeta;
|
|
24
|
+
spec: LoggingSpec;
|
|
25
|
+
status?: LoggingStatus;
|
|
26
|
+
}
|
|
27
|
+
/** Props for the {@link Logging} component — a 1:1 mapping of the logging.banzaicloud.io/v1beta1 CRD. */
|
|
28
|
+
export interface LoggingProps {
|
|
29
|
+
metadata: ObjectMeta;
|
|
30
|
+
spec: LoggingSpec;
|
|
31
|
+
}
|
|
32
|
+
/** Render a Logging (logging.banzaicloud.io/v1beta1) exactly as defined by its CRD. */
|
|
33
|
+
export declare function LoggingComponent(props: LoggingProps): import("@r8s/core").r8sElement;
|
|
34
|
+
export interface Output {
|
|
35
|
+
apiVersion: 'logging.banzaicloud.io/v1beta1';
|
|
36
|
+
kind: 'Output';
|
|
37
|
+
metadata: ObjectMeta;
|
|
38
|
+
spec: OutputSpec;
|
|
39
|
+
status?: OutputStatus;
|
|
40
|
+
}
|
|
41
|
+
/** Props for the {@link Output} component — a 1:1 mapping of the logging.banzaicloud.io/v1beta1 CRD. */
|
|
42
|
+
export interface OutputProps {
|
|
43
|
+
metadata: ObjectMeta;
|
|
44
|
+
spec: OutputSpec;
|
|
45
|
+
}
|
|
46
|
+
/** Render a Output (logging.banzaicloud.io/v1beta1) exactly as defined by its CRD. */
|
|
47
|
+
export declare function OutputComponent(props: OutputProps): import("@r8s/core").r8sElement;
|
|
48
|
+
export interface Concat {
|
|
49
|
+
"continuous_line_regexp"?: string;
|
|
50
|
+
"flush_interval"?: number;
|
|
51
|
+
"keep_partial_key"?: boolean;
|
|
52
|
+
"keep_partial_metadata"?: string;
|
|
53
|
+
"key"?: string;
|
|
54
|
+
"multiline_end_regexp"?: string;
|
|
55
|
+
"multiline_start_regexp"?: string;
|
|
56
|
+
"n_lines"?: number;
|
|
57
|
+
"partial_cri_logtag_key"?: string;
|
|
58
|
+
"partial_cri_stream_key"?: string;
|
|
59
|
+
"partial_key"?: string;
|
|
60
|
+
"partial_metadata_format"?: string;
|
|
61
|
+
"partial_value"?: string;
|
|
62
|
+
"separator"?: string;
|
|
63
|
+
"stream_identity_key"?: string;
|
|
64
|
+
"timeout_label"?: string;
|
|
65
|
+
"use_first_timestamp"?: boolean;
|
|
66
|
+
"use_partial_cri_logtag"?: boolean;
|
|
67
|
+
"use_partial_metadata"?: string;
|
|
68
|
+
}
|
|
69
|
+
export interface Dedot {
|
|
70
|
+
"de_dot_nested"?: boolean;
|
|
71
|
+
"de_dot_separator"?: string;
|
|
72
|
+
}
|
|
73
|
+
export interface DetectExceptions {
|
|
74
|
+
"force_line_breaks"?: boolean;
|
|
75
|
+
"languages"?: string[];
|
|
76
|
+
"match_tag"?: string;
|
|
77
|
+
"max_bytes"?: number;
|
|
78
|
+
"max_lines"?: number;
|
|
79
|
+
"message"?: string;
|
|
80
|
+
"multiline_flush_interval"?: string;
|
|
81
|
+
"remove_tag_prefix"?: string;
|
|
82
|
+
"stream"?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface ElasticsearchGenid {
|
|
85
|
+
"hash_id_key"?: string;
|
|
86
|
+
"hash_type"?: string;
|
|
87
|
+
"include_tag_in_seed"?: boolean;
|
|
88
|
+
"include_time_in_seed"?: boolean;
|
|
89
|
+
"record_keys"?: string;
|
|
90
|
+
"separator"?: string;
|
|
91
|
+
"use_entire_record"?: boolean;
|
|
92
|
+
"use_record_as_seed"?: boolean;
|
|
93
|
+
}
|
|
94
|
+
export interface Geoip {
|
|
95
|
+
"backend_library"?: string;
|
|
96
|
+
"geoip_database"?: string;
|
|
97
|
+
"geoip_lookup_keys"?: string;
|
|
98
|
+
"geoip2_database"?: string;
|
|
99
|
+
"records"?: Record<string, unknown>[];
|
|
100
|
+
"skip_adding_null_record"?: boolean;
|
|
101
|
+
}
|
|
102
|
+
export interface ExcludeItem {
|
|
103
|
+
"key": string;
|
|
104
|
+
"pattern": string;
|
|
105
|
+
}
|
|
106
|
+
export interface RegexpItem {
|
|
107
|
+
"key": string;
|
|
108
|
+
"pattern": string;
|
|
109
|
+
}
|
|
110
|
+
export interface AndItem {
|
|
111
|
+
"exclude"?: ExcludeItem[];
|
|
112
|
+
"regexp"?: RegexpItem[];
|
|
113
|
+
}
|
|
114
|
+
export interface OrItem {
|
|
115
|
+
"exclude"?: ExcludeItem[];
|
|
116
|
+
"regexp"?: RegexpItem[];
|
|
117
|
+
}
|
|
118
|
+
export interface Grep {
|
|
119
|
+
"and"?: AndItem[];
|
|
120
|
+
"exclude"?: ExcludeItem[];
|
|
121
|
+
"or"?: OrItem[];
|
|
122
|
+
"regexp"?: RegexpItem[];
|
|
123
|
+
}
|
|
124
|
+
export interface KubeEventsTimestamp {
|
|
125
|
+
"mapped_time_key"?: string;
|
|
126
|
+
"timestamp_fields"?: string[];
|
|
127
|
+
}
|
|
128
|
+
export interface SecretKeyRef {
|
|
129
|
+
"key": string;
|
|
130
|
+
"name"?: string;
|
|
131
|
+
"optional"?: boolean;
|
|
132
|
+
}
|
|
133
|
+
export interface MountFrom {
|
|
134
|
+
"secretKeyRef"?: SecretKeyRef;
|
|
135
|
+
}
|
|
136
|
+
export interface ValueFrom {
|
|
137
|
+
"secretKeyRef"?: SecretKeyRef;
|
|
138
|
+
}
|
|
139
|
+
export interface CustomPatternPath {
|
|
140
|
+
"mountFrom"?: MountFrom;
|
|
141
|
+
"value"?: string;
|
|
142
|
+
"valueFrom"?: ValueFrom;
|
|
143
|
+
}
|
|
144
|
+
export interface GrokPatternsItem {
|
|
145
|
+
"keep_time_key"?: boolean;
|
|
146
|
+
"name"?: string;
|
|
147
|
+
"pattern": string;
|
|
148
|
+
"time_format"?: string;
|
|
149
|
+
"time_key"?: string;
|
|
150
|
+
"timezone"?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface PatternsItem {
|
|
153
|
+
"custom_pattern_path"?: CustomPatternPath;
|
|
154
|
+
"estimate_current_event"?: boolean;
|
|
155
|
+
"expression"?: string;
|
|
156
|
+
"format"?: string;
|
|
157
|
+
"format_name"?: string;
|
|
158
|
+
"grok_failure_key"?: string;
|
|
159
|
+
"grok_name_key"?: string;
|
|
160
|
+
"grok_pattern"?: string;
|
|
161
|
+
"grok_patterns"?: GrokPatternsItem[];
|
|
162
|
+
"keep_time_key"?: boolean;
|
|
163
|
+
"local_time"?: boolean;
|
|
164
|
+
"multiline_start_regexp"?: string;
|
|
165
|
+
"null_empty_string"?: boolean;
|
|
166
|
+
"null_value_pattern"?: string;
|
|
167
|
+
"time_format"?: string;
|
|
168
|
+
"time_key"?: string;
|
|
169
|
+
"time_type"?: string;
|
|
170
|
+
"timezone"?: string;
|
|
171
|
+
"type"?: string;
|
|
172
|
+
"types"?: string;
|
|
173
|
+
"utc"?: boolean;
|
|
174
|
+
}
|
|
175
|
+
export interface Parse {
|
|
176
|
+
"custom_pattern_path"?: CustomPatternPath;
|
|
177
|
+
"delimiter"?: string;
|
|
178
|
+
"delimiter_pattern"?: string;
|
|
179
|
+
"estimate_current_event"?: boolean;
|
|
180
|
+
"expression"?: string;
|
|
181
|
+
"format"?: string;
|
|
182
|
+
"format_firstline"?: string;
|
|
183
|
+
"format_key"?: string;
|
|
184
|
+
"grok_failure_key"?: string;
|
|
185
|
+
"grok_name_key"?: string;
|
|
186
|
+
"grok_pattern"?: string;
|
|
187
|
+
"grok_patterns"?: GrokPatternsItem[];
|
|
188
|
+
"keep_time_key"?: boolean;
|
|
189
|
+
"keys"?: string;
|
|
190
|
+
"label_delimiter"?: string;
|
|
191
|
+
"local_time"?: boolean;
|
|
192
|
+
"multiline"?: string[];
|
|
193
|
+
"multiline_start_regexp"?: string;
|
|
194
|
+
"null_empty_string"?: boolean;
|
|
195
|
+
"null_value_pattern"?: string;
|
|
196
|
+
"patterns"?: PatternsItem[];
|
|
197
|
+
"time_format"?: string;
|
|
198
|
+
"time_key"?: string;
|
|
199
|
+
"time_type"?: string;
|
|
200
|
+
"timezone"?: string;
|
|
201
|
+
"type"?: string;
|
|
202
|
+
"types"?: string;
|
|
203
|
+
"utc"?: boolean;
|
|
204
|
+
}
|
|
205
|
+
export interface ParsersItem {
|
|
206
|
+
"custom_pattern_path"?: CustomPatternPath;
|
|
207
|
+
"delimiter"?: string;
|
|
208
|
+
"delimiter_pattern"?: string;
|
|
209
|
+
"estimate_current_event"?: boolean;
|
|
210
|
+
"expression"?: string;
|
|
211
|
+
"format"?: string;
|
|
212
|
+
"format_firstline"?: string;
|
|
213
|
+
"format_key"?: string;
|
|
214
|
+
"grok_failure_key"?: string;
|
|
215
|
+
"grok_name_key"?: string;
|
|
216
|
+
"grok_pattern"?: string;
|
|
217
|
+
"grok_patterns"?: GrokPatternsItem[];
|
|
218
|
+
"keep_time_key"?: boolean;
|
|
219
|
+
"keys"?: string;
|
|
220
|
+
"label_delimiter"?: string;
|
|
221
|
+
"local_time"?: boolean;
|
|
222
|
+
"multiline"?: string[];
|
|
223
|
+
"multiline_start_regexp"?: string;
|
|
224
|
+
"null_empty_string"?: boolean;
|
|
225
|
+
"null_value_pattern"?: string;
|
|
226
|
+
"patterns"?: PatternsItem[];
|
|
227
|
+
"time_format"?: string;
|
|
228
|
+
"time_key"?: string;
|
|
229
|
+
"time_type"?: string;
|
|
230
|
+
"timezone"?: string;
|
|
231
|
+
"type"?: string;
|
|
232
|
+
"types"?: string;
|
|
233
|
+
"utc"?: boolean;
|
|
234
|
+
}
|
|
235
|
+
export interface Parser {
|
|
236
|
+
"emit_invalid_record_to_error"?: boolean;
|
|
237
|
+
"hash_value_field"?: string;
|
|
238
|
+
"inject_key_prefix"?: string;
|
|
239
|
+
"key_name"?: string;
|
|
240
|
+
"parse"?: Parse;
|
|
241
|
+
"parsers"?: ParsersItem[];
|
|
242
|
+
"remove_key_name_field"?: boolean;
|
|
243
|
+
"replace_invalid_sequence"?: boolean;
|
|
244
|
+
"reserve_data"?: boolean;
|
|
245
|
+
"reserve_time"?: boolean;
|
|
246
|
+
}
|
|
247
|
+
export interface MetricsItem {
|
|
248
|
+
"buckets"?: string;
|
|
249
|
+
"desc": string;
|
|
250
|
+
"key"?: string;
|
|
251
|
+
"labels"?: Record<string, unknown>;
|
|
252
|
+
"name": string;
|
|
253
|
+
"type": string;
|
|
254
|
+
}
|
|
255
|
+
export interface Prometheus {
|
|
256
|
+
"labels"?: Record<string, unknown>;
|
|
257
|
+
"metrics"?: MetricsItem[];
|
|
258
|
+
}
|
|
259
|
+
export interface Raw {
|
|
260
|
+
"config"?: string;
|
|
261
|
+
}
|
|
262
|
+
export interface ReplacesItem {
|
|
263
|
+
"expression": string;
|
|
264
|
+
"key": string;
|
|
265
|
+
"replace": string;
|
|
266
|
+
}
|
|
267
|
+
export interface RecordModifier {
|
|
268
|
+
"char_encoding"?: string;
|
|
269
|
+
"prepare_value"?: string;
|
|
270
|
+
"records"?: Record<string, unknown>[];
|
|
271
|
+
"remove_keys"?: string;
|
|
272
|
+
"replaces"?: ReplacesItem[];
|
|
273
|
+
"whitelist_keys"?: string;
|
|
274
|
+
}
|
|
275
|
+
export interface RecordTransformer {
|
|
276
|
+
"auto_typecast"?: boolean;
|
|
277
|
+
"enable_ruby"?: boolean;
|
|
278
|
+
"keep_keys"?: string;
|
|
279
|
+
"records"?: Record<string, unknown>[];
|
|
280
|
+
"remove_keys"?: string;
|
|
281
|
+
"renew_record"?: boolean;
|
|
282
|
+
"renew_time_key"?: string;
|
|
283
|
+
}
|
|
284
|
+
export interface Stdout {
|
|
285
|
+
"output_type"?: string;
|
|
286
|
+
}
|
|
287
|
+
export interface TagNormaliser {
|
|
288
|
+
"format"?: string;
|
|
289
|
+
"match_tag"?: string;
|
|
290
|
+
}
|
|
291
|
+
export interface Throttle {
|
|
292
|
+
"group_bucket_limit"?: number;
|
|
293
|
+
"group_bucket_period_s"?: number;
|
|
294
|
+
"group_drop_logs"?: boolean;
|
|
295
|
+
"group_key"?: string;
|
|
296
|
+
"group_reset_rate_s"?: number;
|
|
297
|
+
"group_warning_delay_s"?: number;
|
|
298
|
+
}
|
|
299
|
+
export interface Useragent {
|
|
300
|
+
"delete_key"?: boolean;
|
|
301
|
+
"flatten"?: boolean;
|
|
302
|
+
"key_name"?: string;
|
|
303
|
+
"out_key"?: string;
|
|
304
|
+
}
|
|
305
|
+
export interface FiltersItem {
|
|
306
|
+
"concat"?: Concat;
|
|
307
|
+
"dedot"?: Dedot;
|
|
308
|
+
"detectExceptions"?: DetectExceptions;
|
|
309
|
+
"elasticsearch_genid"?: ElasticsearchGenid;
|
|
310
|
+
"geoip"?: Geoip;
|
|
311
|
+
"grep"?: Grep;
|
|
312
|
+
"kube_events_timestamp"?: KubeEventsTimestamp;
|
|
313
|
+
"parser"?: Parser;
|
|
314
|
+
"prometheus"?: Prometheus;
|
|
315
|
+
"raw"?: Raw;
|
|
316
|
+
"record_modifier"?: RecordModifier;
|
|
317
|
+
"record_transformer"?: RecordTransformer;
|
|
318
|
+
"stdout"?: Stdout;
|
|
319
|
+
"tag_normaliser"?: TagNormaliser;
|
|
320
|
+
"throttle"?: Throttle;
|
|
321
|
+
"useragent"?: Useragent;
|
|
322
|
+
}
|
|
323
|
+
export interface Exclude {
|
|
324
|
+
"container_names"?: string[];
|
|
325
|
+
"hosts"?: string[];
|
|
326
|
+
"labels"?: Record<string, unknown>;
|
|
327
|
+
"namespace_labels"?: Record<string, unknown>;
|
|
328
|
+
}
|
|
329
|
+
export interface Select {
|
|
330
|
+
"container_names"?: string[];
|
|
331
|
+
"hosts"?: string[];
|
|
332
|
+
"labels"?: Record<string, unknown>;
|
|
333
|
+
}
|
|
334
|
+
export interface MatchItem {
|
|
335
|
+
"exclude"?: Exclude;
|
|
336
|
+
"select"?: Select;
|
|
337
|
+
}
|
|
338
|
+
export interface FlowSpec {
|
|
339
|
+
"filters"?: FiltersItem[];
|
|
340
|
+
"flowLabel"?: string;
|
|
341
|
+
"globalOutputRefs"?: string[];
|
|
342
|
+
"includeLabelInRouter"?: boolean;
|
|
343
|
+
"localOutputRefs"?: string[];
|
|
344
|
+
"loggingRef"?: string;
|
|
345
|
+
"match"?: MatchItem[];
|
|
346
|
+
"outputRefs"?: string[];
|
|
347
|
+
"selectors"?: Record<string, unknown>;
|
|
348
|
+
}
|
|
349
|
+
export interface FlowStatus {
|
|
350
|
+
"active"?: boolean;
|
|
351
|
+
"problems"?: string[];
|
|
352
|
+
"problemsCount"?: number;
|
|
353
|
+
}
|
|
354
|
+
export interface ConfigCheck {
|
|
355
|
+
"labels"?: Record<string, unknown>;
|
|
356
|
+
"strategy"?: string;
|
|
357
|
+
"timeoutSeconds"?: number;
|
|
358
|
+
}
|
|
359
|
+
export interface DefaultFlow {
|
|
360
|
+
"filters"?: FiltersItem[];
|
|
361
|
+
"flowLabel"?: string;
|
|
362
|
+
"globalOutputRefs"?: string[];
|
|
363
|
+
"includeLabelInRouter"?: boolean;
|
|
364
|
+
"outputRefs"?: string[];
|
|
365
|
+
}
|
|
366
|
+
export interface MatchExpressionsItem {
|
|
367
|
+
"key": string;
|
|
368
|
+
"operator": string;
|
|
369
|
+
"values"?: string[];
|
|
370
|
+
}
|
|
371
|
+
export interface MatchFieldsItem {
|
|
372
|
+
"key": string;
|
|
373
|
+
"operator": string;
|
|
374
|
+
"values"?: string[];
|
|
375
|
+
}
|
|
376
|
+
export interface Preference {
|
|
377
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
378
|
+
"matchFields"?: MatchFieldsItem[];
|
|
379
|
+
}
|
|
380
|
+
export interface PreferredDuringSchedulingIgnoredDuringExecutionItem {
|
|
381
|
+
"preference": Preference;
|
|
382
|
+
"weight": number;
|
|
383
|
+
}
|
|
384
|
+
export interface NodeSelectorTermsItem {
|
|
385
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
386
|
+
"matchFields"?: MatchFieldsItem[];
|
|
387
|
+
}
|
|
388
|
+
export interface RequiredDuringSchedulingIgnoredDuringExecution {
|
|
389
|
+
"nodeSelectorTerms": NodeSelectorTermsItem[];
|
|
390
|
+
}
|
|
391
|
+
export interface NodeAffinity {
|
|
392
|
+
"preferredDuringSchedulingIgnoredDuringExecution"?: PreferredDuringSchedulingIgnoredDuringExecutionItem[];
|
|
393
|
+
"requiredDuringSchedulingIgnoredDuringExecution"?: RequiredDuringSchedulingIgnoredDuringExecution;
|
|
394
|
+
}
|
|
395
|
+
export interface LabelSelector {
|
|
396
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
397
|
+
"matchLabels"?: Record<string, unknown>;
|
|
398
|
+
}
|
|
399
|
+
export interface NamespaceSelector {
|
|
400
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
401
|
+
"matchLabels"?: Record<string, unknown>;
|
|
402
|
+
}
|
|
403
|
+
export interface PodAffinityTerm {
|
|
404
|
+
"labelSelector"?: LabelSelector;
|
|
405
|
+
"matchLabelKeys"?: string[];
|
|
406
|
+
"mismatchLabelKeys"?: string[];
|
|
407
|
+
"namespaceSelector"?: NamespaceSelector;
|
|
408
|
+
"namespaces"?: string[];
|
|
409
|
+
"topologyKey": string;
|
|
410
|
+
}
|
|
411
|
+
export interface PreferredDuringSchedulingIgnoredDuringExecutionItem2 {
|
|
412
|
+
"podAffinityTerm": PodAffinityTerm;
|
|
413
|
+
"weight": number;
|
|
414
|
+
}
|
|
415
|
+
export interface RequiredDuringSchedulingIgnoredDuringExecutionItem {
|
|
416
|
+
"labelSelector"?: LabelSelector;
|
|
417
|
+
"matchLabelKeys"?: string[];
|
|
418
|
+
"mismatchLabelKeys"?: string[];
|
|
419
|
+
"namespaceSelector"?: NamespaceSelector;
|
|
420
|
+
"namespaces"?: string[];
|
|
421
|
+
"topologyKey": string;
|
|
422
|
+
}
|
|
423
|
+
export interface PodAffinity {
|
|
424
|
+
"preferredDuringSchedulingIgnoredDuringExecution"?: PreferredDuringSchedulingIgnoredDuringExecutionItem2[];
|
|
425
|
+
"requiredDuringSchedulingIgnoredDuringExecution"?: RequiredDuringSchedulingIgnoredDuringExecutionItem[];
|
|
426
|
+
}
|
|
427
|
+
export interface PodAntiAffinity {
|
|
428
|
+
"preferredDuringSchedulingIgnoredDuringExecution"?: PreferredDuringSchedulingIgnoredDuringExecutionItem2[];
|
|
429
|
+
"requiredDuringSchedulingIgnoredDuringExecution"?: RequiredDuringSchedulingIgnoredDuringExecutionItem[];
|
|
430
|
+
}
|
|
431
|
+
export interface Affinity {
|
|
432
|
+
"nodeAffinity"?: NodeAffinity;
|
|
433
|
+
"podAffinity"?: PodAffinity;
|
|
434
|
+
"podAntiAffinity"?: PodAntiAffinity;
|
|
435
|
+
}
|
|
436
|
+
export interface BufferStorage {
|
|
437
|
+
"storage.backlog.flush_on_shutdown"?: string;
|
|
438
|
+
"storage.backlog.mem_limit"?: string;
|
|
439
|
+
"storage.checksum"?: string;
|
|
440
|
+
"storage.delete_irrecoverable_chunks"?: string;
|
|
441
|
+
"storage.max_chunks_up"?: number;
|
|
442
|
+
"storage.metrics"?: string;
|
|
443
|
+
"storage.path"?: string;
|
|
444
|
+
"storage.sync"?: string;
|
|
445
|
+
}
|
|
446
|
+
export interface ItemsItem {
|
|
447
|
+
"key": string;
|
|
448
|
+
"mode"?: number;
|
|
449
|
+
"path": string;
|
|
450
|
+
}
|
|
451
|
+
export interface ConfigMap {
|
|
452
|
+
"defaultMode"?: number;
|
|
453
|
+
"items"?: ItemsItem[];
|
|
454
|
+
"name"?: string;
|
|
455
|
+
"optional"?: boolean;
|
|
456
|
+
}
|
|
457
|
+
export interface EmptyDir {
|
|
458
|
+
"medium"?: string;
|
|
459
|
+
"sizeLimit"?: number | string;
|
|
460
|
+
}
|
|
461
|
+
export interface HostPath {
|
|
462
|
+
"path": string;
|
|
463
|
+
"type"?: string;
|
|
464
|
+
}
|
|
465
|
+
export interface Source {
|
|
466
|
+
"claimName": string;
|
|
467
|
+
"readOnly"?: boolean;
|
|
468
|
+
}
|
|
469
|
+
export interface DataSource {
|
|
470
|
+
"apiGroup"?: string;
|
|
471
|
+
"kind": string;
|
|
472
|
+
"name": string;
|
|
473
|
+
}
|
|
474
|
+
export interface DataSourceRef {
|
|
475
|
+
"apiGroup"?: string;
|
|
476
|
+
"kind": string;
|
|
477
|
+
"name": string;
|
|
478
|
+
"namespace"?: string;
|
|
479
|
+
}
|
|
480
|
+
export interface Resources {
|
|
481
|
+
"limits"?: Record<string, unknown>;
|
|
482
|
+
"requests"?: Record<string, unknown>;
|
|
483
|
+
}
|
|
484
|
+
export interface Selector {
|
|
485
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
486
|
+
"matchLabels"?: Record<string, unknown>;
|
|
487
|
+
}
|
|
488
|
+
export interface Spec {
|
|
489
|
+
"accessModes"?: string[];
|
|
490
|
+
"dataSource"?: DataSource;
|
|
491
|
+
"dataSourceRef"?: DataSourceRef;
|
|
492
|
+
"resources"?: Resources;
|
|
493
|
+
"selector"?: Selector;
|
|
494
|
+
"storageClassName"?: string;
|
|
495
|
+
"volumeAttributesClassName"?: string;
|
|
496
|
+
"volumeMode"?: string;
|
|
497
|
+
"volumeName"?: string;
|
|
498
|
+
}
|
|
499
|
+
export interface Pvc {
|
|
500
|
+
"annotations"?: Record<string, unknown>;
|
|
501
|
+
"labels"?: Record<string, unknown>;
|
|
502
|
+
"source"?: Source;
|
|
503
|
+
"spec"?: Spec;
|
|
504
|
+
}
|
|
505
|
+
export interface Secret {
|
|
506
|
+
"defaultMode"?: number;
|
|
507
|
+
"items"?: ItemsItem[];
|
|
508
|
+
"optional"?: boolean;
|
|
509
|
+
"secretName"?: string;
|
|
510
|
+
}
|
|
511
|
+
export interface BufferStorageVolume {
|
|
512
|
+
"configMap"?: ConfigMap;
|
|
513
|
+
"emptyDir"?: EmptyDir;
|
|
514
|
+
"host_path"?: HostPath;
|
|
515
|
+
"hostPath"?: HostPath;
|
|
516
|
+
"pvc"?: Pvc;
|
|
517
|
+
"secret"?: Secret;
|
|
518
|
+
}
|
|
519
|
+
export interface ImagePullSecretsItem {
|
|
520
|
+
"name"?: string;
|
|
521
|
+
}
|
|
522
|
+
export interface BufferVolumeImage {
|
|
523
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
524
|
+
"pullPolicy"?: string;
|
|
525
|
+
"repository"?: string;
|
|
526
|
+
"tag"?: string;
|
|
527
|
+
}
|
|
528
|
+
export interface Exec {
|
|
529
|
+
"command"?: string[];
|
|
530
|
+
}
|
|
531
|
+
export interface Grpc {
|
|
532
|
+
"port": number;
|
|
533
|
+
"service"?: string;
|
|
534
|
+
}
|
|
535
|
+
export interface HttpHeadersItem {
|
|
536
|
+
"name": string;
|
|
537
|
+
"value": string;
|
|
538
|
+
}
|
|
539
|
+
export interface HttpGet {
|
|
540
|
+
"host"?: string;
|
|
541
|
+
"httpHeaders"?: HttpHeadersItem[];
|
|
542
|
+
"path"?: string;
|
|
543
|
+
"port": number | string;
|
|
544
|
+
"scheme"?: string;
|
|
545
|
+
}
|
|
546
|
+
export interface TcpSocket {
|
|
547
|
+
"host"?: string;
|
|
548
|
+
"port": number | string;
|
|
549
|
+
}
|
|
550
|
+
export interface BufferVolumeLivenessProbe {
|
|
551
|
+
"exec"?: Exec;
|
|
552
|
+
"failureThreshold"?: number;
|
|
553
|
+
"grpc"?: Grpc;
|
|
554
|
+
"httpGet"?: HttpGet;
|
|
555
|
+
"initialDelaySeconds"?: number;
|
|
556
|
+
"periodSeconds"?: number;
|
|
557
|
+
"successThreshold"?: number;
|
|
558
|
+
"tcpSocket"?: TcpSocket;
|
|
559
|
+
"terminationGracePeriodSeconds"?: number;
|
|
560
|
+
"timeoutSeconds"?: number;
|
|
561
|
+
}
|
|
562
|
+
export interface PrometheusRulesOverrideItem {
|
|
563
|
+
"alert"?: string;
|
|
564
|
+
"annotations"?: Record<string, unknown>;
|
|
565
|
+
"expr"?: number | string;
|
|
566
|
+
"for"?: string;
|
|
567
|
+
"keep_firing_for"?: string;
|
|
568
|
+
"labels"?: Record<string, unknown>;
|
|
569
|
+
"record"?: string;
|
|
570
|
+
}
|
|
571
|
+
export interface MetricRelabelingsItem {
|
|
572
|
+
"action"?: "replace" | "Replace" | "keep" | "Keep" | "drop" | "Drop" | "hashmod" | "HashMod" | "labelmap" | "LabelMap" | "labeldrop" | "LabelDrop" | "labelkeep" | "LabelKeep" | "lowercase" | "Lowercase" | "uppercase" | "Uppercase" | "keepequal" | "KeepEqual" | "dropequal" | "DropEqual";
|
|
573
|
+
"modulus"?: number;
|
|
574
|
+
"regex"?: string;
|
|
575
|
+
"replacement"?: string;
|
|
576
|
+
"separator"?: string;
|
|
577
|
+
"sourceLabels"?: string[];
|
|
578
|
+
"targetLabel"?: string;
|
|
579
|
+
}
|
|
580
|
+
export interface RelabelingsItem {
|
|
581
|
+
"action"?: "replace" | "Replace" | "keep" | "Keep" | "drop" | "Drop" | "hashmod" | "HashMod" | "labelmap" | "LabelMap" | "labeldrop" | "LabelDrop" | "labelkeep" | "LabelKeep" | "lowercase" | "Lowercase" | "uppercase" | "Uppercase" | "keepequal" | "KeepEqual" | "dropequal" | "DropEqual";
|
|
582
|
+
"modulus"?: number;
|
|
583
|
+
"regex"?: string;
|
|
584
|
+
"replacement"?: string;
|
|
585
|
+
"separator"?: string;
|
|
586
|
+
"sourceLabels"?: string[];
|
|
587
|
+
"targetLabel"?: string;
|
|
588
|
+
}
|
|
589
|
+
export interface ConfigMap2 {
|
|
590
|
+
"key": string;
|
|
591
|
+
"name"?: string;
|
|
592
|
+
"optional"?: boolean;
|
|
593
|
+
}
|
|
594
|
+
export interface Secret2 {
|
|
595
|
+
"key": string;
|
|
596
|
+
"name"?: string;
|
|
597
|
+
"optional"?: boolean;
|
|
598
|
+
}
|
|
599
|
+
export interface Ca {
|
|
600
|
+
"configMap"?: ConfigMap2;
|
|
601
|
+
"secret"?: Secret2;
|
|
602
|
+
}
|
|
603
|
+
export interface Cert {
|
|
604
|
+
"configMap"?: ConfigMap2;
|
|
605
|
+
"secret"?: Secret2;
|
|
606
|
+
}
|
|
607
|
+
export interface KeySecret {
|
|
608
|
+
"key": string;
|
|
609
|
+
"name"?: string;
|
|
610
|
+
"optional"?: boolean;
|
|
611
|
+
}
|
|
612
|
+
export interface TlsConfig {
|
|
613
|
+
"ca"?: Ca;
|
|
614
|
+
"caFile"?: string;
|
|
615
|
+
"cert"?: Cert;
|
|
616
|
+
"certFile"?: string;
|
|
617
|
+
"insecureSkipVerify"?: boolean;
|
|
618
|
+
"keyFile"?: string;
|
|
619
|
+
"keySecret"?: KeySecret;
|
|
620
|
+
"maxVersion"?: "TLS10" | "TLS11" | "TLS12" | "TLS13";
|
|
621
|
+
"minVersion"?: "TLS10" | "TLS11" | "TLS12" | "TLS13";
|
|
622
|
+
"serverName"?: string;
|
|
623
|
+
}
|
|
624
|
+
export interface ServiceMonitorConfig {
|
|
625
|
+
"additionalLabels"?: Record<string, unknown>;
|
|
626
|
+
"honorLabels"?: boolean;
|
|
627
|
+
"metricRelabelings"?: MetricRelabelingsItem[];
|
|
628
|
+
"relabelings"?: RelabelingsItem[];
|
|
629
|
+
"scheme"?: string;
|
|
630
|
+
"tlsConfig"?: TlsConfig;
|
|
631
|
+
}
|
|
632
|
+
export interface BufferVolumeMetrics {
|
|
633
|
+
"enabled"?: boolean;
|
|
634
|
+
"interval"?: string;
|
|
635
|
+
"path"?: string;
|
|
636
|
+
"port"?: number;
|
|
637
|
+
"prometheusAnnotations"?: boolean;
|
|
638
|
+
"prometheusRules"?: boolean;
|
|
639
|
+
"prometheusRulesLabels"?: Record<string, unknown>;
|
|
640
|
+
"prometheusRulesOverride"?: PrometheusRulesOverrideItem[];
|
|
641
|
+
"serviceMonitor"?: boolean;
|
|
642
|
+
"serviceMonitorConfig"?: ServiceMonitorConfig;
|
|
643
|
+
"timeout"?: string;
|
|
644
|
+
}
|
|
645
|
+
export interface ClaimsItem {
|
|
646
|
+
"name": string;
|
|
647
|
+
"request"?: string;
|
|
648
|
+
}
|
|
649
|
+
export interface BufferVolumeResources {
|
|
650
|
+
"claims"?: ClaimsItem[];
|
|
651
|
+
"limits"?: Record<string, unknown>;
|
|
652
|
+
"requests"?: Record<string, unknown>;
|
|
653
|
+
}
|
|
654
|
+
export interface Image {
|
|
655
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
656
|
+
"pullPolicy"?: string;
|
|
657
|
+
"repository"?: string;
|
|
658
|
+
"tag"?: string;
|
|
659
|
+
}
|
|
660
|
+
export interface Resources2 {
|
|
661
|
+
"claims"?: ClaimsItem[];
|
|
662
|
+
"limits"?: Record<string, unknown>;
|
|
663
|
+
"requests"?: Record<string, unknown>;
|
|
664
|
+
}
|
|
665
|
+
export interface ConfigHotReload {
|
|
666
|
+
"image"?: Image;
|
|
667
|
+
"resources"?: Resources2;
|
|
668
|
+
}
|
|
669
|
+
export interface OptionsItem {
|
|
670
|
+
"name"?: string;
|
|
671
|
+
"value"?: string;
|
|
672
|
+
}
|
|
673
|
+
export interface DnsConfig {
|
|
674
|
+
"nameservers"?: string[];
|
|
675
|
+
"options"?: OptionsItem[];
|
|
676
|
+
"searches"?: string[];
|
|
677
|
+
}
|
|
678
|
+
export interface ConfigMapKeyRef {
|
|
679
|
+
"key": string;
|
|
680
|
+
"name"?: string;
|
|
681
|
+
"optional"?: boolean;
|
|
682
|
+
}
|
|
683
|
+
export interface FieldRef {
|
|
684
|
+
"apiVersion"?: string;
|
|
685
|
+
"fieldPath": string;
|
|
686
|
+
}
|
|
687
|
+
export interface FileKeyRef {
|
|
688
|
+
"key": string;
|
|
689
|
+
"optional"?: boolean;
|
|
690
|
+
"path": string;
|
|
691
|
+
"volumeName": string;
|
|
692
|
+
}
|
|
693
|
+
export interface ResourceFieldRef {
|
|
694
|
+
"containerName"?: string;
|
|
695
|
+
"divisor"?: number | string;
|
|
696
|
+
"resource": string;
|
|
697
|
+
}
|
|
698
|
+
export interface ValueFrom2 {
|
|
699
|
+
"configMapKeyRef"?: ConfigMapKeyRef;
|
|
700
|
+
"fieldRef"?: FieldRef;
|
|
701
|
+
"fileKeyRef"?: FileKeyRef;
|
|
702
|
+
"resourceFieldRef"?: ResourceFieldRef;
|
|
703
|
+
"secretKeyRef"?: SecretKeyRef;
|
|
704
|
+
}
|
|
705
|
+
export interface EnvVarsItem {
|
|
706
|
+
"name": string;
|
|
707
|
+
"value"?: string;
|
|
708
|
+
"valueFrom"?: ValueFrom2;
|
|
709
|
+
}
|
|
710
|
+
export interface ExtraVolumeMountsItem {
|
|
711
|
+
"destination": string;
|
|
712
|
+
"readOnly"?: boolean;
|
|
713
|
+
"source": string;
|
|
714
|
+
}
|
|
715
|
+
export interface FilterAws {
|
|
716
|
+
"Match"?: string;
|
|
717
|
+
"account_id"?: boolean;
|
|
718
|
+
"ami_id"?: boolean;
|
|
719
|
+
"az"?: boolean;
|
|
720
|
+
"ec2_instance_id"?: boolean;
|
|
721
|
+
"ec2_instance_type"?: boolean;
|
|
722
|
+
"hostname"?: boolean;
|
|
723
|
+
"imds_version"?: string;
|
|
724
|
+
"private_ip"?: boolean;
|
|
725
|
+
"vpc_id"?: boolean;
|
|
726
|
+
}
|
|
727
|
+
export interface FilterGrep {
|
|
728
|
+
"Exclude"?: string[];
|
|
729
|
+
"LogicalOp"?: "legacy" | "AND" | "OR";
|
|
730
|
+
"Match"?: string;
|
|
731
|
+
"Regex"?: string[];
|
|
732
|
+
}
|
|
733
|
+
export interface FilterKubernetes {
|
|
734
|
+
"Annotations"?: string;
|
|
735
|
+
"Buffer_Size"?: string;
|
|
736
|
+
"Cache_Use_Docker_Id"?: string;
|
|
737
|
+
"DNS_Retries"?: string;
|
|
738
|
+
"DNS_Wait_Time"?: string;
|
|
739
|
+
"Dummy_Meta"?: string;
|
|
740
|
+
"K8S-Logging.Exclude"?: string;
|
|
741
|
+
"K8S-Logging.Parser"?: string;
|
|
742
|
+
"Keep_Log"?: string;
|
|
743
|
+
"Kube_CA_File"?: string;
|
|
744
|
+
"Kube_CA_Path"?: string;
|
|
745
|
+
"Kube_Meta_Cache_TTL"?: string;
|
|
746
|
+
"Kube_Tag_Prefix"?: string;
|
|
747
|
+
"Kube_Token_File"?: string;
|
|
748
|
+
"Kube_Token_TTL"?: string;
|
|
749
|
+
"Kube_URL"?: string;
|
|
750
|
+
"Kube_meta_preload_cache_dir"?: string;
|
|
751
|
+
"Kubelet_Host"?: string;
|
|
752
|
+
"Kubelet_Port"?: string;
|
|
753
|
+
"Labels"?: string;
|
|
754
|
+
"Match"?: string;
|
|
755
|
+
"Merge_Log"?: string;
|
|
756
|
+
"Merge_Log_Key"?: string;
|
|
757
|
+
"Merge_Log_Trim"?: string;
|
|
758
|
+
"Merge_Parser"?: string;
|
|
759
|
+
"Regex_Parser"?: string;
|
|
760
|
+
"Use_Journal"?: string;
|
|
761
|
+
"Use_Kubelet"?: string;
|
|
762
|
+
"kube_meta_namespace_cache_ttl"?: string;
|
|
763
|
+
"namespace_annotations"?: string;
|
|
764
|
+
"namespace_labels"?: string;
|
|
765
|
+
"tls.debug"?: string;
|
|
766
|
+
"tls.verify"?: string;
|
|
767
|
+
}
|
|
768
|
+
export interface AKeyMatches {
|
|
769
|
+
"key"?: string;
|
|
770
|
+
}
|
|
771
|
+
export interface KeyDoesNotExist {
|
|
772
|
+
"key"?: string;
|
|
773
|
+
"value"?: string;
|
|
774
|
+
}
|
|
775
|
+
export interface KeyExists {
|
|
776
|
+
"key"?: string;
|
|
777
|
+
}
|
|
778
|
+
export interface KeyValueDoesNotEqual {
|
|
779
|
+
"key"?: string;
|
|
780
|
+
"value"?: string;
|
|
781
|
+
}
|
|
782
|
+
export interface KeyValueDoesNotMatch {
|
|
783
|
+
"key"?: string;
|
|
784
|
+
"value"?: string;
|
|
785
|
+
}
|
|
786
|
+
export interface KeyValueEquals {
|
|
787
|
+
"key"?: string;
|
|
788
|
+
"value"?: string;
|
|
789
|
+
}
|
|
790
|
+
export interface KeyValueMatches {
|
|
791
|
+
"key"?: string;
|
|
792
|
+
"value"?: string;
|
|
793
|
+
}
|
|
794
|
+
export interface MatchingKeysDoNotHaveMatchingValues {
|
|
795
|
+
"key"?: string;
|
|
796
|
+
"value"?: string;
|
|
797
|
+
}
|
|
798
|
+
export interface MatchingKeysHaveMatchingValues {
|
|
799
|
+
"key"?: string;
|
|
800
|
+
"value"?: string;
|
|
801
|
+
}
|
|
802
|
+
export interface NoKeyMatches {
|
|
803
|
+
"key"?: string;
|
|
804
|
+
}
|
|
805
|
+
export interface ConditionsItem {
|
|
806
|
+
"A_key_matches"?: AKeyMatches;
|
|
807
|
+
"Key_does_not_exist"?: KeyDoesNotExist;
|
|
808
|
+
"Key_exists"?: KeyExists;
|
|
809
|
+
"Key_value_does_not_equal"?: KeyValueDoesNotEqual;
|
|
810
|
+
"Key_value_does_not_match"?: KeyValueDoesNotMatch;
|
|
811
|
+
"Key_value_equals"?: KeyValueEquals;
|
|
812
|
+
"Key_value_matches"?: KeyValueMatches;
|
|
813
|
+
"Matching_keys_do_not_have_matching_values"?: MatchingKeysDoNotHaveMatchingValues;
|
|
814
|
+
"Matching_keys_have_matching_values"?: MatchingKeysHaveMatchingValues;
|
|
815
|
+
"No_key_matches"?: NoKeyMatches;
|
|
816
|
+
}
|
|
817
|
+
export interface Add {
|
|
818
|
+
"key"?: string;
|
|
819
|
+
"value"?: string;
|
|
820
|
+
}
|
|
821
|
+
export interface Copy {
|
|
822
|
+
"key"?: string;
|
|
823
|
+
"value"?: string;
|
|
824
|
+
}
|
|
825
|
+
export interface HardCopy {
|
|
826
|
+
"key"?: string;
|
|
827
|
+
"value"?: string;
|
|
828
|
+
}
|
|
829
|
+
export interface HardRename {
|
|
830
|
+
"key"?: string;
|
|
831
|
+
"value"?: string;
|
|
832
|
+
}
|
|
833
|
+
export interface Remove {
|
|
834
|
+
"key"?: string;
|
|
835
|
+
}
|
|
836
|
+
export interface RemoveRegex {
|
|
837
|
+
"key"?: string;
|
|
838
|
+
}
|
|
839
|
+
export interface RemoveWildcard {
|
|
840
|
+
"key"?: string;
|
|
841
|
+
}
|
|
842
|
+
export interface Rename {
|
|
843
|
+
"key"?: string;
|
|
844
|
+
"value"?: string;
|
|
845
|
+
}
|
|
846
|
+
export interface Set {
|
|
847
|
+
"key"?: string;
|
|
848
|
+
"value"?: string;
|
|
849
|
+
}
|
|
850
|
+
export interface RulesItem {
|
|
851
|
+
"Add"?: Add;
|
|
852
|
+
"Copy"?: Copy;
|
|
853
|
+
"Hard_copy"?: HardCopy;
|
|
854
|
+
"Hard_rename"?: HardRename;
|
|
855
|
+
"Remove"?: Remove;
|
|
856
|
+
"Remove_regex"?: RemoveRegex;
|
|
857
|
+
"Remove_wildcard"?: RemoveWildcard;
|
|
858
|
+
"Rename"?: Rename;
|
|
859
|
+
"Set"?: Set;
|
|
860
|
+
}
|
|
861
|
+
export interface FilterModifyItem {
|
|
862
|
+
"conditions"?: ConditionsItem[];
|
|
863
|
+
"rules"?: RulesItem[];
|
|
864
|
+
}
|
|
865
|
+
export interface ForwardOptions {
|
|
866
|
+
"Require_ack_response"?: boolean;
|
|
867
|
+
"Retain_Metadata_In_Forward_Mode"?: boolean;
|
|
868
|
+
"Retry_Limit"?: string;
|
|
869
|
+
"Send_options"?: boolean;
|
|
870
|
+
"Tag"?: string;
|
|
871
|
+
"Time_as_Integer"?: boolean;
|
|
872
|
+
"Workers"?: number;
|
|
873
|
+
"storage.total_limit_size"?: string;
|
|
874
|
+
}
|
|
875
|
+
export interface HealthCheck {
|
|
876
|
+
"hcErrorsCount"?: number;
|
|
877
|
+
"hcPeriod"?: number;
|
|
878
|
+
"hcRetryFailureCount"?: number;
|
|
879
|
+
}
|
|
880
|
+
export interface InputTail {
|
|
881
|
+
"Buffer_Chunk_Size"?: string;
|
|
882
|
+
"Buffer_Max_Size"?: string;
|
|
883
|
+
"DB"?: string;
|
|
884
|
+
"DB.journal_mode"?: string;
|
|
885
|
+
"DB.locking"?: boolean;
|
|
886
|
+
"DB_Sync"?: string;
|
|
887
|
+
"Docker_Mode"?: string;
|
|
888
|
+
"Docker_Mode_Flush"?: string;
|
|
889
|
+
"Docker_Mode_Parser"?: string;
|
|
890
|
+
"Exclude_Path"?: string;
|
|
891
|
+
"File_Cache_Advise"?: string;
|
|
892
|
+
"Ignore_Older"?: string;
|
|
893
|
+
"Key"?: string;
|
|
894
|
+
"Mem_Buf_Limit"?: string;
|
|
895
|
+
"Multiline"?: string;
|
|
896
|
+
"Multiline_Flush"?: string;
|
|
897
|
+
"Parser"?: string;
|
|
898
|
+
"Parser_Firstline"?: string;
|
|
899
|
+
"Parser_N"?: string[];
|
|
900
|
+
"Path"?: string;
|
|
901
|
+
"Path_Key"?: string;
|
|
902
|
+
"Read_From_Head"?: boolean;
|
|
903
|
+
"Refresh_Interval"?: string;
|
|
904
|
+
"Rotate_Wait"?: string;
|
|
905
|
+
"Skip_Long_Lines"?: string;
|
|
906
|
+
"Tag"?: string;
|
|
907
|
+
"Tag_Regex"?: string;
|
|
908
|
+
"multiline.parser"?: string[];
|
|
909
|
+
"storage.pause_on_chunks_overlimit"?: string;
|
|
910
|
+
"storage.type"?: string;
|
|
911
|
+
}
|
|
912
|
+
export interface LivenessProbe {
|
|
913
|
+
"exec"?: Exec;
|
|
914
|
+
"failureThreshold"?: number;
|
|
915
|
+
"grpc"?: Grpc;
|
|
916
|
+
"httpGet"?: HttpGet;
|
|
917
|
+
"initialDelaySeconds"?: number;
|
|
918
|
+
"periodSeconds"?: number;
|
|
919
|
+
"successThreshold"?: number;
|
|
920
|
+
"tcpSocket"?: TcpSocket;
|
|
921
|
+
"terminationGracePeriodSeconds"?: number;
|
|
922
|
+
"timeoutSeconds"?: number;
|
|
923
|
+
}
|
|
924
|
+
export interface Metrics {
|
|
925
|
+
"enabled"?: boolean;
|
|
926
|
+
"interval"?: string;
|
|
927
|
+
"path"?: string;
|
|
928
|
+
"port"?: number;
|
|
929
|
+
"prometheusAnnotations"?: boolean;
|
|
930
|
+
"prometheusRules"?: boolean;
|
|
931
|
+
"prometheusRulesLabels"?: Record<string, unknown>;
|
|
932
|
+
"prometheusRulesOverride"?: PrometheusRulesOverrideItem[];
|
|
933
|
+
"serviceMonitor"?: boolean;
|
|
934
|
+
"serviceMonitorConfig"?: ServiceMonitorConfig;
|
|
935
|
+
"timeout"?: string;
|
|
936
|
+
}
|
|
937
|
+
export interface Network {
|
|
938
|
+
"connectTimeout"?: number;
|
|
939
|
+
"connectTimeoutLogError"?: boolean;
|
|
940
|
+
"dnsMode"?: string;
|
|
941
|
+
"dnsPreferIpv4"?: boolean;
|
|
942
|
+
"dnsResolver"?: string;
|
|
943
|
+
"keepalive"?: boolean;
|
|
944
|
+
"keepaliveIdleTimeout"?: number;
|
|
945
|
+
"keepaliveMaxRecycle"?: number;
|
|
946
|
+
"maxWorkerConnections"?: number;
|
|
947
|
+
"sourceAddress"?: string;
|
|
948
|
+
}
|
|
949
|
+
export interface PositionDb {
|
|
950
|
+
"configMap"?: ConfigMap;
|
|
951
|
+
"emptyDir"?: EmptyDir;
|
|
952
|
+
"host_path"?: HostPath;
|
|
953
|
+
"hostPath"?: HostPath;
|
|
954
|
+
"pvc"?: Pvc;
|
|
955
|
+
"secret"?: Secret;
|
|
956
|
+
}
|
|
957
|
+
export interface Positiondb {
|
|
958
|
+
"configMap"?: ConfigMap;
|
|
959
|
+
"emptyDir"?: EmptyDir;
|
|
960
|
+
"host_path"?: HostPath;
|
|
961
|
+
"hostPath"?: HostPath;
|
|
962
|
+
"pvc"?: Pvc;
|
|
963
|
+
"secret"?: Secret;
|
|
964
|
+
}
|
|
965
|
+
export interface ReadinessProbe {
|
|
966
|
+
"exec"?: Exec;
|
|
967
|
+
"failureThreshold"?: number;
|
|
968
|
+
"grpc"?: Grpc;
|
|
969
|
+
"httpGet"?: HttpGet;
|
|
970
|
+
"initialDelaySeconds"?: number;
|
|
971
|
+
"periodSeconds"?: number;
|
|
972
|
+
"successThreshold"?: number;
|
|
973
|
+
"tcpSocket"?: TcpSocket;
|
|
974
|
+
"terminationGracePeriodSeconds"?: number;
|
|
975
|
+
"timeoutSeconds"?: number;
|
|
976
|
+
}
|
|
977
|
+
export interface AppArmorProfile {
|
|
978
|
+
"localhostProfile"?: string;
|
|
979
|
+
"type": string;
|
|
980
|
+
}
|
|
981
|
+
export interface SeLinuxOptions {
|
|
982
|
+
"level"?: string;
|
|
983
|
+
"role"?: string;
|
|
984
|
+
"type"?: string;
|
|
985
|
+
"user"?: string;
|
|
986
|
+
}
|
|
987
|
+
export interface SeccompProfile {
|
|
988
|
+
"localhostProfile"?: string;
|
|
989
|
+
"type": string;
|
|
990
|
+
}
|
|
991
|
+
export interface SysctlsItem {
|
|
992
|
+
"name": string;
|
|
993
|
+
"value": string;
|
|
994
|
+
}
|
|
995
|
+
export interface WindowsOptions {
|
|
996
|
+
"gmsaCredentialSpec"?: string;
|
|
997
|
+
"gmsaCredentialSpecName"?: string;
|
|
998
|
+
"hostProcess"?: boolean;
|
|
999
|
+
"runAsUserName"?: string;
|
|
1000
|
+
}
|
|
1001
|
+
export interface PodSecurityContext {
|
|
1002
|
+
"appArmorProfile"?: AppArmorProfile;
|
|
1003
|
+
"fsGroup"?: number;
|
|
1004
|
+
"fsGroupChangePolicy"?: string;
|
|
1005
|
+
"runAsGroup"?: number;
|
|
1006
|
+
"runAsNonRoot"?: boolean;
|
|
1007
|
+
"runAsUser"?: number;
|
|
1008
|
+
"seLinuxChangePolicy"?: string;
|
|
1009
|
+
"seLinuxOptions"?: SeLinuxOptions;
|
|
1010
|
+
"seccompProfile"?: SeccompProfile;
|
|
1011
|
+
"supplementalGroups"?: number[];
|
|
1012
|
+
"supplementalGroupsPolicy"?: string;
|
|
1013
|
+
"sysctls"?: SysctlsItem[];
|
|
1014
|
+
"windowsOptions"?: WindowsOptions;
|
|
1015
|
+
}
|
|
1016
|
+
export interface Capabilities {
|
|
1017
|
+
"add"?: string[];
|
|
1018
|
+
"drop"?: string[];
|
|
1019
|
+
}
|
|
1020
|
+
export interface SecurityContext {
|
|
1021
|
+
"allowPrivilegeEscalation"?: boolean;
|
|
1022
|
+
"appArmorProfile"?: AppArmorProfile;
|
|
1023
|
+
"capabilities"?: Capabilities;
|
|
1024
|
+
"privileged"?: boolean;
|
|
1025
|
+
"procMount"?: string;
|
|
1026
|
+
"readOnlyRootFilesystem"?: boolean;
|
|
1027
|
+
"runAsGroup"?: number;
|
|
1028
|
+
"runAsNonRoot"?: boolean;
|
|
1029
|
+
"runAsUser"?: number;
|
|
1030
|
+
"seLinuxOptions"?: SeLinuxOptions;
|
|
1031
|
+
"seccompProfile"?: SeccompProfile;
|
|
1032
|
+
"windowsOptions"?: WindowsOptions;
|
|
1033
|
+
}
|
|
1034
|
+
export interface Security {
|
|
1035
|
+
"createOpenShiftSCC"?: boolean;
|
|
1036
|
+
"podSecurityContext"?: PodSecurityContext;
|
|
1037
|
+
"podSecurityPolicyCreate"?: boolean;
|
|
1038
|
+
"roleBasedAccessControlCreate"?: boolean;
|
|
1039
|
+
"securityContext"?: SecurityContext;
|
|
1040
|
+
"serviceAccount"?: string;
|
|
1041
|
+
}
|
|
1042
|
+
export interface Metadata {
|
|
1043
|
+
"annotations"?: Record<string, unknown>;
|
|
1044
|
+
"labels"?: Record<string, unknown>;
|
|
1045
|
+
}
|
|
1046
|
+
export interface SecretsItem {
|
|
1047
|
+
"apiVersion"?: string;
|
|
1048
|
+
"fieldPath"?: string;
|
|
1049
|
+
"kind"?: string;
|
|
1050
|
+
"name"?: string;
|
|
1051
|
+
"namespace"?: string;
|
|
1052
|
+
"resourceVersion"?: string;
|
|
1053
|
+
"uid"?: string;
|
|
1054
|
+
}
|
|
1055
|
+
export interface ServiceAccount {
|
|
1056
|
+
"automountServiceAccountToken"?: boolean;
|
|
1057
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1058
|
+
"metadata"?: Metadata;
|
|
1059
|
+
"secrets"?: SecretsItem[];
|
|
1060
|
+
}
|
|
1061
|
+
export interface SyslogngOutput {
|
|
1062
|
+
"Retry_Limit"?: string;
|
|
1063
|
+
"Workers"?: number;
|
|
1064
|
+
"json_date_format"?: string;
|
|
1065
|
+
"json_date_key"?: string;
|
|
1066
|
+
}
|
|
1067
|
+
export interface Tls {
|
|
1068
|
+
"enabled": boolean;
|
|
1069
|
+
"secretName"?: string;
|
|
1070
|
+
"sharedKey"?: string;
|
|
1071
|
+
}
|
|
1072
|
+
export interface TolerationsItem {
|
|
1073
|
+
"effect"?: string;
|
|
1074
|
+
"key"?: string;
|
|
1075
|
+
"operator"?: string;
|
|
1076
|
+
"tolerationSeconds"?: number;
|
|
1077
|
+
"value"?: string;
|
|
1078
|
+
}
|
|
1079
|
+
export interface RollingUpdate {
|
|
1080
|
+
"maxSurge"?: number | string;
|
|
1081
|
+
"maxUnavailable"?: number | string;
|
|
1082
|
+
}
|
|
1083
|
+
export interface UpdateStrategy {
|
|
1084
|
+
"rollingUpdate"?: RollingUpdate;
|
|
1085
|
+
"type"?: string;
|
|
1086
|
+
}
|
|
1087
|
+
export interface Fluentbit {
|
|
1088
|
+
"HostNetwork"?: boolean;
|
|
1089
|
+
"affinity"?: Affinity;
|
|
1090
|
+
"annotations"?: Record<string, unknown>;
|
|
1091
|
+
"bufferStorage"?: BufferStorage;
|
|
1092
|
+
"bufferStorageVolume"?: BufferStorageVolume;
|
|
1093
|
+
"bufferVolumeArgs"?: string[];
|
|
1094
|
+
"bufferVolumeImage"?: BufferVolumeImage;
|
|
1095
|
+
"bufferVolumeLivenessProbe"?: BufferVolumeLivenessProbe;
|
|
1096
|
+
"bufferVolumeMetrics"?: BufferVolumeMetrics;
|
|
1097
|
+
"bufferVolumeResources"?: BufferVolumeResources;
|
|
1098
|
+
"configHotReload"?: ConfigHotReload;
|
|
1099
|
+
"coroStackSize"?: number;
|
|
1100
|
+
"customConfigSecret"?: string;
|
|
1101
|
+
"customParsers"?: string;
|
|
1102
|
+
"daemonsetAnnotations"?: Record<string, unknown>;
|
|
1103
|
+
"disableKubernetesFilter"?: boolean;
|
|
1104
|
+
"disableVarLibDockerContainers"?: boolean;
|
|
1105
|
+
"disableVarLog"?: boolean;
|
|
1106
|
+
"dnsConfig"?: DnsConfig;
|
|
1107
|
+
"dnsPolicy"?: string;
|
|
1108
|
+
"enableUpstream"?: boolean;
|
|
1109
|
+
"enabledIPv6"?: boolean;
|
|
1110
|
+
"envVars"?: EnvVarsItem[];
|
|
1111
|
+
"extraVolumeMounts"?: ExtraVolumeMountsItem[];
|
|
1112
|
+
"filterAws"?: FilterAws;
|
|
1113
|
+
"filterGrep"?: FilterGrep;
|
|
1114
|
+
"filterKubernetes"?: FilterKubernetes;
|
|
1115
|
+
"filterModify"?: FilterModifyItem[];
|
|
1116
|
+
"flush"?: number;
|
|
1117
|
+
"forceHotReloadAfterGrace"?: boolean;
|
|
1118
|
+
"forwardOptions"?: ForwardOptions;
|
|
1119
|
+
"grace"?: number;
|
|
1120
|
+
"healthCheck"?: HealthCheck;
|
|
1121
|
+
"image"?: Image;
|
|
1122
|
+
"inputTail"?: InputTail;
|
|
1123
|
+
"labels"?: Record<string, unknown>;
|
|
1124
|
+
"livenessDefaultCheck"?: boolean;
|
|
1125
|
+
"livenessProbe"?: LivenessProbe;
|
|
1126
|
+
"logLevel"?: string;
|
|
1127
|
+
"loggingRef"?: string;
|
|
1128
|
+
"metrics"?: Metrics;
|
|
1129
|
+
"mountPath"?: string;
|
|
1130
|
+
"network"?: Network;
|
|
1131
|
+
"nodeSelector"?: Record<string, unknown>;
|
|
1132
|
+
"parser"?: string;
|
|
1133
|
+
"podPriorityClassName"?: string;
|
|
1134
|
+
"position_db"?: PositionDb;
|
|
1135
|
+
"positiondb"?: Positiondb;
|
|
1136
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1137
|
+
"resources"?: Resources2;
|
|
1138
|
+
"security"?: Security;
|
|
1139
|
+
"serviceAccount"?: ServiceAccount;
|
|
1140
|
+
"syslogng_output"?: SyslogngOutput;
|
|
1141
|
+
"targetHost"?: string;
|
|
1142
|
+
"targetPort"?: number;
|
|
1143
|
+
"terminationGracePeriodSeconds"?: number;
|
|
1144
|
+
"tls"?: Tls;
|
|
1145
|
+
"tolerations"?: TolerationsItem[];
|
|
1146
|
+
"updateStrategy"?: UpdateStrategy;
|
|
1147
|
+
}
|
|
1148
|
+
export interface ConfigCheckResources {
|
|
1149
|
+
"claims"?: ClaimsItem[];
|
|
1150
|
+
"limits"?: Record<string, unknown>;
|
|
1151
|
+
"requests"?: Record<string, unknown>;
|
|
1152
|
+
}
|
|
1153
|
+
export interface ConfigReloaderImage {
|
|
1154
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1155
|
+
"pullPolicy"?: string;
|
|
1156
|
+
"repository"?: string;
|
|
1157
|
+
"tag"?: string;
|
|
1158
|
+
}
|
|
1159
|
+
export interface ConfigReloaderResources {
|
|
1160
|
+
"claims"?: ClaimsItem[];
|
|
1161
|
+
"limits"?: Record<string, unknown>;
|
|
1162
|
+
"requests"?: Record<string, unknown>;
|
|
1163
|
+
}
|
|
1164
|
+
export interface Volume {
|
|
1165
|
+
"configMap"?: ConfigMap;
|
|
1166
|
+
"emptyDir"?: EmptyDir;
|
|
1167
|
+
"host_path"?: HostPath;
|
|
1168
|
+
"hostPath"?: HostPath;
|
|
1169
|
+
"pvc"?: Pvc;
|
|
1170
|
+
"secret"?: Secret;
|
|
1171
|
+
}
|
|
1172
|
+
export interface ExtraVolumesItem {
|
|
1173
|
+
"containerName"?: string;
|
|
1174
|
+
"path"?: string;
|
|
1175
|
+
"volume"?: Volume;
|
|
1176
|
+
"volumeName"?: string;
|
|
1177
|
+
}
|
|
1178
|
+
export interface FluentOutLogrotate {
|
|
1179
|
+
"age"?: string;
|
|
1180
|
+
"enabled": boolean;
|
|
1181
|
+
"path"?: string;
|
|
1182
|
+
"size"?: string;
|
|
1183
|
+
}
|
|
1184
|
+
export interface FluentdPvcSpec {
|
|
1185
|
+
"configMap"?: ConfigMap;
|
|
1186
|
+
"emptyDir"?: EmptyDir;
|
|
1187
|
+
"host_path"?: HostPath;
|
|
1188
|
+
"hostPath"?: HostPath;
|
|
1189
|
+
"pvc"?: Pvc;
|
|
1190
|
+
"secret"?: Secret;
|
|
1191
|
+
}
|
|
1192
|
+
export interface Security2 {
|
|
1193
|
+
"allow_anonymous_source"?: boolean;
|
|
1194
|
+
"self_hostname": string;
|
|
1195
|
+
"shared_key": string;
|
|
1196
|
+
"user_auth"?: boolean;
|
|
1197
|
+
}
|
|
1198
|
+
export interface Transport {
|
|
1199
|
+
"ca_cert_path"?: string;
|
|
1200
|
+
"ca_path"?: string;
|
|
1201
|
+
"ca_private_key_passphrase"?: string;
|
|
1202
|
+
"ca_private_key_path"?: string;
|
|
1203
|
+
"cert_path"?: string;
|
|
1204
|
+
"ciphers"?: string;
|
|
1205
|
+
"client_cert_auth"?: boolean;
|
|
1206
|
+
"insecure"?: boolean;
|
|
1207
|
+
"private_key_passphrase"?: string;
|
|
1208
|
+
"private_key_path"?: string;
|
|
1209
|
+
"protocol"?: string;
|
|
1210
|
+
"version"?: string;
|
|
1211
|
+
}
|
|
1212
|
+
export interface ForwardInputConfig {
|
|
1213
|
+
"add_tag_prefix"?: string;
|
|
1214
|
+
"bind"?: string;
|
|
1215
|
+
"chunk_size_limit"?: string;
|
|
1216
|
+
"chunk_size_warn_limit"?: string;
|
|
1217
|
+
"deny_keepalive"?: boolean;
|
|
1218
|
+
"linger_timeout"?: number;
|
|
1219
|
+
"port"?: string;
|
|
1220
|
+
"resolve_hostname"?: boolean;
|
|
1221
|
+
"security"?: Security2;
|
|
1222
|
+
"send_keepalive_packet"?: boolean;
|
|
1223
|
+
"skip_invalid_event"?: boolean;
|
|
1224
|
+
"source_address_key"?: string;
|
|
1225
|
+
"sourceHostnameKey"?: string;
|
|
1226
|
+
"tag"?: string;
|
|
1227
|
+
"transport"?: Transport;
|
|
1228
|
+
}
|
|
1229
|
+
export interface Pdb {
|
|
1230
|
+
"maxUnavailable"?: number | string;
|
|
1231
|
+
"minAvailable"?: number | string;
|
|
1232
|
+
"unhealthyPodEvictionPolicy"?: string;
|
|
1233
|
+
}
|
|
1234
|
+
export interface ReadinessDefaultCheck {
|
|
1235
|
+
"bufferFileNumber"?: boolean;
|
|
1236
|
+
"bufferFileNumberMax"?: number;
|
|
1237
|
+
"bufferFreeSpace"?: boolean;
|
|
1238
|
+
"bufferFreeSpaceThreshold"?: number;
|
|
1239
|
+
"failureThreshold"?: number;
|
|
1240
|
+
"initialDelaySeconds"?: number;
|
|
1241
|
+
"periodSeconds"?: number;
|
|
1242
|
+
"successThreshold"?: number;
|
|
1243
|
+
"timeoutSeconds"?: number;
|
|
1244
|
+
}
|
|
1245
|
+
export interface PauseImage {
|
|
1246
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1247
|
+
"pullPolicy"?: string;
|
|
1248
|
+
"repository"?: string;
|
|
1249
|
+
"tag"?: string;
|
|
1250
|
+
}
|
|
1251
|
+
export interface Drain {
|
|
1252
|
+
"annotations"?: Record<string, unknown>;
|
|
1253
|
+
"deleteVolume"?: boolean;
|
|
1254
|
+
"enabled"?: boolean;
|
|
1255
|
+
"image"?: Image;
|
|
1256
|
+
"labels"?: Record<string, unknown>;
|
|
1257
|
+
"pauseImage"?: PauseImage;
|
|
1258
|
+
"resources"?: Resources2;
|
|
1259
|
+
"securityContext"?: SecurityContext;
|
|
1260
|
+
}
|
|
1261
|
+
export interface Scaling {
|
|
1262
|
+
"drain"?: Drain;
|
|
1263
|
+
"podManagementPolicy"?: string;
|
|
1264
|
+
"replicas"?: number;
|
|
1265
|
+
}
|
|
1266
|
+
export interface PortsItem {
|
|
1267
|
+
"appProtocol"?: string;
|
|
1268
|
+
"name"?: string;
|
|
1269
|
+
"nodePort"?: number;
|
|
1270
|
+
"port": number;
|
|
1271
|
+
"protocol"?: string;
|
|
1272
|
+
"targetPort"?: number | string;
|
|
1273
|
+
}
|
|
1274
|
+
export interface ClientIP {
|
|
1275
|
+
"timeoutSeconds"?: number;
|
|
1276
|
+
}
|
|
1277
|
+
export interface SessionAffinityConfig {
|
|
1278
|
+
"clientIP"?: ClientIP;
|
|
1279
|
+
}
|
|
1280
|
+
export interface Spec2 {
|
|
1281
|
+
"allocateLoadBalancerNodePorts"?: boolean;
|
|
1282
|
+
"clusterIP"?: string;
|
|
1283
|
+
"clusterIPs"?: string[];
|
|
1284
|
+
"externalIPs"?: string[];
|
|
1285
|
+
"externalName"?: string;
|
|
1286
|
+
"externalTrafficPolicy"?: string;
|
|
1287
|
+
"healthCheckNodePort"?: number;
|
|
1288
|
+
"internalTrafficPolicy"?: string;
|
|
1289
|
+
"ipFamilies"?: string[];
|
|
1290
|
+
"ipFamilyPolicy"?: string;
|
|
1291
|
+
"loadBalancerClass"?: string;
|
|
1292
|
+
"loadBalancerIP"?: string;
|
|
1293
|
+
"loadBalancerSourceRanges"?: string[];
|
|
1294
|
+
"ports"?: PortsItem[];
|
|
1295
|
+
"publishNotReadyAddresses"?: boolean;
|
|
1296
|
+
"selector"?: Record<string, unknown>;
|
|
1297
|
+
"sessionAffinity"?: string;
|
|
1298
|
+
"sessionAffinityConfig"?: SessionAffinityConfig;
|
|
1299
|
+
"trafficDistribution"?: string;
|
|
1300
|
+
"type"?: string;
|
|
1301
|
+
}
|
|
1302
|
+
export interface Service {
|
|
1303
|
+
"metadata"?: Metadata;
|
|
1304
|
+
"spec"?: Spec2;
|
|
1305
|
+
}
|
|
1306
|
+
export interface EnvItem {
|
|
1307
|
+
"name": string;
|
|
1308
|
+
"value"?: string;
|
|
1309
|
+
"valueFrom"?: ValueFrom2;
|
|
1310
|
+
}
|
|
1311
|
+
export interface ConfigMapRef {
|
|
1312
|
+
"name"?: string;
|
|
1313
|
+
"optional"?: boolean;
|
|
1314
|
+
}
|
|
1315
|
+
export interface SecretRef {
|
|
1316
|
+
"name"?: string;
|
|
1317
|
+
"optional"?: boolean;
|
|
1318
|
+
}
|
|
1319
|
+
export interface EnvFromItem {
|
|
1320
|
+
"configMapRef"?: ConfigMapRef;
|
|
1321
|
+
"prefix"?: string;
|
|
1322
|
+
"secretRef"?: SecretRef;
|
|
1323
|
+
}
|
|
1324
|
+
export interface Sleep {
|
|
1325
|
+
"seconds": number;
|
|
1326
|
+
}
|
|
1327
|
+
export interface PostStart {
|
|
1328
|
+
"exec"?: Exec;
|
|
1329
|
+
"httpGet"?: HttpGet;
|
|
1330
|
+
"sleep"?: Sleep;
|
|
1331
|
+
"tcpSocket"?: TcpSocket;
|
|
1332
|
+
}
|
|
1333
|
+
export interface PreStop {
|
|
1334
|
+
"exec"?: Exec;
|
|
1335
|
+
"httpGet"?: HttpGet;
|
|
1336
|
+
"sleep"?: Sleep;
|
|
1337
|
+
"tcpSocket"?: TcpSocket;
|
|
1338
|
+
}
|
|
1339
|
+
export interface Lifecycle {
|
|
1340
|
+
"postStart"?: PostStart;
|
|
1341
|
+
"preStop"?: PreStop;
|
|
1342
|
+
"stopSignal"?: string;
|
|
1343
|
+
}
|
|
1344
|
+
export interface PortsItem2 {
|
|
1345
|
+
"containerPort": number;
|
|
1346
|
+
"hostIP"?: string;
|
|
1347
|
+
"hostPort"?: number;
|
|
1348
|
+
"name"?: string;
|
|
1349
|
+
"protocol"?: string;
|
|
1350
|
+
}
|
|
1351
|
+
export interface ResizePolicyItem {
|
|
1352
|
+
"resourceName": string;
|
|
1353
|
+
"restartPolicy": string;
|
|
1354
|
+
}
|
|
1355
|
+
export interface ExitCodes {
|
|
1356
|
+
"operator": string;
|
|
1357
|
+
"values"?: number[];
|
|
1358
|
+
}
|
|
1359
|
+
export interface RestartPolicyRulesItem {
|
|
1360
|
+
"action": string;
|
|
1361
|
+
"exitCodes"?: ExitCodes;
|
|
1362
|
+
}
|
|
1363
|
+
export interface StartupProbe {
|
|
1364
|
+
"exec"?: Exec;
|
|
1365
|
+
"failureThreshold"?: number;
|
|
1366
|
+
"grpc"?: Grpc;
|
|
1367
|
+
"httpGet"?: HttpGet;
|
|
1368
|
+
"initialDelaySeconds"?: number;
|
|
1369
|
+
"periodSeconds"?: number;
|
|
1370
|
+
"successThreshold"?: number;
|
|
1371
|
+
"tcpSocket"?: TcpSocket;
|
|
1372
|
+
"terminationGracePeriodSeconds"?: number;
|
|
1373
|
+
"timeoutSeconds"?: number;
|
|
1374
|
+
}
|
|
1375
|
+
export interface VolumeDevicesItem {
|
|
1376
|
+
"devicePath": string;
|
|
1377
|
+
"name": string;
|
|
1378
|
+
}
|
|
1379
|
+
export interface VolumeMountsItem {
|
|
1380
|
+
"mountPath": string;
|
|
1381
|
+
"mountPropagation"?: string;
|
|
1382
|
+
"name": string;
|
|
1383
|
+
"readOnly"?: boolean;
|
|
1384
|
+
"recursiveReadOnly"?: string;
|
|
1385
|
+
"subPath"?: string;
|
|
1386
|
+
"subPathExpr"?: string;
|
|
1387
|
+
}
|
|
1388
|
+
export interface SidecarContainersItem {
|
|
1389
|
+
"args"?: string[];
|
|
1390
|
+
"command"?: string[];
|
|
1391
|
+
"env"?: EnvItem[];
|
|
1392
|
+
"envFrom"?: EnvFromItem[];
|
|
1393
|
+
"image"?: string;
|
|
1394
|
+
"imagePullPolicy"?: string;
|
|
1395
|
+
"lifecycle"?: Lifecycle;
|
|
1396
|
+
"livenessProbe"?: LivenessProbe;
|
|
1397
|
+
"name": string;
|
|
1398
|
+
"ports"?: PortsItem2[];
|
|
1399
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1400
|
+
"resizePolicy"?: ResizePolicyItem[];
|
|
1401
|
+
"resources"?: Resources2;
|
|
1402
|
+
"restartPolicy"?: string;
|
|
1403
|
+
"restartPolicyRules"?: RestartPolicyRulesItem[];
|
|
1404
|
+
"securityContext"?: SecurityContext;
|
|
1405
|
+
"startupProbe"?: StartupProbe;
|
|
1406
|
+
"stdin"?: boolean;
|
|
1407
|
+
"stdinOnce"?: boolean;
|
|
1408
|
+
"terminationMessagePath"?: string;
|
|
1409
|
+
"terminationMessagePolicy"?: string;
|
|
1410
|
+
"tty"?: boolean;
|
|
1411
|
+
"volumeDevices"?: VolumeDevicesItem[];
|
|
1412
|
+
"volumeMounts"?: VolumeMountsItem[];
|
|
1413
|
+
"workingDir"?: string;
|
|
1414
|
+
}
|
|
1415
|
+
export interface TopologySpreadConstraintsItem {
|
|
1416
|
+
"labelSelector"?: LabelSelector;
|
|
1417
|
+
"matchLabelKeys"?: string[];
|
|
1418
|
+
"maxSkew": number;
|
|
1419
|
+
"minDomains"?: number;
|
|
1420
|
+
"nodeAffinityPolicy"?: string;
|
|
1421
|
+
"nodeTaintsPolicy"?: string;
|
|
1422
|
+
"topologyKey": string;
|
|
1423
|
+
"whenUnsatisfiable": string;
|
|
1424
|
+
}
|
|
1425
|
+
export interface VolumeModImage {
|
|
1426
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1427
|
+
"pullPolicy"?: string;
|
|
1428
|
+
"repository"?: string;
|
|
1429
|
+
"tag"?: string;
|
|
1430
|
+
}
|
|
1431
|
+
export interface Fluentd {
|
|
1432
|
+
"affinity"?: Affinity;
|
|
1433
|
+
"annotations"?: Record<string, unknown>;
|
|
1434
|
+
"bufferStorageVolume"?: BufferStorageVolume;
|
|
1435
|
+
"bufferVolumeArgs"?: string[];
|
|
1436
|
+
"bufferVolumeImage"?: BufferVolumeImage;
|
|
1437
|
+
"bufferVolumeLivenessProbe"?: BufferVolumeLivenessProbe;
|
|
1438
|
+
"bufferVolumeMetrics"?: BufferVolumeMetrics;
|
|
1439
|
+
"bufferVolumeResources"?: BufferVolumeResources;
|
|
1440
|
+
"compressConfigFile"?: boolean;
|
|
1441
|
+
"configCheck"?: ConfigCheck;
|
|
1442
|
+
"configCheckAnnotations"?: Record<string, unknown>;
|
|
1443
|
+
"configCheckResources"?: ConfigCheckResources;
|
|
1444
|
+
"configReloaderImage"?: ConfigReloaderImage;
|
|
1445
|
+
"configReloaderResources"?: ConfigReloaderResources;
|
|
1446
|
+
"configReloaderUseGracefulReloadWebhook"?: boolean;
|
|
1447
|
+
"disablePvc"?: boolean;
|
|
1448
|
+
"dnsConfig"?: DnsConfig;
|
|
1449
|
+
"dnsPolicy"?: string;
|
|
1450
|
+
"enableMsgpackTimeSupport"?: boolean;
|
|
1451
|
+
"enabledIPv6"?: boolean;
|
|
1452
|
+
"envVars"?: EnvVarsItem[];
|
|
1453
|
+
"extraArgs"?: string[];
|
|
1454
|
+
"extraVolumes"?: ExtraVolumesItem[];
|
|
1455
|
+
"fluentLogDestination"?: string;
|
|
1456
|
+
"fluentOutLogrotate"?: FluentOutLogrotate;
|
|
1457
|
+
"fluentdPvcSpec"?: FluentdPvcSpec;
|
|
1458
|
+
"forwardInputConfig"?: ForwardInputConfig;
|
|
1459
|
+
"ignoreRepeatedLogInterval"?: string;
|
|
1460
|
+
"ignoreSameLogInterval"?: string;
|
|
1461
|
+
"image"?: Image;
|
|
1462
|
+
"labels"?: Record<string, unknown>;
|
|
1463
|
+
"livenessDefaultCheck"?: boolean;
|
|
1464
|
+
"livenessProbe"?: LivenessProbe;
|
|
1465
|
+
"logFormat"?: string;
|
|
1466
|
+
"logLevel"?: string;
|
|
1467
|
+
"metrics"?: Metrics;
|
|
1468
|
+
"nodeSelector"?: Record<string, unknown>;
|
|
1469
|
+
"pdb"?: Pdb;
|
|
1470
|
+
"podPriorityClassName"?: string;
|
|
1471
|
+
"port"?: number;
|
|
1472
|
+
"readinessDefaultCheck"?: ReadinessDefaultCheck;
|
|
1473
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1474
|
+
"resources"?: Resources2;
|
|
1475
|
+
"rootDir"?: string;
|
|
1476
|
+
"scaling"?: Scaling;
|
|
1477
|
+
"security"?: Security;
|
|
1478
|
+
"service"?: Service;
|
|
1479
|
+
"serviceAccount"?: ServiceAccount;
|
|
1480
|
+
"sidecarContainers"?: SidecarContainersItem[];
|
|
1481
|
+
"statefulsetAnnotations"?: Record<string, unknown>;
|
|
1482
|
+
"terminationGracePeriodSeconds"?: number;
|
|
1483
|
+
"tls"?: Tls;
|
|
1484
|
+
"tolerations"?: TolerationsItem[];
|
|
1485
|
+
"topologySpreadConstraints"?: TopologySpreadConstraintsItem[];
|
|
1486
|
+
"volumeModImage"?: VolumeModImage;
|
|
1487
|
+
"volumeMountChmod"?: boolean;
|
|
1488
|
+
"workers"?: number;
|
|
1489
|
+
}
|
|
1490
|
+
export interface GlobalFiltersItem {
|
|
1491
|
+
"concat"?: Concat;
|
|
1492
|
+
"dedot"?: Dedot;
|
|
1493
|
+
"detectExceptions"?: DetectExceptions;
|
|
1494
|
+
"elasticsearch_genid"?: ElasticsearchGenid;
|
|
1495
|
+
"geoip"?: Geoip;
|
|
1496
|
+
"grep"?: Grep;
|
|
1497
|
+
"kube_events_timestamp"?: KubeEventsTimestamp;
|
|
1498
|
+
"parser"?: Parser;
|
|
1499
|
+
"prometheus"?: Prometheus;
|
|
1500
|
+
"raw"?: Raw;
|
|
1501
|
+
"record_modifier"?: RecordModifier;
|
|
1502
|
+
"record_transformer"?: RecordTransformer;
|
|
1503
|
+
"stdout"?: Stdout;
|
|
1504
|
+
"tag_normaliser"?: TagNormaliser;
|
|
1505
|
+
"throttle"?: Throttle;
|
|
1506
|
+
"useragent"?: Useragent;
|
|
1507
|
+
}
|
|
1508
|
+
export interface RouteConfig {
|
|
1509
|
+
"disableLoggingRoute"?: boolean;
|
|
1510
|
+
"enableTelemetryControllerRoute"?: boolean;
|
|
1511
|
+
"tenantLabels"?: Record<string, unknown>;
|
|
1512
|
+
}
|
|
1513
|
+
export interface BufferVolumeMetrics2 {
|
|
1514
|
+
"enabled"?: boolean;
|
|
1515
|
+
"interval"?: string;
|
|
1516
|
+
"mount_name"?: string;
|
|
1517
|
+
"path"?: string;
|
|
1518
|
+
"port"?: number;
|
|
1519
|
+
"prometheusAnnotations"?: boolean;
|
|
1520
|
+
"prometheusRules"?: boolean;
|
|
1521
|
+
"prometheusRulesLabels"?: Record<string, unknown>;
|
|
1522
|
+
"prometheusRulesOverride"?: PrometheusRulesOverrideItem[];
|
|
1523
|
+
"serviceMonitor"?: boolean;
|
|
1524
|
+
"serviceMonitorConfig"?: ServiceMonitorConfig;
|
|
1525
|
+
"timeout"?: string;
|
|
1526
|
+
}
|
|
1527
|
+
export interface BufferVolumeMetricsImage {
|
|
1528
|
+
"repository"?: string;
|
|
1529
|
+
"tag"?: string;
|
|
1530
|
+
}
|
|
1531
|
+
export interface BufferVolumeMetricsLivenessProbe {
|
|
1532
|
+
"exec"?: Exec;
|
|
1533
|
+
"failureThreshold"?: number;
|
|
1534
|
+
"grpc"?: Grpc;
|
|
1535
|
+
"httpGet"?: HttpGet;
|
|
1536
|
+
"initialDelaySeconds"?: number;
|
|
1537
|
+
"periodSeconds"?: number;
|
|
1538
|
+
"successThreshold"?: number;
|
|
1539
|
+
"tcpSocket"?: TcpSocket;
|
|
1540
|
+
"terminationGracePeriodSeconds"?: number;
|
|
1541
|
+
"timeoutSeconds"?: number;
|
|
1542
|
+
}
|
|
1543
|
+
export interface BufferVolumeMetricsResources {
|
|
1544
|
+
"claims"?: ClaimsItem[];
|
|
1545
|
+
"limits"?: Record<string, unknown>;
|
|
1546
|
+
"requests"?: Record<string, unknown>;
|
|
1547
|
+
}
|
|
1548
|
+
export interface BufferVolumeMetricsService {
|
|
1549
|
+
"metadata"?: Metadata;
|
|
1550
|
+
"spec"?: Spec2;
|
|
1551
|
+
}
|
|
1552
|
+
export interface ContainersItem {
|
|
1553
|
+
"args"?: string[];
|
|
1554
|
+
"command"?: string[];
|
|
1555
|
+
"env"?: EnvItem[];
|
|
1556
|
+
"envFrom"?: EnvFromItem[];
|
|
1557
|
+
"image"?: string;
|
|
1558
|
+
"imagePullPolicy"?: string;
|
|
1559
|
+
"lifecycle"?: Lifecycle;
|
|
1560
|
+
"livenessProbe"?: LivenessProbe;
|
|
1561
|
+
"name": string;
|
|
1562
|
+
"ports"?: PortsItem2[];
|
|
1563
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1564
|
+
"resizePolicy"?: ResizePolicyItem[];
|
|
1565
|
+
"resources"?: Resources2;
|
|
1566
|
+
"restartPolicy"?: string;
|
|
1567
|
+
"restartPolicyRules"?: RestartPolicyRulesItem[];
|
|
1568
|
+
"securityContext"?: SecurityContext;
|
|
1569
|
+
"startupProbe"?: StartupProbe;
|
|
1570
|
+
"stdin"?: boolean;
|
|
1571
|
+
"stdinOnce"?: boolean;
|
|
1572
|
+
"terminationMessagePath"?: string;
|
|
1573
|
+
"terminationMessagePolicy"?: string;
|
|
1574
|
+
"tty"?: boolean;
|
|
1575
|
+
"volumeDevices"?: VolumeDevicesItem[];
|
|
1576
|
+
"volumeMounts"?: VolumeMountsItem[];
|
|
1577
|
+
"workingDir"?: string;
|
|
1578
|
+
}
|
|
1579
|
+
export interface EphemeralContainersItem {
|
|
1580
|
+
"args"?: string[];
|
|
1581
|
+
"command"?: string[];
|
|
1582
|
+
"env"?: EnvItem[];
|
|
1583
|
+
"envFrom"?: EnvFromItem[];
|
|
1584
|
+
"image"?: string;
|
|
1585
|
+
"imagePullPolicy"?: string;
|
|
1586
|
+
"lifecycle"?: Lifecycle;
|
|
1587
|
+
"livenessProbe"?: LivenessProbe;
|
|
1588
|
+
"name": string;
|
|
1589
|
+
"ports"?: PortsItem2[];
|
|
1590
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1591
|
+
"resizePolicy"?: ResizePolicyItem[];
|
|
1592
|
+
"resources"?: Resources2;
|
|
1593
|
+
"restartPolicy"?: string;
|
|
1594
|
+
"restartPolicyRules"?: RestartPolicyRulesItem[];
|
|
1595
|
+
"securityContext"?: SecurityContext;
|
|
1596
|
+
"startupProbe"?: StartupProbe;
|
|
1597
|
+
"stdin"?: boolean;
|
|
1598
|
+
"stdinOnce"?: boolean;
|
|
1599
|
+
"targetContainerName"?: string;
|
|
1600
|
+
"terminationMessagePath"?: string;
|
|
1601
|
+
"terminationMessagePolicy"?: string;
|
|
1602
|
+
"tty"?: boolean;
|
|
1603
|
+
"volumeDevices"?: VolumeDevicesItem[];
|
|
1604
|
+
"volumeMounts"?: VolumeMountsItem[];
|
|
1605
|
+
"workingDir"?: string;
|
|
1606
|
+
}
|
|
1607
|
+
export interface HostAliasesItem {
|
|
1608
|
+
"hostnames"?: string[];
|
|
1609
|
+
"ip": string;
|
|
1610
|
+
}
|
|
1611
|
+
export interface InitContainersItem {
|
|
1612
|
+
"args"?: string[];
|
|
1613
|
+
"command"?: string[];
|
|
1614
|
+
"env"?: EnvItem[];
|
|
1615
|
+
"envFrom"?: EnvFromItem[];
|
|
1616
|
+
"image"?: string;
|
|
1617
|
+
"imagePullPolicy"?: string;
|
|
1618
|
+
"lifecycle"?: Lifecycle;
|
|
1619
|
+
"livenessProbe"?: LivenessProbe;
|
|
1620
|
+
"name": string;
|
|
1621
|
+
"ports"?: PortsItem2[];
|
|
1622
|
+
"readinessProbe"?: ReadinessProbe;
|
|
1623
|
+
"resizePolicy"?: ResizePolicyItem[];
|
|
1624
|
+
"resources"?: Resources2;
|
|
1625
|
+
"restartPolicy"?: string;
|
|
1626
|
+
"restartPolicyRules"?: RestartPolicyRulesItem[];
|
|
1627
|
+
"securityContext"?: SecurityContext;
|
|
1628
|
+
"startupProbe"?: StartupProbe;
|
|
1629
|
+
"stdin"?: boolean;
|
|
1630
|
+
"stdinOnce"?: boolean;
|
|
1631
|
+
"terminationMessagePath"?: string;
|
|
1632
|
+
"terminationMessagePolicy"?: string;
|
|
1633
|
+
"tty"?: boolean;
|
|
1634
|
+
"volumeDevices"?: VolumeDevicesItem[];
|
|
1635
|
+
"volumeMounts"?: VolumeMountsItem[];
|
|
1636
|
+
"workingDir"?: string;
|
|
1637
|
+
}
|
|
1638
|
+
export interface ReadinessGatesItem {
|
|
1639
|
+
"conditionType": string;
|
|
1640
|
+
}
|
|
1641
|
+
export interface SecurityContext2 {
|
|
1642
|
+
"appArmorProfile"?: AppArmorProfile;
|
|
1643
|
+
"fsGroup"?: number;
|
|
1644
|
+
"fsGroupChangePolicy"?: string;
|
|
1645
|
+
"runAsGroup"?: number;
|
|
1646
|
+
"runAsNonRoot"?: boolean;
|
|
1647
|
+
"runAsUser"?: number;
|
|
1648
|
+
"seLinuxChangePolicy"?: string;
|
|
1649
|
+
"seLinuxOptions"?: SeLinuxOptions;
|
|
1650
|
+
"seccompProfile"?: SeccompProfile;
|
|
1651
|
+
"supplementalGroups"?: number[];
|
|
1652
|
+
"supplementalGroupsPolicy"?: string;
|
|
1653
|
+
"sysctls"?: SysctlsItem[];
|
|
1654
|
+
"windowsOptions"?: WindowsOptions;
|
|
1655
|
+
}
|
|
1656
|
+
export interface AwsElasticBlockStore {
|
|
1657
|
+
"fsType"?: string;
|
|
1658
|
+
"partition"?: number;
|
|
1659
|
+
"readOnly"?: boolean;
|
|
1660
|
+
"volumeID": string;
|
|
1661
|
+
}
|
|
1662
|
+
export interface AzureDisk {
|
|
1663
|
+
"cachingMode"?: string;
|
|
1664
|
+
"diskName": string;
|
|
1665
|
+
"diskURI": string;
|
|
1666
|
+
"fsType"?: string;
|
|
1667
|
+
"kind"?: string;
|
|
1668
|
+
"readOnly"?: boolean;
|
|
1669
|
+
}
|
|
1670
|
+
export interface AzureFile {
|
|
1671
|
+
"readOnly"?: boolean;
|
|
1672
|
+
"secretName": string;
|
|
1673
|
+
"shareName": string;
|
|
1674
|
+
}
|
|
1675
|
+
export interface SecretRef2 {
|
|
1676
|
+
"name"?: string;
|
|
1677
|
+
}
|
|
1678
|
+
export interface Cephfs {
|
|
1679
|
+
"monitors": string[];
|
|
1680
|
+
"path"?: string;
|
|
1681
|
+
"readOnly"?: boolean;
|
|
1682
|
+
"secretFile"?: string;
|
|
1683
|
+
"secretRef"?: SecretRef2;
|
|
1684
|
+
"user"?: string;
|
|
1685
|
+
}
|
|
1686
|
+
export interface Cinder {
|
|
1687
|
+
"fsType"?: string;
|
|
1688
|
+
"readOnly"?: boolean;
|
|
1689
|
+
"secretRef"?: SecretRef2;
|
|
1690
|
+
"volumeID": string;
|
|
1691
|
+
}
|
|
1692
|
+
export interface NodePublishSecretRef {
|
|
1693
|
+
"name"?: string;
|
|
1694
|
+
}
|
|
1695
|
+
export interface Csi {
|
|
1696
|
+
"driver": string;
|
|
1697
|
+
"fsType"?: string;
|
|
1698
|
+
"nodePublishSecretRef"?: NodePublishSecretRef;
|
|
1699
|
+
"readOnly"?: boolean;
|
|
1700
|
+
"volumeAttributes"?: Record<string, unknown>;
|
|
1701
|
+
}
|
|
1702
|
+
export interface ItemsItem2 {
|
|
1703
|
+
"fieldRef"?: FieldRef;
|
|
1704
|
+
"mode"?: number;
|
|
1705
|
+
"path": string;
|
|
1706
|
+
"resourceFieldRef"?: ResourceFieldRef;
|
|
1707
|
+
}
|
|
1708
|
+
export interface DownwardAPI {
|
|
1709
|
+
"defaultMode"?: number;
|
|
1710
|
+
"items"?: ItemsItem2[];
|
|
1711
|
+
}
|
|
1712
|
+
export interface VolumeClaimTemplate {
|
|
1713
|
+
"metadata"?: Record<string, unknown>;
|
|
1714
|
+
"spec": Spec;
|
|
1715
|
+
}
|
|
1716
|
+
export interface Ephemeral {
|
|
1717
|
+
"volumeClaimTemplate"?: VolumeClaimTemplate;
|
|
1718
|
+
}
|
|
1719
|
+
export interface Fc {
|
|
1720
|
+
"fsType"?: string;
|
|
1721
|
+
"lun"?: number;
|
|
1722
|
+
"readOnly"?: boolean;
|
|
1723
|
+
"targetWWNs"?: string[];
|
|
1724
|
+
"wwids"?: string[];
|
|
1725
|
+
}
|
|
1726
|
+
export interface FlexVolume {
|
|
1727
|
+
"driver": string;
|
|
1728
|
+
"fsType"?: string;
|
|
1729
|
+
"options"?: Record<string, unknown>;
|
|
1730
|
+
"readOnly"?: boolean;
|
|
1731
|
+
"secretRef"?: SecretRef2;
|
|
1732
|
+
}
|
|
1733
|
+
export interface Flocker {
|
|
1734
|
+
"datasetName"?: string;
|
|
1735
|
+
"datasetUUID"?: string;
|
|
1736
|
+
}
|
|
1737
|
+
export interface GcePersistentDisk {
|
|
1738
|
+
"fsType"?: string;
|
|
1739
|
+
"partition"?: number;
|
|
1740
|
+
"pdName": string;
|
|
1741
|
+
"readOnly"?: boolean;
|
|
1742
|
+
}
|
|
1743
|
+
export interface GitRepo {
|
|
1744
|
+
"directory"?: string;
|
|
1745
|
+
"repository": string;
|
|
1746
|
+
"revision"?: string;
|
|
1747
|
+
}
|
|
1748
|
+
export interface Glusterfs {
|
|
1749
|
+
"endpoints": string;
|
|
1750
|
+
"path": string;
|
|
1751
|
+
"readOnly"?: boolean;
|
|
1752
|
+
}
|
|
1753
|
+
export interface Image2 {
|
|
1754
|
+
"pullPolicy"?: string;
|
|
1755
|
+
"reference"?: string;
|
|
1756
|
+
}
|
|
1757
|
+
export interface Iscsi {
|
|
1758
|
+
"chapAuthDiscovery"?: boolean;
|
|
1759
|
+
"chapAuthSession"?: boolean;
|
|
1760
|
+
"fsType"?: string;
|
|
1761
|
+
"initiatorName"?: string;
|
|
1762
|
+
"iqn": string;
|
|
1763
|
+
"iscsiInterface"?: string;
|
|
1764
|
+
"lun": number;
|
|
1765
|
+
"portals"?: string[];
|
|
1766
|
+
"readOnly"?: boolean;
|
|
1767
|
+
"secretRef"?: SecretRef2;
|
|
1768
|
+
"targetPortal": string;
|
|
1769
|
+
}
|
|
1770
|
+
export interface Nfs {
|
|
1771
|
+
"path": string;
|
|
1772
|
+
"readOnly"?: boolean;
|
|
1773
|
+
"server": string;
|
|
1774
|
+
}
|
|
1775
|
+
export interface PersistentVolumeClaim {
|
|
1776
|
+
"claimName": string;
|
|
1777
|
+
"readOnly"?: boolean;
|
|
1778
|
+
}
|
|
1779
|
+
export interface PhotonPersistentDisk {
|
|
1780
|
+
"fsType"?: string;
|
|
1781
|
+
"pdID": string;
|
|
1782
|
+
}
|
|
1783
|
+
export interface PortworxVolume {
|
|
1784
|
+
"fsType"?: string;
|
|
1785
|
+
"readOnly"?: boolean;
|
|
1786
|
+
"volumeID": string;
|
|
1787
|
+
}
|
|
1788
|
+
export interface ClusterTrustBundle {
|
|
1789
|
+
"labelSelector"?: LabelSelector;
|
|
1790
|
+
"name"?: string;
|
|
1791
|
+
"optional"?: boolean;
|
|
1792
|
+
"path": string;
|
|
1793
|
+
"signerName"?: string;
|
|
1794
|
+
}
|
|
1795
|
+
export interface ConfigMap3 {
|
|
1796
|
+
"items"?: ItemsItem[];
|
|
1797
|
+
"name"?: string;
|
|
1798
|
+
"optional"?: boolean;
|
|
1799
|
+
}
|
|
1800
|
+
export interface DownwardAPI2 {
|
|
1801
|
+
"items"?: ItemsItem2[];
|
|
1802
|
+
}
|
|
1803
|
+
export interface PodCertificate {
|
|
1804
|
+
"certificateChainPath"?: string;
|
|
1805
|
+
"credentialBundlePath"?: string;
|
|
1806
|
+
"keyPath"?: string;
|
|
1807
|
+
"keyType": string;
|
|
1808
|
+
"maxExpirationSeconds"?: number;
|
|
1809
|
+
"signerName": string;
|
|
1810
|
+
"userAnnotations"?: Record<string, unknown>;
|
|
1811
|
+
}
|
|
1812
|
+
export interface Secret3 {
|
|
1813
|
+
"items"?: ItemsItem[];
|
|
1814
|
+
"name"?: string;
|
|
1815
|
+
"optional"?: boolean;
|
|
1816
|
+
}
|
|
1817
|
+
export interface ServiceAccountToken {
|
|
1818
|
+
"audience"?: string;
|
|
1819
|
+
"expirationSeconds"?: number;
|
|
1820
|
+
"path": string;
|
|
1821
|
+
}
|
|
1822
|
+
export interface SourcesItem {
|
|
1823
|
+
"clusterTrustBundle"?: ClusterTrustBundle;
|
|
1824
|
+
"configMap"?: ConfigMap3;
|
|
1825
|
+
"downwardAPI"?: DownwardAPI2;
|
|
1826
|
+
"podCertificate"?: PodCertificate;
|
|
1827
|
+
"secret"?: Secret3;
|
|
1828
|
+
"serviceAccountToken"?: ServiceAccountToken;
|
|
1829
|
+
}
|
|
1830
|
+
export interface Projected {
|
|
1831
|
+
"defaultMode"?: number;
|
|
1832
|
+
"sources"?: SourcesItem[];
|
|
1833
|
+
}
|
|
1834
|
+
export interface Quobyte {
|
|
1835
|
+
"group"?: string;
|
|
1836
|
+
"readOnly"?: boolean;
|
|
1837
|
+
"registry": string;
|
|
1838
|
+
"tenant"?: string;
|
|
1839
|
+
"user"?: string;
|
|
1840
|
+
"volume": string;
|
|
1841
|
+
}
|
|
1842
|
+
export interface Rbd {
|
|
1843
|
+
"fsType"?: string;
|
|
1844
|
+
"image": string;
|
|
1845
|
+
"keyring"?: string;
|
|
1846
|
+
"monitors": string[];
|
|
1847
|
+
"pool"?: string;
|
|
1848
|
+
"readOnly"?: boolean;
|
|
1849
|
+
"secretRef"?: SecretRef2;
|
|
1850
|
+
"user"?: string;
|
|
1851
|
+
}
|
|
1852
|
+
export interface ScaleIO {
|
|
1853
|
+
"fsType"?: string;
|
|
1854
|
+
"gateway": string;
|
|
1855
|
+
"protectionDomain"?: string;
|
|
1856
|
+
"readOnly"?: boolean;
|
|
1857
|
+
"secretRef": SecretRef2;
|
|
1858
|
+
"sslEnabled"?: boolean;
|
|
1859
|
+
"storageMode"?: string;
|
|
1860
|
+
"storagePool"?: string;
|
|
1861
|
+
"system": string;
|
|
1862
|
+
"volumeName"?: string;
|
|
1863
|
+
}
|
|
1864
|
+
export interface Storageos {
|
|
1865
|
+
"fsType"?: string;
|
|
1866
|
+
"readOnly"?: boolean;
|
|
1867
|
+
"secretRef"?: SecretRef2;
|
|
1868
|
+
"volumeName"?: string;
|
|
1869
|
+
"volumeNamespace"?: string;
|
|
1870
|
+
}
|
|
1871
|
+
export interface VsphereVolume {
|
|
1872
|
+
"fsType"?: string;
|
|
1873
|
+
"storagePolicyID"?: string;
|
|
1874
|
+
"storagePolicyName"?: string;
|
|
1875
|
+
"volumePath": string;
|
|
1876
|
+
}
|
|
1877
|
+
export interface VolumesItem {
|
|
1878
|
+
"awsElasticBlockStore"?: AwsElasticBlockStore;
|
|
1879
|
+
"azureDisk"?: AzureDisk;
|
|
1880
|
+
"azureFile"?: AzureFile;
|
|
1881
|
+
"cephfs"?: Cephfs;
|
|
1882
|
+
"cinder"?: Cinder;
|
|
1883
|
+
"configMap"?: ConfigMap;
|
|
1884
|
+
"csi"?: Csi;
|
|
1885
|
+
"downwardAPI"?: DownwardAPI;
|
|
1886
|
+
"emptyDir"?: EmptyDir;
|
|
1887
|
+
"ephemeral"?: Ephemeral;
|
|
1888
|
+
"fc"?: Fc;
|
|
1889
|
+
"flexVolume"?: FlexVolume;
|
|
1890
|
+
"flocker"?: Flocker;
|
|
1891
|
+
"gcePersistentDisk"?: GcePersistentDisk;
|
|
1892
|
+
"gitRepo"?: GitRepo;
|
|
1893
|
+
"glusterfs"?: Glusterfs;
|
|
1894
|
+
"hostPath"?: HostPath;
|
|
1895
|
+
"image"?: Image2;
|
|
1896
|
+
"iscsi"?: Iscsi;
|
|
1897
|
+
"name": string;
|
|
1898
|
+
"nfs"?: Nfs;
|
|
1899
|
+
"persistentVolumeClaim"?: PersistentVolumeClaim;
|
|
1900
|
+
"photonPersistentDisk"?: PhotonPersistentDisk;
|
|
1901
|
+
"portworxVolume"?: PortworxVolume;
|
|
1902
|
+
"projected"?: Projected;
|
|
1903
|
+
"quobyte"?: Quobyte;
|
|
1904
|
+
"rbd"?: Rbd;
|
|
1905
|
+
"scaleIO"?: ScaleIO;
|
|
1906
|
+
"secret"?: Secret;
|
|
1907
|
+
"storageos"?: Storageos;
|
|
1908
|
+
"vsphereVolume"?: VsphereVolume;
|
|
1909
|
+
}
|
|
1910
|
+
export interface ConfigCheckPod {
|
|
1911
|
+
"activeDeadlineSeconds"?: number;
|
|
1912
|
+
"affinity"?: Affinity;
|
|
1913
|
+
"automountServiceAccountToken"?: boolean;
|
|
1914
|
+
"containers"?: ContainersItem[];
|
|
1915
|
+
"dnsConfig"?: DnsConfig;
|
|
1916
|
+
"dnsPolicy"?: string;
|
|
1917
|
+
"enableServiceLinks"?: boolean;
|
|
1918
|
+
"ephemeralContainers"?: EphemeralContainersItem[];
|
|
1919
|
+
"hostAliases"?: HostAliasesItem[];
|
|
1920
|
+
"hostIPC"?: boolean;
|
|
1921
|
+
"hostNetwork"?: boolean;
|
|
1922
|
+
"hostPID"?: boolean;
|
|
1923
|
+
"hostname"?: string;
|
|
1924
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1925
|
+
"initContainers"?: InitContainersItem[];
|
|
1926
|
+
"nodeName"?: string;
|
|
1927
|
+
"nodeSelector"?: Record<string, unknown>;
|
|
1928
|
+
"overhead"?: Record<string, unknown>;
|
|
1929
|
+
"preemptionPolicy"?: string;
|
|
1930
|
+
"priority"?: number;
|
|
1931
|
+
"priorityClassName"?: string;
|
|
1932
|
+
"readinessGates"?: ReadinessGatesItem[];
|
|
1933
|
+
"restartPolicy"?: string;
|
|
1934
|
+
"runtimeClassName"?: string;
|
|
1935
|
+
"schedulerName"?: string;
|
|
1936
|
+
"securityContext"?: SecurityContext2;
|
|
1937
|
+
"serviceAccountName"?: string;
|
|
1938
|
+
"setHostnameAsFQDN"?: boolean;
|
|
1939
|
+
"shareProcessNamespace"?: boolean;
|
|
1940
|
+
"subdomain"?: string;
|
|
1941
|
+
"terminationGracePeriodSeconds"?: number;
|
|
1942
|
+
"tolerations"?: TolerationsItem[];
|
|
1943
|
+
"topologySpreadConstraints"?: TopologySpreadConstraintsItem[];
|
|
1944
|
+
"volumes"?: VolumesItem[];
|
|
1945
|
+
}
|
|
1946
|
+
export interface ConfigReloadImage {
|
|
1947
|
+
"repository"?: string;
|
|
1948
|
+
"tag"?: string;
|
|
1949
|
+
}
|
|
1950
|
+
export interface Stats {
|
|
1951
|
+
"freq"?: number;
|
|
1952
|
+
"level"?: number;
|
|
1953
|
+
}
|
|
1954
|
+
export interface GlobalOptions {
|
|
1955
|
+
"log_level"?: string;
|
|
1956
|
+
"log_msg_size"?: number;
|
|
1957
|
+
"stats"?: Stats;
|
|
1958
|
+
"stats_freq"?: number;
|
|
1959
|
+
"stats_level"?: number;
|
|
1960
|
+
}
|
|
1961
|
+
export interface MetricsExporterImage {
|
|
1962
|
+
"repository"?: string;
|
|
1963
|
+
"tag"?: string;
|
|
1964
|
+
}
|
|
1965
|
+
export interface MetricsService {
|
|
1966
|
+
"metadata"?: Metadata;
|
|
1967
|
+
"spec"?: Spec2;
|
|
1968
|
+
}
|
|
1969
|
+
export interface SourceDateParser {
|
|
1970
|
+
"format"?: string;
|
|
1971
|
+
"template"?: string;
|
|
1972
|
+
}
|
|
1973
|
+
export interface SourceMetricsItem {
|
|
1974
|
+
"key"?: string;
|
|
1975
|
+
"labels"?: Record<string, unknown>;
|
|
1976
|
+
"level"?: number;
|
|
1977
|
+
}
|
|
1978
|
+
export interface Spec4 {
|
|
1979
|
+
"activeDeadlineSeconds"?: number;
|
|
1980
|
+
"affinity"?: Affinity;
|
|
1981
|
+
"automountServiceAccountToken"?: boolean;
|
|
1982
|
+
"containers"?: ContainersItem[];
|
|
1983
|
+
"dnsConfig"?: DnsConfig;
|
|
1984
|
+
"dnsPolicy"?: string;
|
|
1985
|
+
"enableServiceLinks"?: boolean;
|
|
1986
|
+
"ephemeralContainers"?: EphemeralContainersItem[];
|
|
1987
|
+
"hostAliases"?: HostAliasesItem[];
|
|
1988
|
+
"hostIPC"?: boolean;
|
|
1989
|
+
"hostNetwork"?: boolean;
|
|
1990
|
+
"hostPID"?: boolean;
|
|
1991
|
+
"hostname"?: string;
|
|
1992
|
+
"imagePullSecrets"?: ImagePullSecretsItem[];
|
|
1993
|
+
"initContainers"?: InitContainersItem[];
|
|
1994
|
+
"nodeName"?: string;
|
|
1995
|
+
"nodeSelector"?: Record<string, unknown>;
|
|
1996
|
+
"overhead"?: Record<string, unknown>;
|
|
1997
|
+
"preemptionPolicy"?: string;
|
|
1998
|
+
"priority"?: number;
|
|
1999
|
+
"priorityClassName"?: string;
|
|
2000
|
+
"readinessGates"?: ReadinessGatesItem[];
|
|
2001
|
+
"restartPolicy"?: string;
|
|
2002
|
+
"runtimeClassName"?: string;
|
|
2003
|
+
"schedulerName"?: string;
|
|
2004
|
+
"securityContext"?: SecurityContext2;
|
|
2005
|
+
"serviceAccountName"?: string;
|
|
2006
|
+
"setHostnameAsFQDN"?: boolean;
|
|
2007
|
+
"shareProcessNamespace"?: boolean;
|
|
2008
|
+
"subdomain"?: string;
|
|
2009
|
+
"terminationGracePeriodSeconds"?: number;
|
|
2010
|
+
"tolerations"?: TolerationsItem[];
|
|
2011
|
+
"topologySpreadConstraints"?: TopologySpreadConstraintsItem[];
|
|
2012
|
+
"volumes"?: VolumesItem[];
|
|
2013
|
+
}
|
|
2014
|
+
export interface Template {
|
|
2015
|
+
"metadata"?: Metadata;
|
|
2016
|
+
"spec"?: Spec4;
|
|
2017
|
+
}
|
|
2018
|
+
export interface Metadata2 {
|
|
2019
|
+
"annotations"?: Record<string, unknown>;
|
|
2020
|
+
"labels"?: Record<string, unknown>;
|
|
2021
|
+
"name"?: string;
|
|
2022
|
+
}
|
|
2023
|
+
export interface VolumeClaimTemplatesItem {
|
|
2024
|
+
"metadata"?: Metadata2;
|
|
2025
|
+
"spec"?: Spec;
|
|
2026
|
+
}
|
|
2027
|
+
export interface Spec3 {
|
|
2028
|
+
"podManagementPolicy"?: string;
|
|
2029
|
+
"replicas"?: number;
|
|
2030
|
+
"revisionHistoryLimit"?: number;
|
|
2031
|
+
"selector"?: Selector;
|
|
2032
|
+
"serviceName"?: string;
|
|
2033
|
+
"template"?: Template;
|
|
2034
|
+
"updateStrategy"?: UpdateStrategy;
|
|
2035
|
+
"volumeClaimTemplates"?: VolumeClaimTemplatesItem[];
|
|
2036
|
+
}
|
|
2037
|
+
export interface StatefulSet {
|
|
2038
|
+
"metadata"?: Metadata;
|
|
2039
|
+
"spec"?: Spec3;
|
|
2040
|
+
}
|
|
2041
|
+
export interface SyslogNGImage {
|
|
2042
|
+
"repository"?: string;
|
|
2043
|
+
"tag"?: string;
|
|
2044
|
+
}
|
|
2045
|
+
export interface SyslogNG {
|
|
2046
|
+
"bufferVolumeMetrics"?: BufferVolumeMetrics2;
|
|
2047
|
+
"bufferVolumeMetricsImage"?: BufferVolumeMetricsImage;
|
|
2048
|
+
"bufferVolumeMetricsLivenessProbe"?: BufferVolumeMetricsLivenessProbe;
|
|
2049
|
+
"bufferVolumeMetricsResources"?: BufferVolumeMetricsResources;
|
|
2050
|
+
"bufferVolumeMetricsService"?: BufferVolumeMetricsService;
|
|
2051
|
+
"configCheck"?: ConfigCheck;
|
|
2052
|
+
"configCheckPod"?: ConfigCheckPod;
|
|
2053
|
+
"configReloadImage"?: ConfigReloadImage;
|
|
2054
|
+
"enabledIPv6"?: boolean;
|
|
2055
|
+
"globalOptions"?: GlobalOptions;
|
|
2056
|
+
"jsonKeyDelim"?: string;
|
|
2057
|
+
"jsonKeyPrefix"?: string;
|
|
2058
|
+
"logIWSize"?: number;
|
|
2059
|
+
"maxConnections"?: number;
|
|
2060
|
+
"metrics"?: Metrics;
|
|
2061
|
+
"metricsExporterImage"?: MetricsExporterImage;
|
|
2062
|
+
"metricsService"?: MetricsService;
|
|
2063
|
+
"readinessDefaultCheck"?: ReadinessDefaultCheck;
|
|
2064
|
+
"service"?: Service;
|
|
2065
|
+
"serviceAccount"?: ServiceAccount;
|
|
2066
|
+
"skipRBACCreate"?: boolean;
|
|
2067
|
+
"sourceDateParser"?: SourceDateParser;
|
|
2068
|
+
"sourceMetrics"?: SourceMetricsItem[];
|
|
2069
|
+
"statefulSet"?: StatefulSet;
|
|
2070
|
+
"syslogNGImage"?: SyslogNGImage;
|
|
2071
|
+
"terminationGracePeriodSeconds"?: number;
|
|
2072
|
+
"tls"?: Tls;
|
|
2073
|
+
}
|
|
2074
|
+
export interface WatchNamespaceSelector {
|
|
2075
|
+
"matchExpressions"?: MatchExpressionsItem[];
|
|
2076
|
+
"matchLabels"?: Record<string, unknown>;
|
|
2077
|
+
}
|
|
2078
|
+
export interface LoggingSpec {
|
|
2079
|
+
"allowClusterResourcesFromAllNamespaces"?: boolean;
|
|
2080
|
+
"clusterDomain"?: string;
|
|
2081
|
+
"configCheck"?: ConfigCheck;
|
|
2082
|
+
"controlNamespace": string;
|
|
2083
|
+
"defaultFlow"?: DefaultFlow;
|
|
2084
|
+
"enableDockerParserCompatibilityForCRI"?: boolean;
|
|
2085
|
+
"enableRawFluentdFilter"?: boolean;
|
|
2086
|
+
"enableRecreateWorkloadOnImmutableFieldChange"?: boolean;
|
|
2087
|
+
"errorOutputRef"?: string;
|
|
2088
|
+
"flowConfigCheckDisabled"?: boolean;
|
|
2089
|
+
"flowConfigOverride"?: string;
|
|
2090
|
+
"fluentBitAgentNamespace"?: string;
|
|
2091
|
+
"fluentbit"?: Fluentbit;
|
|
2092
|
+
"fluentd"?: Fluentd;
|
|
2093
|
+
"globalFilters"?: GlobalFiltersItem[];
|
|
2094
|
+
"loggingRef"?: string;
|
|
2095
|
+
"routeConfig"?: RouteConfig;
|
|
2096
|
+
"skipInvalidResources"?: boolean;
|
|
2097
|
+
"syslogNG"?: SyslogNG;
|
|
2098
|
+
"watchNamespaceSelector"?: WatchNamespaceSelector;
|
|
2099
|
+
"watchNamespaces"?: string[];
|
|
2100
|
+
}
|
|
2101
|
+
export interface LoggingStatus {
|
|
2102
|
+
"configCheckResults"?: Record<string, unknown>;
|
|
2103
|
+
"fluentdConfigName"?: string;
|
|
2104
|
+
"problems"?: string[];
|
|
2105
|
+
"problemsCount"?: number;
|
|
2106
|
+
"syslogNGConfigName"?: string;
|
|
2107
|
+
"watchNamespaces"?: string[];
|
|
2108
|
+
}
|
|
2109
|
+
export interface ApiKey {
|
|
2110
|
+
"mountFrom"?: MountFrom;
|
|
2111
|
+
"value"?: string;
|
|
2112
|
+
"valueFrom"?: ValueFrom;
|
|
2113
|
+
}
|
|
2114
|
+
export interface Buffer {
|
|
2115
|
+
"chunk_full_threshold"?: string;
|
|
2116
|
+
"chunk_limit_records"?: number;
|
|
2117
|
+
"chunk_limit_size"?: string;
|
|
2118
|
+
"compress"?: string;
|
|
2119
|
+
"delayed_commit_timeout"?: string;
|
|
2120
|
+
"disable_chunk_backup"?: boolean;
|
|
2121
|
+
"disabled"?: boolean;
|
|
2122
|
+
"flush_at_shutdown"?: boolean;
|
|
2123
|
+
"flush_interval"?: string;
|
|
2124
|
+
"flush_mode"?: string;
|
|
2125
|
+
"flush_thread_burst_interval"?: string;
|
|
2126
|
+
"flush_thread_count"?: number;
|
|
2127
|
+
"flush_thread_interval"?: string;
|
|
2128
|
+
"overflow_action"?: string;
|
|
2129
|
+
"path"?: string;
|
|
2130
|
+
"queue_limit_length"?: number;
|
|
2131
|
+
"queued_chunks_limit_size"?: number;
|
|
2132
|
+
"retry_exponential_backoff_base"?: string;
|
|
2133
|
+
"retry_forever"?: boolean;
|
|
2134
|
+
"retry_max_interval"?: string;
|
|
2135
|
+
"retry_max_times"?: number;
|
|
2136
|
+
"retry_randomize"?: boolean;
|
|
2137
|
+
"retry_secondary_threshold"?: string;
|
|
2138
|
+
"retry_timeout"?: string;
|
|
2139
|
+
"retry_type"?: string;
|
|
2140
|
+
"retry_wait"?: string;
|
|
2141
|
+
"tags"?: string;
|
|
2142
|
+
"timekey"?: string;
|
|
2143
|
+
"timekey_use_utc"?: boolean;
|
|
2144
|
+
"timekey_wait"?: string;
|
|
2145
|
+
"timekey_zone"?: string;
|
|
2146
|
+
"total_limit_size"?: string;
|
|
2147
|
+
"type"?: string;
|
|
2148
|
+
}
|
|
2149
|
+
export interface CaFile {
|
|
2150
|
+
"mountFrom"?: MountFrom;
|
|
2151
|
+
"value"?: string;
|
|
2152
|
+
"valueFrom"?: ValueFrom;
|
|
2153
|
+
}
|
|
2154
|
+
export interface ClientCert {
|
|
2155
|
+
"mountFrom"?: MountFrom;
|
|
2156
|
+
"value"?: string;
|
|
2157
|
+
"valueFrom"?: ValueFrom;
|
|
2158
|
+
}
|
|
2159
|
+
export interface ClientKey {
|
|
2160
|
+
"mountFrom"?: MountFrom;
|
|
2161
|
+
"value"?: string;
|
|
2162
|
+
"valueFrom"?: ValueFrom;
|
|
2163
|
+
}
|
|
2164
|
+
export interface ClientKeyPass {
|
|
2165
|
+
"mountFrom"?: MountFrom;
|
|
2166
|
+
"value"?: string;
|
|
2167
|
+
"valueFrom"?: ValueFrom;
|
|
2168
|
+
}
|
|
2169
|
+
export interface AccessKeyId {
|
|
2170
|
+
"mountFrom"?: MountFrom;
|
|
2171
|
+
"value"?: string;
|
|
2172
|
+
"valueFrom"?: ValueFrom;
|
|
2173
|
+
}
|
|
2174
|
+
export interface AssumeRoleArn {
|
|
2175
|
+
"mountFrom"?: MountFrom;
|
|
2176
|
+
"value"?: string;
|
|
2177
|
+
"valueFrom"?: ValueFrom;
|
|
2178
|
+
}
|
|
2179
|
+
export interface AssumeRoleSessionName {
|
|
2180
|
+
"mountFrom"?: MountFrom;
|
|
2181
|
+
"value"?: string;
|
|
2182
|
+
"valueFrom"?: ValueFrom;
|
|
2183
|
+
}
|
|
2184
|
+
export interface AssumeRoleWebIdentityTokenFile {
|
|
2185
|
+
"mountFrom"?: MountFrom;
|
|
2186
|
+
"value"?: string;
|
|
2187
|
+
"valueFrom"?: ValueFrom;
|
|
2188
|
+
}
|
|
2189
|
+
export interface EcsContainerCredentialsRelativeUri {
|
|
2190
|
+
"mountFrom"?: MountFrom;
|
|
2191
|
+
"value"?: string;
|
|
2192
|
+
"valueFrom"?: ValueFrom;
|
|
2193
|
+
}
|
|
2194
|
+
export interface SecretAccessKey {
|
|
2195
|
+
"mountFrom"?: MountFrom;
|
|
2196
|
+
"value"?: string;
|
|
2197
|
+
"valueFrom"?: ValueFrom;
|
|
2198
|
+
}
|
|
2199
|
+
export interface StsCredentialsRegion {
|
|
2200
|
+
"mountFrom"?: MountFrom;
|
|
2201
|
+
"value"?: string;
|
|
2202
|
+
"valueFrom"?: ValueFrom;
|
|
2203
|
+
}
|
|
2204
|
+
export interface Endpoint {
|
|
2205
|
+
"access_key_id"?: AccessKeyId;
|
|
2206
|
+
"assume_role_arn"?: AssumeRoleArn;
|
|
2207
|
+
"assume_role_session_name"?: AssumeRoleSessionName;
|
|
2208
|
+
"assume_role_web_identity_token_file"?: AssumeRoleWebIdentityTokenFile;
|
|
2209
|
+
"ecs_container_credentials_relative_uri"?: EcsContainerCredentialsRelativeUri;
|
|
2210
|
+
"region"?: string;
|
|
2211
|
+
"secret_access_key"?: SecretAccessKey;
|
|
2212
|
+
"sts_credentials_region"?: StsCredentialsRegion;
|
|
2213
|
+
"url"?: string;
|
|
2214
|
+
}
|
|
2215
|
+
export interface Format {
|
|
2216
|
+
"add_newline"?: boolean;
|
|
2217
|
+
"message_key"?: string;
|
|
2218
|
+
"type"?: "out_file" | "json" | "ltsv" | "csv" | "msgpack" | "hash" | "single_value";
|
|
2219
|
+
}
|
|
2220
|
+
export interface Password {
|
|
2221
|
+
"mountFrom"?: MountFrom;
|
|
2222
|
+
"value"?: string;
|
|
2223
|
+
"valueFrom"?: ValueFrom;
|
|
2224
|
+
}
|
|
2225
|
+
export interface TemplateFile {
|
|
2226
|
+
"mountFrom"?: MountFrom;
|
|
2227
|
+
"value"?: string;
|
|
2228
|
+
"valueFrom"?: ValueFrom;
|
|
2229
|
+
}
|
|
2230
|
+
export interface AwsElasticsearch {
|
|
2231
|
+
"api_key"?: ApiKey;
|
|
2232
|
+
"application_name"?: string;
|
|
2233
|
+
"buffer"?: Buffer;
|
|
2234
|
+
"bulk_message_request_threshold"?: string;
|
|
2235
|
+
"ca_file"?: CaFile;
|
|
2236
|
+
"client_cert"?: ClientCert;
|
|
2237
|
+
"client_key"?: ClientKey;
|
|
2238
|
+
"client_key_pass"?: ClientKeyPass;
|
|
2239
|
+
"compression_level"?: string;
|
|
2240
|
+
"content_type"?: string;
|
|
2241
|
+
"custom_headers"?: string;
|
|
2242
|
+
"customize_template"?: string;
|
|
2243
|
+
"data_stream_enable"?: boolean;
|
|
2244
|
+
"data_stream_ilm_name"?: string;
|
|
2245
|
+
"data_stream_ilm_policy"?: string;
|
|
2246
|
+
"data_stream_ilm_policy_overwrite"?: boolean;
|
|
2247
|
+
"data_stream_name"?: string;
|
|
2248
|
+
"data_stream_template_name"?: string;
|
|
2249
|
+
"data_stream_template_use_index_patterns_wildcard"?: boolean;
|
|
2250
|
+
"default_elasticsearch_version"?: string;
|
|
2251
|
+
"deflector_alias"?: string;
|
|
2252
|
+
"enable_ilm"?: boolean;
|
|
2253
|
+
"endpoint"?: Endpoint;
|
|
2254
|
+
"exception_backup"?: boolean;
|
|
2255
|
+
"fail_on_detecting_es_version_retry_exceed"?: boolean;
|
|
2256
|
+
"fail_on_putting_template_retry_exceed"?: boolean;
|
|
2257
|
+
"flatten_hashes"?: boolean;
|
|
2258
|
+
"flatten_hashes_separator"?: string;
|
|
2259
|
+
"flush_interval"?: string;
|
|
2260
|
+
"format"?: Format;
|
|
2261
|
+
"host"?: string;
|
|
2262
|
+
"hosts"?: string;
|
|
2263
|
+
"http_backend"?: string;
|
|
2264
|
+
"id_key"?: string;
|
|
2265
|
+
"ignore_exceptions"?: string;
|
|
2266
|
+
"ilm_policy"?: string;
|
|
2267
|
+
"ilm_policy_id"?: string;
|
|
2268
|
+
"ilm_policy_overwrite"?: boolean;
|
|
2269
|
+
"include_index_in_url"?: boolean;
|
|
2270
|
+
"include_tag_key"?: boolean;
|
|
2271
|
+
"include_timestamp"?: boolean;
|
|
2272
|
+
"index_date_pattern"?: string;
|
|
2273
|
+
"index_name"?: string;
|
|
2274
|
+
"index_prefix"?: string;
|
|
2275
|
+
"log_es_400_reason"?: boolean;
|
|
2276
|
+
"logstash_dateformat"?: string;
|
|
2277
|
+
"logstash_format"?: boolean;
|
|
2278
|
+
"logstash_prefix"?: string;
|
|
2279
|
+
"logstash_prefix_separator"?: string;
|
|
2280
|
+
"max_retry_get_es_version"?: string;
|
|
2281
|
+
"max_retry_putting_template"?: string;
|
|
2282
|
+
"password"?: Password;
|
|
2283
|
+
"path"?: string;
|
|
2284
|
+
"pipeline"?: string;
|
|
2285
|
+
"port"?: number;
|
|
2286
|
+
"prefer_oj_serializer"?: boolean;
|
|
2287
|
+
"reconnect_on_error"?: boolean;
|
|
2288
|
+
"reload_after"?: string;
|
|
2289
|
+
"reload_connections"?: boolean;
|
|
2290
|
+
"reload_on_failure"?: boolean;
|
|
2291
|
+
"remove_keys"?: string;
|
|
2292
|
+
"remove_keys_on_update"?: string;
|
|
2293
|
+
"remove_keys_on_update_key"?: string;
|
|
2294
|
+
"request_timeout"?: string;
|
|
2295
|
+
"resurrect_after"?: string;
|
|
2296
|
+
"retry_tag"?: string;
|
|
2297
|
+
"rollover_index"?: boolean;
|
|
2298
|
+
"routing_key"?: string;
|
|
2299
|
+
"scheme"?: string;
|
|
2300
|
+
"slow_flush_log_threshold"?: string;
|
|
2301
|
+
"sniffer_class_name"?: string;
|
|
2302
|
+
"ssl_max_version"?: string;
|
|
2303
|
+
"ssl_min_version"?: string;
|
|
2304
|
+
"ssl_verify"?: boolean;
|
|
2305
|
+
"ssl_version"?: string;
|
|
2306
|
+
"suppress_doc_wrap"?: boolean;
|
|
2307
|
+
"suppress_type_name"?: boolean;
|
|
2308
|
+
"tag_key"?: string;
|
|
2309
|
+
"target_index_key"?: string;
|
|
2310
|
+
"target_type_key"?: string;
|
|
2311
|
+
"template_file"?: TemplateFile;
|
|
2312
|
+
"template_name"?: string;
|
|
2313
|
+
"template_overwrite"?: boolean;
|
|
2314
|
+
"templates"?: string;
|
|
2315
|
+
"time_key"?: string;
|
|
2316
|
+
"time_key_format"?: string;
|
|
2317
|
+
"time_parse_error_tag"?: string;
|
|
2318
|
+
"time_precision"?: string;
|
|
2319
|
+
"type_name"?: string;
|
|
2320
|
+
"unrecoverable_error_types"?: string;
|
|
2321
|
+
"use_legacy_template"?: boolean;
|
|
2322
|
+
"user"?: string;
|
|
2323
|
+
"utc_index"?: boolean;
|
|
2324
|
+
"validate_client_version"?: boolean;
|
|
2325
|
+
"verify_es_version_at_startup"?: boolean;
|
|
2326
|
+
"with_transporter_log"?: boolean;
|
|
2327
|
+
"write_operation"?: string;
|
|
2328
|
+
}
|
|
2329
|
+
export interface AzureStorageAccessKey {
|
|
2330
|
+
"mountFrom"?: MountFrom;
|
|
2331
|
+
"value"?: string;
|
|
2332
|
+
"valueFrom"?: ValueFrom;
|
|
2333
|
+
}
|
|
2334
|
+
export interface AzureStorageAccount {
|
|
2335
|
+
"mountFrom"?: MountFrom;
|
|
2336
|
+
"value"?: string;
|
|
2337
|
+
"valueFrom"?: ValueFrom;
|
|
2338
|
+
}
|
|
2339
|
+
export interface AzureStorageSasToken {
|
|
2340
|
+
"mountFrom"?: MountFrom;
|
|
2341
|
+
"value"?: string;
|
|
2342
|
+
"valueFrom"?: ValueFrom;
|
|
2343
|
+
}
|
|
2344
|
+
export interface Azurestorage {
|
|
2345
|
+
"auto_create_container"?: boolean;
|
|
2346
|
+
"azure_cloud"?: string;
|
|
2347
|
+
"azure_container": string;
|
|
2348
|
+
"azure_imds_api_version"?: string;
|
|
2349
|
+
"azure_object_key_format"?: string;
|
|
2350
|
+
"azure_storage_access_key"?: AzureStorageAccessKey;
|
|
2351
|
+
"azure_storage_account": AzureStorageAccount;
|
|
2352
|
+
"azure_storage_sas_token"?: AzureStorageSasToken;
|
|
2353
|
+
"buffer"?: Buffer;
|
|
2354
|
+
"format"?: string;
|
|
2355
|
+
"path"?: string;
|
|
2356
|
+
"slow_flush_log_threshold"?: string;
|
|
2357
|
+
}
|
|
2358
|
+
export interface AwsKeyId {
|
|
2359
|
+
"mountFrom"?: MountFrom;
|
|
2360
|
+
"value"?: string;
|
|
2361
|
+
"valueFrom"?: ValueFrom;
|
|
2362
|
+
}
|
|
2363
|
+
export interface AwsSecKey {
|
|
2364
|
+
"mountFrom"?: MountFrom;
|
|
2365
|
+
"value"?: string;
|
|
2366
|
+
"valueFrom"?: ValueFrom;
|
|
2367
|
+
}
|
|
2368
|
+
export interface Cloudwatch {
|
|
2369
|
+
"auto_create_stream"?: boolean;
|
|
2370
|
+
"aws_instance_profile_credentials_retries"?: number;
|
|
2371
|
+
"aws_key_id"?: AwsKeyId;
|
|
2372
|
+
"aws_sec_key"?: AwsSecKey;
|
|
2373
|
+
"aws_sts_role_arn"?: string;
|
|
2374
|
+
"aws_sts_session_name"?: string;
|
|
2375
|
+
"aws_use_sts"?: boolean;
|
|
2376
|
+
"buffer"?: Buffer;
|
|
2377
|
+
"concurrency"?: number;
|
|
2378
|
+
"endpoint"?: string;
|
|
2379
|
+
"format"?: Format;
|
|
2380
|
+
"http_proxy"?: string;
|
|
2381
|
+
"include_time_key"?: boolean;
|
|
2382
|
+
"json_handler"?: string;
|
|
2383
|
+
"localtime"?: boolean;
|
|
2384
|
+
"log_group_aws_tags"?: string;
|
|
2385
|
+
"log_group_aws_tags_key"?: string;
|
|
2386
|
+
"log_group_name"?: string;
|
|
2387
|
+
"log_group_name_key"?: string;
|
|
2388
|
+
"log_rejected_request"?: string;
|
|
2389
|
+
"log_stream_name"?: string;
|
|
2390
|
+
"log_stream_name_key"?: string;
|
|
2391
|
+
"max_events_per_batch"?: number;
|
|
2392
|
+
"max_message_length"?: number;
|
|
2393
|
+
"message_keys"?: string;
|
|
2394
|
+
"put_log_events_disable_retry_limit"?: boolean;
|
|
2395
|
+
"put_log_events_retry_limit"?: number;
|
|
2396
|
+
"put_log_events_retry_wait"?: string;
|
|
2397
|
+
"region": string;
|
|
2398
|
+
"remove_log_group_aws_tags_key"?: string;
|
|
2399
|
+
"remove_log_group_name_key"?: string;
|
|
2400
|
+
"remove_log_stream_name_key"?: string;
|
|
2401
|
+
"remove_retention_in_days"?: string;
|
|
2402
|
+
"retention_in_days"?: string;
|
|
2403
|
+
"retention_in_days_key"?: string;
|
|
2404
|
+
"slow_flush_log_threshold"?: string;
|
|
2405
|
+
"use_tag_as_group"?: boolean;
|
|
2406
|
+
"use_tag_as_stream"?: boolean;
|
|
2407
|
+
}
|
|
2408
|
+
export interface Datadog {
|
|
2409
|
+
"api_key": ApiKey;
|
|
2410
|
+
"buffer"?: Buffer;
|
|
2411
|
+
"compression_level"?: string;
|
|
2412
|
+
"dd_hostname"?: string;
|
|
2413
|
+
"dd_source"?: string;
|
|
2414
|
+
"dd_sourcecategory"?: string;
|
|
2415
|
+
"dd_tags"?: string;
|
|
2416
|
+
"host"?: string;
|
|
2417
|
+
"include_tag_key"?: boolean;
|
|
2418
|
+
"max_backoff"?: string;
|
|
2419
|
+
"max_retries"?: string;
|
|
2420
|
+
"no_ssl_validation"?: boolean;
|
|
2421
|
+
"port"?: string;
|
|
2422
|
+
"service"?: string;
|
|
2423
|
+
"slow_flush_log_threshold"?: string;
|
|
2424
|
+
"ssl_port"?: string;
|
|
2425
|
+
"tag_key"?: string;
|
|
2426
|
+
"timestamp_key"?: string;
|
|
2427
|
+
"use_compression"?: boolean;
|
|
2428
|
+
"use_http"?: boolean;
|
|
2429
|
+
"use_json"?: boolean;
|
|
2430
|
+
"use_ssl"?: boolean;
|
|
2431
|
+
}
|
|
2432
|
+
export interface Elasticsearch {
|
|
2433
|
+
"api_key"?: ApiKey;
|
|
2434
|
+
"application_name"?: string;
|
|
2435
|
+
"buffer"?: Buffer;
|
|
2436
|
+
"bulk_message_request_threshold"?: string;
|
|
2437
|
+
"ca_file"?: CaFile;
|
|
2438
|
+
"client_cert"?: ClientCert;
|
|
2439
|
+
"client_key"?: ClientKey;
|
|
2440
|
+
"client_key_pass"?: ClientKeyPass;
|
|
2441
|
+
"compression_level"?: string;
|
|
2442
|
+
"content_type"?: string;
|
|
2443
|
+
"custom_headers"?: string;
|
|
2444
|
+
"customize_template"?: string;
|
|
2445
|
+
"data_stream_enable"?: boolean;
|
|
2446
|
+
"data_stream_ilm_name"?: string;
|
|
2447
|
+
"data_stream_ilm_policy"?: string;
|
|
2448
|
+
"data_stream_ilm_policy_overwrite"?: boolean;
|
|
2449
|
+
"data_stream_name"?: string;
|
|
2450
|
+
"data_stream_template_name"?: string;
|
|
2451
|
+
"data_stream_template_use_index_patterns_wildcard"?: boolean;
|
|
2452
|
+
"default_elasticsearch_version"?: string;
|
|
2453
|
+
"deflector_alias"?: string;
|
|
2454
|
+
"enable_ilm"?: boolean;
|
|
2455
|
+
"exception_backup"?: boolean;
|
|
2456
|
+
"fail_on_detecting_es_version_retry_exceed"?: boolean;
|
|
2457
|
+
"fail_on_putting_template_retry_exceed"?: boolean;
|
|
2458
|
+
"flatten_hashes"?: boolean;
|
|
2459
|
+
"flatten_hashes_separator"?: string;
|
|
2460
|
+
"host"?: string;
|
|
2461
|
+
"hosts"?: string;
|
|
2462
|
+
"http_backend"?: string;
|
|
2463
|
+
"id_key"?: string;
|
|
2464
|
+
"ignore_exceptions"?: string;
|
|
2465
|
+
"ilm_policy"?: string;
|
|
2466
|
+
"ilm_policy_id"?: string;
|
|
2467
|
+
"ilm_policy_overwrite"?: boolean;
|
|
2468
|
+
"include_index_in_url"?: boolean;
|
|
2469
|
+
"include_tag_key"?: boolean;
|
|
2470
|
+
"include_timestamp"?: boolean;
|
|
2471
|
+
"index_date_pattern"?: string;
|
|
2472
|
+
"index_name"?: string;
|
|
2473
|
+
"index_prefix"?: string;
|
|
2474
|
+
"log_es_400_reason"?: boolean;
|
|
2475
|
+
"logstash_dateformat"?: string;
|
|
2476
|
+
"logstash_format"?: boolean;
|
|
2477
|
+
"logstash_prefix"?: string;
|
|
2478
|
+
"logstash_prefix_separator"?: string;
|
|
2479
|
+
"max_retry_get_es_version"?: string;
|
|
2480
|
+
"max_retry_putting_template"?: string;
|
|
2481
|
+
"password"?: Password;
|
|
2482
|
+
"path"?: string;
|
|
2483
|
+
"pipeline"?: string;
|
|
2484
|
+
"port"?: number;
|
|
2485
|
+
"prefer_oj_serializer"?: boolean;
|
|
2486
|
+
"reconnect_on_error"?: boolean;
|
|
2487
|
+
"reload_after"?: string;
|
|
2488
|
+
"reload_connections"?: boolean;
|
|
2489
|
+
"reload_on_failure"?: boolean;
|
|
2490
|
+
"remove_keys"?: string;
|
|
2491
|
+
"remove_keys_on_update"?: string;
|
|
2492
|
+
"remove_keys_on_update_key"?: string;
|
|
2493
|
+
"request_timeout"?: string;
|
|
2494
|
+
"resurrect_after"?: string;
|
|
2495
|
+
"retry_tag"?: string;
|
|
2496
|
+
"rollover_index"?: boolean;
|
|
2497
|
+
"routing_key"?: string;
|
|
2498
|
+
"scheme"?: string;
|
|
2499
|
+
"slow_flush_log_threshold"?: string;
|
|
2500
|
+
"sniffer_class_name"?: string;
|
|
2501
|
+
"ssl_max_version"?: string;
|
|
2502
|
+
"ssl_min_version"?: string;
|
|
2503
|
+
"ssl_verify"?: boolean;
|
|
2504
|
+
"ssl_version"?: string;
|
|
2505
|
+
"suppress_doc_wrap"?: boolean;
|
|
2506
|
+
"suppress_type_name"?: boolean;
|
|
2507
|
+
"tag_key"?: string;
|
|
2508
|
+
"target_index_key"?: string;
|
|
2509
|
+
"target_type_key"?: string;
|
|
2510
|
+
"template_file"?: TemplateFile;
|
|
2511
|
+
"template_name"?: string;
|
|
2512
|
+
"template_overwrite"?: boolean;
|
|
2513
|
+
"templates"?: string;
|
|
2514
|
+
"time_key"?: string;
|
|
2515
|
+
"time_key_format"?: string;
|
|
2516
|
+
"time_parse_error_tag"?: string;
|
|
2517
|
+
"time_precision"?: string;
|
|
2518
|
+
"type_name"?: string;
|
|
2519
|
+
"unrecoverable_error_types"?: string;
|
|
2520
|
+
"use_legacy_template"?: boolean;
|
|
2521
|
+
"user"?: string;
|
|
2522
|
+
"utc_index"?: boolean;
|
|
2523
|
+
"validate_client_version"?: boolean;
|
|
2524
|
+
"verify_es_version_at_startup"?: boolean;
|
|
2525
|
+
"with_transporter_log"?: boolean;
|
|
2526
|
+
"write_operation"?: string;
|
|
2527
|
+
}
|
|
2528
|
+
export interface File {
|
|
2529
|
+
"add_path_suffix"?: boolean;
|
|
2530
|
+
"append"?: boolean;
|
|
2531
|
+
"buffer"?: Buffer;
|
|
2532
|
+
"compress"?: string;
|
|
2533
|
+
"format"?: Format;
|
|
2534
|
+
"path": string;
|
|
2535
|
+
"path_suffix"?: string;
|
|
2536
|
+
"recompress"?: boolean;
|
|
2537
|
+
"slow_flush_log_threshold"?: string;
|
|
2538
|
+
"symlink_path"?: boolean;
|
|
2539
|
+
}
|
|
2540
|
+
export interface SharedKey {
|
|
2541
|
+
"mountFrom"?: MountFrom;
|
|
2542
|
+
"value"?: string;
|
|
2543
|
+
"valueFrom"?: ValueFrom;
|
|
2544
|
+
}
|
|
2545
|
+
export interface Username {
|
|
2546
|
+
"mountFrom"?: MountFrom;
|
|
2547
|
+
"value"?: string;
|
|
2548
|
+
"valueFrom"?: ValueFrom;
|
|
2549
|
+
}
|
|
2550
|
+
export interface ServersItem {
|
|
2551
|
+
"host": string;
|
|
2552
|
+
"name"?: string;
|
|
2553
|
+
"password"?: Password;
|
|
2554
|
+
"port"?: number;
|
|
2555
|
+
"shared_key"?: SharedKey;
|
|
2556
|
+
"standby"?: boolean;
|
|
2557
|
+
"username"?: Username;
|
|
2558
|
+
"weight"?: number;
|
|
2559
|
+
}
|
|
2560
|
+
export interface TlsCertPath {
|
|
2561
|
+
"mountFrom"?: MountFrom;
|
|
2562
|
+
"value"?: string;
|
|
2563
|
+
"valueFrom"?: ValueFrom;
|
|
2564
|
+
}
|
|
2565
|
+
export interface TlsClientCertPath {
|
|
2566
|
+
"mountFrom"?: MountFrom;
|
|
2567
|
+
"value"?: string;
|
|
2568
|
+
"valueFrom"?: ValueFrom;
|
|
2569
|
+
}
|
|
2570
|
+
export interface TlsClientPrivateKeyPassphrase {
|
|
2571
|
+
"mountFrom"?: MountFrom;
|
|
2572
|
+
"value"?: string;
|
|
2573
|
+
"valueFrom"?: ValueFrom;
|
|
2574
|
+
}
|
|
2575
|
+
export interface TlsClientPrivateKeyPath {
|
|
2576
|
+
"mountFrom"?: MountFrom;
|
|
2577
|
+
"value"?: string;
|
|
2578
|
+
"valueFrom"?: ValueFrom;
|
|
2579
|
+
}
|
|
2580
|
+
export interface Forward {
|
|
2581
|
+
"ack_response_timeout"?: number;
|
|
2582
|
+
"buffer"?: Buffer;
|
|
2583
|
+
"compress"?: string;
|
|
2584
|
+
"connect_timeout"?: number;
|
|
2585
|
+
"dns_round_robin"?: boolean;
|
|
2586
|
+
"expire_dns_cache"?: number;
|
|
2587
|
+
"hard_timeout"?: number;
|
|
2588
|
+
"heartbeat_interval"?: number;
|
|
2589
|
+
"heartbeat_type"?: string;
|
|
2590
|
+
"ignore_network_errors_at_startup"?: boolean;
|
|
2591
|
+
"keepalive"?: boolean;
|
|
2592
|
+
"keepalive_timeout"?: number;
|
|
2593
|
+
"phi_failure_detector"?: boolean;
|
|
2594
|
+
"phi_threshold"?: number;
|
|
2595
|
+
"recover_wait"?: number;
|
|
2596
|
+
"require_ack_response"?: boolean;
|
|
2597
|
+
"security"?: Security2;
|
|
2598
|
+
"send_timeout"?: number;
|
|
2599
|
+
"servers": ServersItem[];
|
|
2600
|
+
"slow_flush_log_threshold"?: string;
|
|
2601
|
+
"time_as_integer"?: boolean;
|
|
2602
|
+
"tls_allow_self_signed_cert"?: boolean;
|
|
2603
|
+
"tls_cert_logical_store_name"?: string;
|
|
2604
|
+
"tls_cert_path"?: TlsCertPath;
|
|
2605
|
+
"tls_cert_thumbprint"?: string;
|
|
2606
|
+
"tls_cert_use_enterprise_store"?: boolean;
|
|
2607
|
+
"tls_ciphers"?: string;
|
|
2608
|
+
"tls_client_cert_path"?: TlsClientCertPath;
|
|
2609
|
+
"tls_client_private_key_passphrase"?: TlsClientPrivateKeyPassphrase;
|
|
2610
|
+
"tls_client_private_key_path"?: TlsClientPrivateKeyPath;
|
|
2611
|
+
"tls_insecure_mode"?: boolean;
|
|
2612
|
+
"tls_verify_hostname"?: boolean;
|
|
2613
|
+
"tls_version"?: string;
|
|
2614
|
+
"transport"?: string;
|
|
2615
|
+
"verify_connection_at_startup"?: boolean;
|
|
2616
|
+
}
|
|
2617
|
+
export interface CredentialsJson {
|
|
2618
|
+
"mountFrom"?: MountFrom;
|
|
2619
|
+
"value"?: string;
|
|
2620
|
+
"valueFrom"?: ValueFrom;
|
|
2621
|
+
}
|
|
2622
|
+
export interface ObjectMetadataItem {
|
|
2623
|
+
"key": string;
|
|
2624
|
+
"value": string;
|
|
2625
|
+
}
|
|
2626
|
+
export interface Gcs {
|
|
2627
|
+
"acl"?: string;
|
|
2628
|
+
"auto_create_bucket"?: boolean;
|
|
2629
|
+
"bucket": string;
|
|
2630
|
+
"buffer"?: Buffer;
|
|
2631
|
+
"client_retries"?: number;
|
|
2632
|
+
"client_timeout"?: number;
|
|
2633
|
+
"credentials_json"?: CredentialsJson;
|
|
2634
|
+
"encryption_key"?: string;
|
|
2635
|
+
"format"?: Format;
|
|
2636
|
+
"hex_random_length"?: number;
|
|
2637
|
+
"keyfile"?: string;
|
|
2638
|
+
"object_key_format"?: string;
|
|
2639
|
+
"object_metadata"?: ObjectMetadataItem[];
|
|
2640
|
+
"overwrite"?: boolean;
|
|
2641
|
+
"path"?: string;
|
|
2642
|
+
"project": string;
|
|
2643
|
+
"slow_flush_log_threshold"?: string;
|
|
2644
|
+
"storage_class"?: string;
|
|
2645
|
+
"store_as"?: string;
|
|
2646
|
+
"transcoding"?: boolean;
|
|
2647
|
+
}
|
|
2648
|
+
export interface Gelf {
|
|
2649
|
+
"buffer"?: Buffer;
|
|
2650
|
+
"host": string;
|
|
2651
|
+
"max_bytes"?: number;
|
|
2652
|
+
"port": number;
|
|
2653
|
+
"protocol"?: string;
|
|
2654
|
+
"tls"?: boolean;
|
|
2655
|
+
"tls_options"?: Record<string, unknown>;
|
|
2656
|
+
"udp_transport_type"?: string;
|
|
2657
|
+
}
|
|
2658
|
+
export interface Auth {
|
|
2659
|
+
"password": Password;
|
|
2660
|
+
"username": Username;
|
|
2661
|
+
}
|
|
2662
|
+
export interface TlsCaCertPath {
|
|
2663
|
+
"mountFrom"?: MountFrom;
|
|
2664
|
+
"value"?: string;
|
|
2665
|
+
"valueFrom"?: ValueFrom;
|
|
2666
|
+
}
|
|
2667
|
+
export interface TlsPrivateKeyPassphrase {
|
|
2668
|
+
"mountFrom"?: MountFrom;
|
|
2669
|
+
"value"?: string;
|
|
2670
|
+
"valueFrom"?: ValueFrom;
|
|
2671
|
+
}
|
|
2672
|
+
export interface TlsPrivateKeyPath {
|
|
2673
|
+
"mountFrom"?: MountFrom;
|
|
2674
|
+
"value"?: string;
|
|
2675
|
+
"valueFrom"?: ValueFrom;
|
|
2676
|
+
}
|
|
2677
|
+
export interface Http {
|
|
2678
|
+
"auth"?: Auth;
|
|
2679
|
+
"buffer"?: Buffer;
|
|
2680
|
+
"compress"?: string;
|
|
2681
|
+
"content_type"?: string;
|
|
2682
|
+
"endpoint": string;
|
|
2683
|
+
"error_response_as_unrecoverable"?: boolean;
|
|
2684
|
+
"format"?: Format;
|
|
2685
|
+
"headers"?: Record<string, unknown>;
|
|
2686
|
+
"headers_from_placeholders"?: Record<string, unknown>;
|
|
2687
|
+
"http_method"?: string;
|
|
2688
|
+
"json_array"?: boolean;
|
|
2689
|
+
"open_timeout"?: number;
|
|
2690
|
+
"proxy"?: string;
|
|
2691
|
+
"read_timeout"?: number;
|
|
2692
|
+
"retryable_response_codes"?: number[];
|
|
2693
|
+
"reuse_connections"?: boolean;
|
|
2694
|
+
"slow_flush_log_threshold"?: string;
|
|
2695
|
+
"ssl_timeout"?: number;
|
|
2696
|
+
"tls_ca_cert_path"?: TlsCaCertPath;
|
|
2697
|
+
"tls_ciphers"?: string;
|
|
2698
|
+
"tls_client_cert_path"?: TlsClientCertPath;
|
|
2699
|
+
"tls_private_key_passphrase"?: TlsPrivateKeyPassphrase;
|
|
2700
|
+
"tls_private_key_path"?: TlsPrivateKeyPath;
|
|
2701
|
+
"tls_verify_mode"?: string;
|
|
2702
|
+
"tls_version"?: string;
|
|
2703
|
+
}
|
|
2704
|
+
export interface Keytab {
|
|
2705
|
+
"mountFrom"?: MountFrom;
|
|
2706
|
+
"value"?: string;
|
|
2707
|
+
"valueFrom"?: ValueFrom;
|
|
2708
|
+
}
|
|
2709
|
+
export interface RdkafkaOptions {
|
|
2710
|
+
"allow.auto.create.topics"?: boolean;
|
|
2711
|
+
"api.version.fallback.ms"?: number;
|
|
2712
|
+
"api.version.request"?: boolean;
|
|
2713
|
+
"api.version.request.timeout.ms"?: number;
|
|
2714
|
+
"background_event_cb"?: string;
|
|
2715
|
+
"bootstrap.servers"?: string;
|
|
2716
|
+
"broker.address.family"?: string;
|
|
2717
|
+
"broker.address.ttl"?: number;
|
|
2718
|
+
"broker.version.fallback"?: string;
|
|
2719
|
+
"builtin.features"?: string;
|
|
2720
|
+
"client.id"?: string;
|
|
2721
|
+
"closesocket_cb"?: string;
|
|
2722
|
+
"connect_cb"?: string;
|
|
2723
|
+
"connections.max.idle.ms"?: number;
|
|
2724
|
+
"debug"?: string;
|
|
2725
|
+
"default_topic_conf"?: string;
|
|
2726
|
+
"enable.random.seed"?: boolean;
|
|
2727
|
+
"enable.sasl.oauthbearer.unsecure.jwt"?: boolean;
|
|
2728
|
+
"enable.ssl.certificate.verification"?: boolean;
|
|
2729
|
+
"enabled_events"?: number;
|
|
2730
|
+
"error_cb"?: string;
|
|
2731
|
+
"interceptors"?: string;
|
|
2732
|
+
"internal.termination.signal"?: number;
|
|
2733
|
+
"log.connection.close"?: boolean;
|
|
2734
|
+
"log.queue"?: boolean;
|
|
2735
|
+
"log.thread.name"?: boolean;
|
|
2736
|
+
"log_cb"?: string;
|
|
2737
|
+
"log_level"?: number;
|
|
2738
|
+
"max.in.flight"?: number;
|
|
2739
|
+
"max.in.flight.requests.per.connection"?: number;
|
|
2740
|
+
"message.copy.max.bytes"?: number;
|
|
2741
|
+
"message.max.bytes"?: number;
|
|
2742
|
+
"metadata.broker.list"?: string;
|
|
2743
|
+
"metadata.max.age.ms"?: number;
|
|
2744
|
+
"oauthbearer_token_refresh_cb"?: string;
|
|
2745
|
+
"opaque"?: string;
|
|
2746
|
+
"open_cb"?: string;
|
|
2747
|
+
"plugin.library.paths"?: string;
|
|
2748
|
+
"receive.message.max.bytes"?: number;
|
|
2749
|
+
"reconnect.backoff.max.ms"?: number;
|
|
2750
|
+
"reconnect.backoff.ms"?: number;
|
|
2751
|
+
"resolve_cb"?: string;
|
|
2752
|
+
"sasl.kerberos.keytab"?: string;
|
|
2753
|
+
"sasl.kerberos.kinit.cmd"?: string;
|
|
2754
|
+
"sasl.kerberos.min.time.before.relogin"?: number;
|
|
2755
|
+
"sasl.kerberos.principal"?: string;
|
|
2756
|
+
"sasl.kerberos.service.name"?: string;
|
|
2757
|
+
"sasl.mechanisms"?: string;
|
|
2758
|
+
"sasl.oauthbearer.client.id"?: string;
|
|
2759
|
+
"sasl.oauthbearer.client.secret"?: string;
|
|
2760
|
+
"sasl.oauthbearer.config"?: string;
|
|
2761
|
+
"sasl.oauthbearer.extensions"?: string;
|
|
2762
|
+
"sasl.oauthbearer.method"?: string;
|
|
2763
|
+
"sasl.oauthbearer.scope"?: string;
|
|
2764
|
+
"sasl.oauthbearer.token.endpoint.url"?: string;
|
|
2765
|
+
"sasl.password"?: string;
|
|
2766
|
+
"sasl.username"?: string;
|
|
2767
|
+
"security.protocol"?: string;
|
|
2768
|
+
"socket.blocking.max.ms"?: number;
|
|
2769
|
+
"socket.connection.setup.timeout.ms"?: number;
|
|
2770
|
+
"socket.keepalive.enable"?: boolean;
|
|
2771
|
+
"socket.max.fails"?: number;
|
|
2772
|
+
"socket.nagle.disable"?: boolean;
|
|
2773
|
+
"socket.receive.buffer.bytes"?: number;
|
|
2774
|
+
"socket.send.buffer.bytes"?: number;
|
|
2775
|
+
"socket.timeout.ms"?: number;
|
|
2776
|
+
"socket_cb"?: string;
|
|
2777
|
+
"ssl.ca.location"?: string;
|
|
2778
|
+
"ssl.ca.pem"?: string;
|
|
2779
|
+
"ssl.certificate.location"?: string;
|
|
2780
|
+
"ssl.certificate.pem"?: string;
|
|
2781
|
+
"ssl.cipher.suites"?: string;
|
|
2782
|
+
"ssl.crl.location"?: string;
|
|
2783
|
+
"ssl.curves.list"?: string;
|
|
2784
|
+
"ssl.endpoint.identification.algorithm"?: string;
|
|
2785
|
+
"ssl.engine.id"?: string;
|
|
2786
|
+
"ssl.engine.location"?: string;
|
|
2787
|
+
"ssl.key.location"?: string;
|
|
2788
|
+
"ssl.key.password"?: string;
|
|
2789
|
+
"ssl.key.pem"?: string;
|
|
2790
|
+
"ssl.keystore.location"?: string;
|
|
2791
|
+
"ssl.keystore.password"?: string;
|
|
2792
|
+
"ssl.providers"?: string;
|
|
2793
|
+
"ssl.sigalgs.list"?: string;
|
|
2794
|
+
"statistics.interval.ms"?: number;
|
|
2795
|
+
"stats_cb"?: string;
|
|
2796
|
+
"throttle_cb"?: string;
|
|
2797
|
+
"topic.blacklist"?: string;
|
|
2798
|
+
"topic.metadata.propagation.max.ms"?: number;
|
|
2799
|
+
"topic.metadata.refresh.fast.interval.ms"?: number;
|
|
2800
|
+
"topic.metadata.refresh.interval.ms"?: number;
|
|
2801
|
+
"topic.metadata.refresh.sparse"?: boolean;
|
|
2802
|
+
}
|
|
2803
|
+
export interface SslCaCert {
|
|
2804
|
+
"mountFrom"?: MountFrom;
|
|
2805
|
+
"value"?: string;
|
|
2806
|
+
"valueFrom"?: ValueFrom;
|
|
2807
|
+
}
|
|
2808
|
+
export interface SslClientCert {
|
|
2809
|
+
"mountFrom"?: MountFrom;
|
|
2810
|
+
"value"?: string;
|
|
2811
|
+
"valueFrom"?: ValueFrom;
|
|
2812
|
+
}
|
|
2813
|
+
export interface SslClientCertChain {
|
|
2814
|
+
"mountFrom"?: MountFrom;
|
|
2815
|
+
"value"?: string;
|
|
2816
|
+
"valueFrom"?: ValueFrom;
|
|
2817
|
+
}
|
|
2818
|
+
export interface SslClientCertKey {
|
|
2819
|
+
"mountFrom"?: MountFrom;
|
|
2820
|
+
"value"?: string;
|
|
2821
|
+
"valueFrom"?: ValueFrom;
|
|
2822
|
+
}
|
|
2823
|
+
export interface Kafka {
|
|
2824
|
+
"ack_timeout"?: number;
|
|
2825
|
+
"brokers": string;
|
|
2826
|
+
"buffer"?: Buffer;
|
|
2827
|
+
"client_id"?: string;
|
|
2828
|
+
"compression_codec"?: string;
|
|
2829
|
+
"default_message_key"?: string;
|
|
2830
|
+
"default_partition_key"?: string;
|
|
2831
|
+
"default_topic"?: string;
|
|
2832
|
+
"discard_kafka_delivery_failed"?: boolean;
|
|
2833
|
+
"exclude_partion_key"?: boolean;
|
|
2834
|
+
"exclude_topic_key"?: boolean;
|
|
2835
|
+
"format": Format;
|
|
2836
|
+
"get_kafka_client_log"?: boolean;
|
|
2837
|
+
"headers"?: Record<string, unknown>;
|
|
2838
|
+
"headers_from_record"?: Record<string, unknown>;
|
|
2839
|
+
"idempotent"?: boolean;
|
|
2840
|
+
"kafka_agg_max_bytes"?: number;
|
|
2841
|
+
"kafka_agg_max_messages"?: number;
|
|
2842
|
+
"keytab"?: Keytab;
|
|
2843
|
+
"max_send_limit_bytes"?: number;
|
|
2844
|
+
"max_send_retries"?: number;
|
|
2845
|
+
"message_key_key"?: string;
|
|
2846
|
+
"partition_key"?: string;
|
|
2847
|
+
"partition_key_key"?: string;
|
|
2848
|
+
"password"?: Password;
|
|
2849
|
+
"principal"?: string;
|
|
2850
|
+
"rdkafka_options"?: RdkafkaOptions;
|
|
2851
|
+
"required_acks"?: number;
|
|
2852
|
+
"sasl_over_ssl"?: boolean;
|
|
2853
|
+
"scram_mechanism"?: string;
|
|
2854
|
+
"share_producer"?: boolean;
|
|
2855
|
+
"slow_flush_log_threshold"?: string;
|
|
2856
|
+
"ssl_ca_cert"?: SslCaCert;
|
|
2857
|
+
"ssl_ca_certs_from_system"?: boolean;
|
|
2858
|
+
"ssl_client_cert"?: SslClientCert;
|
|
2859
|
+
"ssl_client_cert_chain"?: SslClientCertChain;
|
|
2860
|
+
"ssl_client_cert_key"?: SslClientCertKey;
|
|
2861
|
+
"ssl_verify_hostname"?: boolean;
|
|
2862
|
+
"topic_key"?: string;
|
|
2863
|
+
"use_default_for_unknown_topic"?: boolean;
|
|
2864
|
+
"use_rdkafka"?: boolean;
|
|
2865
|
+
"username"?: Username;
|
|
2866
|
+
}
|
|
2867
|
+
export interface AssumeRoleCredentials {
|
|
2868
|
+
"duration_seconds"?: string;
|
|
2869
|
+
"external_id"?: string;
|
|
2870
|
+
"policy"?: string;
|
|
2871
|
+
"role_arn": string;
|
|
2872
|
+
"role_session_name": string;
|
|
2873
|
+
}
|
|
2874
|
+
export interface AwsSesToken {
|
|
2875
|
+
"mountFrom"?: MountFrom;
|
|
2876
|
+
"value"?: string;
|
|
2877
|
+
"valueFrom"?: ValueFrom;
|
|
2878
|
+
}
|
|
2879
|
+
export interface ProcessCredentials {
|
|
2880
|
+
"process": string;
|
|
2881
|
+
}
|
|
2882
|
+
export interface KinesisFirehose {
|
|
2883
|
+
"append_new_line"?: boolean;
|
|
2884
|
+
"assume_role_credentials"?: AssumeRoleCredentials;
|
|
2885
|
+
"aws_iam_retries"?: number;
|
|
2886
|
+
"aws_key_id"?: AwsKeyId;
|
|
2887
|
+
"aws_sec_key"?: AwsSecKey;
|
|
2888
|
+
"aws_ses_token"?: AwsSesToken;
|
|
2889
|
+
"batch_request_max_count"?: number;
|
|
2890
|
+
"batch_request_max_size"?: number;
|
|
2891
|
+
"buffer"?: Buffer;
|
|
2892
|
+
"delivery_stream_name": string;
|
|
2893
|
+
"format"?: Format;
|
|
2894
|
+
"process_credentials"?: ProcessCredentials;
|
|
2895
|
+
"region"?: string;
|
|
2896
|
+
"reset_backoff_if_success"?: boolean;
|
|
2897
|
+
"retries_on_batch_request"?: number;
|
|
2898
|
+
"slow_flush_log_threshold"?: string;
|
|
2899
|
+
}
|
|
2900
|
+
export interface KinesisStream {
|
|
2901
|
+
"assume_role_credentials"?: AssumeRoleCredentials;
|
|
2902
|
+
"aws_iam_retries"?: number;
|
|
2903
|
+
"aws_key_id"?: AwsKeyId;
|
|
2904
|
+
"aws_sec_key"?: AwsSecKey;
|
|
2905
|
+
"aws_ses_token"?: AwsSesToken;
|
|
2906
|
+
"batch_request_max_count"?: number;
|
|
2907
|
+
"batch_request_max_size"?: number;
|
|
2908
|
+
"buffer"?: Buffer;
|
|
2909
|
+
"format"?: Format;
|
|
2910
|
+
"partition_key"?: string;
|
|
2911
|
+
"process_credentials"?: ProcessCredentials;
|
|
2912
|
+
"region"?: string;
|
|
2913
|
+
"reset_backoff_if_success"?: boolean;
|
|
2914
|
+
"retries_on_batch_request"?: number;
|
|
2915
|
+
"slow_flush_log_threshold"?: string;
|
|
2916
|
+
"stream_name": string;
|
|
2917
|
+
}
|
|
2918
|
+
export interface AccessId {
|
|
2919
|
+
"mountFrom"?: MountFrom;
|
|
2920
|
+
"value"?: string;
|
|
2921
|
+
"valueFrom"?: ValueFrom;
|
|
2922
|
+
}
|
|
2923
|
+
export interface AccessKey {
|
|
2924
|
+
"mountFrom"?: MountFrom;
|
|
2925
|
+
"value"?: string;
|
|
2926
|
+
"valueFrom"?: ValueFrom;
|
|
2927
|
+
}
|
|
2928
|
+
export interface BearerToken {
|
|
2929
|
+
"mountFrom"?: MountFrom;
|
|
2930
|
+
"value"?: string;
|
|
2931
|
+
"valueFrom"?: ValueFrom;
|
|
2932
|
+
}
|
|
2933
|
+
export interface LmLogs {
|
|
2934
|
+
"access_id"?: AccessId;
|
|
2935
|
+
"access_key"?: AccessKey;
|
|
2936
|
+
"bearer_token"?: BearerToken;
|
|
2937
|
+
"buffer"?: Buffer;
|
|
2938
|
+
"company_domain"?: string;
|
|
2939
|
+
"company_name": string;
|
|
2940
|
+
"debug"?: boolean;
|
|
2941
|
+
"device_less_logs"?: boolean;
|
|
2942
|
+
"flush_interval"?: string;
|
|
2943
|
+
"force_encoding"?: string;
|
|
2944
|
+
"format"?: Format;
|
|
2945
|
+
"http_proxy"?: string;
|
|
2946
|
+
"include_metadata"?: boolean;
|
|
2947
|
+
"resource_mapping"?: string;
|
|
2948
|
+
}
|
|
2949
|
+
export interface Logdna {
|
|
2950
|
+
"api_key": string;
|
|
2951
|
+
"app"?: string;
|
|
2952
|
+
"buffer"?: Buffer;
|
|
2953
|
+
"hostname": string;
|
|
2954
|
+
"ingester_domain"?: string;
|
|
2955
|
+
"ingester_endpoint"?: string;
|
|
2956
|
+
"request_timeout"?: string;
|
|
2957
|
+
"slow_flush_log_threshold"?: string;
|
|
2958
|
+
"tags"?: string;
|
|
2959
|
+
}
|
|
2960
|
+
export interface Token {
|
|
2961
|
+
"mountFrom"?: MountFrom;
|
|
2962
|
+
"value"?: string;
|
|
2963
|
+
"valueFrom"?: ValueFrom;
|
|
2964
|
+
}
|
|
2965
|
+
export interface Endpoint2 {
|
|
2966
|
+
"port"?: number;
|
|
2967
|
+
"token"?: Token;
|
|
2968
|
+
"url"?: string;
|
|
2969
|
+
}
|
|
2970
|
+
export interface Logz {
|
|
2971
|
+
"buffer"?: Buffer;
|
|
2972
|
+
"bulk_limit"?: number;
|
|
2973
|
+
"bulk_limit_warning_limit"?: number;
|
|
2974
|
+
"endpoint": Endpoint2;
|
|
2975
|
+
"gzip"?: boolean;
|
|
2976
|
+
"http_idle_timeout"?: number;
|
|
2977
|
+
"output_include_tags"?: boolean;
|
|
2978
|
+
"output_include_time"?: boolean;
|
|
2979
|
+
"retry_count"?: number;
|
|
2980
|
+
"retry_sleep"?: number;
|
|
2981
|
+
"slow_flush_log_threshold"?: string;
|
|
2982
|
+
}
|
|
2983
|
+
export interface CaCert {
|
|
2984
|
+
"mountFrom"?: MountFrom;
|
|
2985
|
+
"value"?: string;
|
|
2986
|
+
"valueFrom"?: ValueFrom;
|
|
2987
|
+
}
|
|
2988
|
+
export interface Cert2 {
|
|
2989
|
+
"mountFrom"?: MountFrom;
|
|
2990
|
+
"value"?: string;
|
|
2991
|
+
"valueFrom"?: ValueFrom;
|
|
2992
|
+
}
|
|
2993
|
+
export interface Key {
|
|
2994
|
+
"mountFrom"?: MountFrom;
|
|
2995
|
+
"value"?: string;
|
|
2996
|
+
"valueFrom"?: ValueFrom;
|
|
2997
|
+
}
|
|
2998
|
+
export interface Loki {
|
|
2999
|
+
"buffer"?: Buffer;
|
|
3000
|
+
"ca_cert"?: CaCert;
|
|
3001
|
+
"cert"?: Cert2;
|
|
3002
|
+
"configure_kubernetes_labels"?: boolean;
|
|
3003
|
+
"drop_single_key"?: boolean;
|
|
3004
|
+
"extra_labels"?: Record<string, unknown>;
|
|
3005
|
+
"extract_kubernetes_labels"?: boolean;
|
|
3006
|
+
"include_thread_label"?: boolean;
|
|
3007
|
+
"insecure_tls"?: boolean;
|
|
3008
|
+
"key"?: Key;
|
|
3009
|
+
"labels"?: Record<string, unknown>;
|
|
3010
|
+
"line_format"?: string;
|
|
3011
|
+
"password"?: Password;
|
|
3012
|
+
"remove_keys"?: string[];
|
|
3013
|
+
"slow_flush_log_threshold"?: string;
|
|
3014
|
+
"tenant"?: string;
|
|
3015
|
+
"url"?: string;
|
|
3016
|
+
"username"?: Username;
|
|
3017
|
+
}
|
|
3018
|
+
export interface CaPath {
|
|
3019
|
+
"mountFrom"?: MountFrom;
|
|
3020
|
+
"value"?: string;
|
|
3021
|
+
"valueFrom"?: ValueFrom;
|
|
3022
|
+
}
|
|
3023
|
+
export interface WebhookUrl {
|
|
3024
|
+
"mountFrom"?: MountFrom;
|
|
3025
|
+
"value"?: string;
|
|
3026
|
+
"valueFrom"?: ValueFrom;
|
|
3027
|
+
}
|
|
3028
|
+
export interface Mattermost {
|
|
3029
|
+
"ca_path"?: CaPath;
|
|
3030
|
+
"channel_id"?: string;
|
|
3031
|
+
"enable_tls"?: boolean;
|
|
3032
|
+
"message"?: string;
|
|
3033
|
+
"message_color"?: string;
|
|
3034
|
+
"message_title"?: string;
|
|
3035
|
+
"webhook_url": WebhookUrl;
|
|
3036
|
+
}
|
|
3037
|
+
export interface LicenseKey {
|
|
3038
|
+
"mountFrom"?: MountFrom;
|
|
3039
|
+
"value"?: string;
|
|
3040
|
+
"valueFrom"?: ValueFrom;
|
|
3041
|
+
}
|
|
3042
|
+
export interface Newrelic {
|
|
3043
|
+
"api_key"?: ApiKey;
|
|
3044
|
+
"base_uri"?: string;
|
|
3045
|
+
"buffer"?: Buffer;
|
|
3046
|
+
"format"?: Format;
|
|
3047
|
+
"license_key"?: LicenseKey;
|
|
3048
|
+
}
|
|
3049
|
+
export interface Nullout {
|
|
3050
|
+
"never_flush"?: boolean;
|
|
3051
|
+
}
|
|
3052
|
+
export interface Opensearch {
|
|
3053
|
+
"application_name"?: string;
|
|
3054
|
+
"buffer"?: Buffer;
|
|
3055
|
+
"bulk_message_request_threshold"?: string;
|
|
3056
|
+
"ca_file"?: CaFile;
|
|
3057
|
+
"catch_transport_exception_on_retry"?: boolean;
|
|
3058
|
+
"client_cert"?: ClientCert;
|
|
3059
|
+
"client_key"?: ClientKey;
|
|
3060
|
+
"client_key_pass"?: ClientKeyPass;
|
|
3061
|
+
"compression_level"?: string;
|
|
3062
|
+
"custom_headers"?: string;
|
|
3063
|
+
"customize_template"?: string;
|
|
3064
|
+
"data_stream_enable"?: boolean;
|
|
3065
|
+
"data_stream_name"?: string;
|
|
3066
|
+
"data_stream_template_name"?: string;
|
|
3067
|
+
"default_opensearch_version"?: number;
|
|
3068
|
+
"emit_error_for_missing_id"?: boolean;
|
|
3069
|
+
"emit_error_label_event"?: boolean;
|
|
3070
|
+
"endpoint"?: Endpoint;
|
|
3071
|
+
"exception_backup"?: boolean;
|
|
3072
|
+
"fail_on_detecting_os_version_retry_exceed"?: boolean;
|
|
3073
|
+
"fail_on_putting_template_retry_exceed"?: boolean;
|
|
3074
|
+
"flatten_hashes"?: boolean;
|
|
3075
|
+
"flatten_hashes_separator"?: string;
|
|
3076
|
+
"host"?: string;
|
|
3077
|
+
"hosts"?: string;
|
|
3078
|
+
"http_backend"?: string;
|
|
3079
|
+
"http_backend_excon_nonblock"?: boolean;
|
|
3080
|
+
"id_key"?: string;
|
|
3081
|
+
"ignore_exceptions"?: string;
|
|
3082
|
+
"include_index_in_url"?: boolean;
|
|
3083
|
+
"include_tag_key"?: boolean;
|
|
3084
|
+
"include_timestamp"?: boolean;
|
|
3085
|
+
"index_date_pattern"?: string;
|
|
3086
|
+
"index_name"?: string;
|
|
3087
|
+
"index_separator"?: string;
|
|
3088
|
+
"log_os_400_reason"?: boolean;
|
|
3089
|
+
"logstash_dateformat"?: string;
|
|
3090
|
+
"logstash_format"?: boolean;
|
|
3091
|
+
"logstash_prefix"?: string;
|
|
3092
|
+
"logstash_prefix_separator"?: string;
|
|
3093
|
+
"max_retry_get_os_version"?: number;
|
|
3094
|
+
"max_retry_putting_template"?: string;
|
|
3095
|
+
"parent_key"?: string;
|
|
3096
|
+
"password"?: Password;
|
|
3097
|
+
"path"?: string;
|
|
3098
|
+
"pipeline"?: string;
|
|
3099
|
+
"port"?: number;
|
|
3100
|
+
"prefer_oj_serializer"?: boolean;
|
|
3101
|
+
"reconnect_on_error"?: boolean;
|
|
3102
|
+
"reload_after"?: string;
|
|
3103
|
+
"reload_connections"?: boolean;
|
|
3104
|
+
"reload_on_failure"?: boolean;
|
|
3105
|
+
"remove_keys"?: string;
|
|
3106
|
+
"remove_keys_on_update"?: string;
|
|
3107
|
+
"remove_keys_on_update_key"?: string;
|
|
3108
|
+
"request_timeout"?: string;
|
|
3109
|
+
"resurrect_after"?: string;
|
|
3110
|
+
"retry_tag"?: string;
|
|
3111
|
+
"routing_key"?: string;
|
|
3112
|
+
"scheme"?: string;
|
|
3113
|
+
"selector_class_name"?: string;
|
|
3114
|
+
"slow_flush_log_threshold"?: string;
|
|
3115
|
+
"sniffer_class_name"?: string;
|
|
3116
|
+
"ssl_verify"?: boolean;
|
|
3117
|
+
"ssl_version"?: string;
|
|
3118
|
+
"suppress_doc_wrap"?: boolean;
|
|
3119
|
+
"suppress_type_name"?: boolean;
|
|
3120
|
+
"tag_key"?: string;
|
|
3121
|
+
"target_index_affinity"?: boolean;
|
|
3122
|
+
"target_index_key"?: string;
|
|
3123
|
+
"template_file"?: TemplateFile;
|
|
3124
|
+
"template_name"?: string;
|
|
3125
|
+
"template_overwrite"?: boolean;
|
|
3126
|
+
"templates"?: string;
|
|
3127
|
+
"time_key"?: string;
|
|
3128
|
+
"time_key_exclude_timestamp"?: boolean;
|
|
3129
|
+
"time_key_format"?: string;
|
|
3130
|
+
"time_parse_error_tag"?: string;
|
|
3131
|
+
"time_precision"?: string;
|
|
3132
|
+
"truncate_caches_interval"?: string;
|
|
3133
|
+
"unrecoverable_error_types"?: string;
|
|
3134
|
+
"unrecoverable_record_types"?: string;
|
|
3135
|
+
"use_legacy_template"?: boolean;
|
|
3136
|
+
"user"?: string;
|
|
3137
|
+
"utc_index"?: boolean;
|
|
3138
|
+
"validate_client_version"?: boolean;
|
|
3139
|
+
"verify_os_version_at_startup"?: boolean;
|
|
3140
|
+
"with_transporter_log"?: boolean;
|
|
3141
|
+
"write_operation"?: string;
|
|
3142
|
+
}
|
|
3143
|
+
export interface AccessKeySecret {
|
|
3144
|
+
"mountFrom"?: MountFrom;
|
|
3145
|
+
"value"?: string;
|
|
3146
|
+
"valueFrom"?: ValueFrom;
|
|
3147
|
+
}
|
|
3148
|
+
export interface Oss {
|
|
3149
|
+
"access_key_id": AccessKeyId;
|
|
3150
|
+
"access_key_secret": AccessKeySecret;
|
|
3151
|
+
"auto_create_bucket"?: boolean;
|
|
3152
|
+
"bucket": string;
|
|
3153
|
+
"buffer"?: Buffer;
|
|
3154
|
+
"check_bucket"?: boolean;
|
|
3155
|
+
"check_object"?: boolean;
|
|
3156
|
+
"download_crc_enable"?: boolean;
|
|
3157
|
+
"endpoint": string;
|
|
3158
|
+
"format"?: Format;
|
|
3159
|
+
"hex_random_length"?: number;
|
|
3160
|
+
"index_format"?: string;
|
|
3161
|
+
"key_format"?: string;
|
|
3162
|
+
"open_timeout"?: number;
|
|
3163
|
+
"oss_sdk_log_dir"?: string;
|
|
3164
|
+
"overwrite"?: boolean;
|
|
3165
|
+
"path"?: string;
|
|
3166
|
+
"read_timeout"?: number;
|
|
3167
|
+
"slow_flush_log_threshold"?: string;
|
|
3168
|
+
"store_as"?: string;
|
|
3169
|
+
"upload_crc_enable"?: boolean;
|
|
3170
|
+
"warn_for_delay"?: string;
|
|
3171
|
+
}
|
|
3172
|
+
export interface Pass {
|
|
3173
|
+
"mountFrom"?: MountFrom;
|
|
3174
|
+
"value"?: string;
|
|
3175
|
+
"valueFrom"?: ValueFrom;
|
|
3176
|
+
}
|
|
3177
|
+
export interface User {
|
|
3178
|
+
"mountFrom"?: MountFrom;
|
|
3179
|
+
"value"?: string;
|
|
3180
|
+
"valueFrom"?: ValueFrom;
|
|
3181
|
+
}
|
|
3182
|
+
export interface Rabbitmq {
|
|
3183
|
+
"app_id"?: string;
|
|
3184
|
+
"auth_mechanism"?: string;
|
|
3185
|
+
"automatically_recover"?: boolean;
|
|
3186
|
+
"buffer"?: Buffer;
|
|
3187
|
+
"connection_timeout"?: number;
|
|
3188
|
+
"content_encoding"?: string;
|
|
3189
|
+
"content_type"?: string;
|
|
3190
|
+
"continuation_timeout"?: number;
|
|
3191
|
+
"exchange": string;
|
|
3192
|
+
"exchange_durable"?: boolean;
|
|
3193
|
+
"exchange_no_declare"?: boolean;
|
|
3194
|
+
"exchange_type": string;
|
|
3195
|
+
"expiration"?: number;
|
|
3196
|
+
"format"?: Format;
|
|
3197
|
+
"frame_max"?: number;
|
|
3198
|
+
"heartbeat"?: string;
|
|
3199
|
+
"host"?: string;
|
|
3200
|
+
"hosts"?: string[];
|
|
3201
|
+
"id_key"?: string;
|
|
3202
|
+
"message_type"?: string;
|
|
3203
|
+
"network_recovery_interval"?: number;
|
|
3204
|
+
"pass"?: Pass;
|
|
3205
|
+
"persistent"?: boolean;
|
|
3206
|
+
"port"?: number;
|
|
3207
|
+
"priority"?: number;
|
|
3208
|
+
"recovery_attempts"?: number;
|
|
3209
|
+
"routing_key"?: string;
|
|
3210
|
+
"timestamp"?: boolean;
|
|
3211
|
+
"tls"?: boolean;
|
|
3212
|
+
"tls_ca_certificates"?: string[];
|
|
3213
|
+
"tls_cert"?: string;
|
|
3214
|
+
"tls_key"?: string;
|
|
3215
|
+
"user"?: User;
|
|
3216
|
+
"verify_peer"?: boolean;
|
|
3217
|
+
"vhost"?: string;
|
|
3218
|
+
}
|
|
3219
|
+
export interface Redis {
|
|
3220
|
+
"allow_duplicate_key"?: boolean;
|
|
3221
|
+
"buffer"?: Buffer;
|
|
3222
|
+
"db_number"?: number;
|
|
3223
|
+
"format"?: Format;
|
|
3224
|
+
"host"?: string;
|
|
3225
|
+
"insert_key_prefix"?: string;
|
|
3226
|
+
"password"?: Password;
|
|
3227
|
+
"port"?: number;
|
|
3228
|
+
"slow_flush_log_threshold"?: string;
|
|
3229
|
+
"strftime_format"?: string;
|
|
3230
|
+
"ttl"?: number;
|
|
3231
|
+
}
|
|
3232
|
+
export interface Relabel {
|
|
3233
|
+
"label": string;
|
|
3234
|
+
}
|
|
3235
|
+
export interface Compress {
|
|
3236
|
+
"parquet_compression_codec"?: string;
|
|
3237
|
+
"parquet_page_size"?: string;
|
|
3238
|
+
"parquet_row_group_size"?: string;
|
|
3239
|
+
"record_type"?: string;
|
|
3240
|
+
"schema_file"?: string;
|
|
3241
|
+
"schema_type"?: string;
|
|
3242
|
+
}
|
|
3243
|
+
export interface InstanceProfileCredentials {
|
|
3244
|
+
"http_open_timeout"?: string;
|
|
3245
|
+
"http_read_timeout"?: string;
|
|
3246
|
+
"ip_address"?: string;
|
|
3247
|
+
"port"?: string;
|
|
3248
|
+
"retries"?: string;
|
|
3249
|
+
}
|
|
3250
|
+
export interface SharedCredentials {
|
|
3251
|
+
"path"?: string;
|
|
3252
|
+
"profile_name"?: string;
|
|
3253
|
+
}
|
|
3254
|
+
export interface S3 {
|
|
3255
|
+
"acl"?: string;
|
|
3256
|
+
"assume_role_credentials"?: AssumeRoleCredentials;
|
|
3257
|
+
"auto_create_bucket"?: string;
|
|
3258
|
+
"aws_iam_retries"?: string;
|
|
3259
|
+
"aws_key_id"?: AwsKeyId;
|
|
3260
|
+
"aws_sec_key"?: AwsSecKey;
|
|
3261
|
+
"buffer"?: Buffer;
|
|
3262
|
+
"check_apikey_on_start"?: string;
|
|
3263
|
+
"check_bucket"?: string;
|
|
3264
|
+
"check_object"?: string;
|
|
3265
|
+
"clustername"?: string;
|
|
3266
|
+
"compress"?: Compress;
|
|
3267
|
+
"compute_checksums"?: string;
|
|
3268
|
+
"enable_transfer_acceleration"?: string;
|
|
3269
|
+
"force_path_style"?: string;
|
|
3270
|
+
"format"?: Format;
|
|
3271
|
+
"grant_full_control"?: string;
|
|
3272
|
+
"grant_read"?: string;
|
|
3273
|
+
"grant_read_acp"?: string;
|
|
3274
|
+
"grant_write_acp"?: string;
|
|
3275
|
+
"hex_random_length"?: string;
|
|
3276
|
+
"index_format"?: string;
|
|
3277
|
+
"instance_profile_credentials"?: InstanceProfileCredentials;
|
|
3278
|
+
"oneeye_format"?: boolean;
|
|
3279
|
+
"overwrite"?: string;
|
|
3280
|
+
"path"?: string;
|
|
3281
|
+
"proxy_uri"?: string;
|
|
3282
|
+
"s3_bucket": string;
|
|
3283
|
+
"s3_endpoint"?: string;
|
|
3284
|
+
"s3_metadata"?: string;
|
|
3285
|
+
"s3_object_key_format"?: string;
|
|
3286
|
+
"s3_region"?: string;
|
|
3287
|
+
"shared_credentials"?: SharedCredentials;
|
|
3288
|
+
"signature_version"?: string;
|
|
3289
|
+
"slow_flush_log_threshold"?: string;
|
|
3290
|
+
"sse_customer_algorithm"?: string;
|
|
3291
|
+
"sse_customer_key"?: string;
|
|
3292
|
+
"sse_customer_key_md5"?: string;
|
|
3293
|
+
"ssekms_key_id"?: string;
|
|
3294
|
+
"ssl_ca_bundle"?: string;
|
|
3295
|
+
"ssl_ca_directory"?: string;
|
|
3296
|
+
"ssl_verify_peer"?: string;
|
|
3297
|
+
"storage_class"?: string;
|
|
3298
|
+
"store_as"?: string;
|
|
3299
|
+
"use_bundled_cert"?: string;
|
|
3300
|
+
"use_server_side_encryption"?: string;
|
|
3301
|
+
"warn_for_delay"?: string;
|
|
3302
|
+
}
|
|
3303
|
+
export interface HecToken {
|
|
3304
|
+
"mountFrom"?: MountFrom;
|
|
3305
|
+
"value"?: string;
|
|
3306
|
+
"valueFrom"?: ValueFrom;
|
|
3307
|
+
}
|
|
3308
|
+
export interface SplunkHec {
|
|
3309
|
+
"buffer"?: Buffer;
|
|
3310
|
+
"ca_file"?: CaFile;
|
|
3311
|
+
"ca_path"?: CaPath;
|
|
3312
|
+
"client_cert"?: ClientCert;
|
|
3313
|
+
"client_key"?: ClientKey;
|
|
3314
|
+
"coerce_to_utf8"?: boolean;
|
|
3315
|
+
"data_type"?: string;
|
|
3316
|
+
"fields"?: Record<string, unknown>;
|
|
3317
|
+
"format"?: Format;
|
|
3318
|
+
"hec_host": string;
|
|
3319
|
+
"hec_port"?: number;
|
|
3320
|
+
"hec_token": HecToken;
|
|
3321
|
+
"host"?: string;
|
|
3322
|
+
"host_key"?: string;
|
|
3323
|
+
"idle_timeout"?: number;
|
|
3324
|
+
"index"?: string;
|
|
3325
|
+
"index_key"?: string;
|
|
3326
|
+
"insecure_ssl"?: boolean;
|
|
3327
|
+
"keep_keys"?: boolean;
|
|
3328
|
+
"metric_name_key"?: string;
|
|
3329
|
+
"metric_value_key"?: string;
|
|
3330
|
+
"metrics_from_event"?: boolean;
|
|
3331
|
+
"non_utf8_replacement_string"?: string;
|
|
3332
|
+
"open_timeout"?: number;
|
|
3333
|
+
"protocol"?: string;
|
|
3334
|
+
"read_timeout"?: number;
|
|
3335
|
+
"slow_flush_log_threshold"?: string;
|
|
3336
|
+
"source"?: string;
|
|
3337
|
+
"source_key"?: string;
|
|
3338
|
+
"sourcetype"?: string;
|
|
3339
|
+
"sourcetype_key"?: string;
|
|
3340
|
+
"ssl_ciphers"?: string;
|
|
3341
|
+
}
|
|
3342
|
+
export interface Sqs {
|
|
3343
|
+
"aws_key_id"?: AwsKeyId;
|
|
3344
|
+
"aws_sec_key"?: AwsSecKey;
|
|
3345
|
+
"buffer"?: Buffer;
|
|
3346
|
+
"create_queue"?: boolean;
|
|
3347
|
+
"delay_seconds"?: number;
|
|
3348
|
+
"include_tag"?: boolean;
|
|
3349
|
+
"message_group_id"?: string;
|
|
3350
|
+
"queue_name"?: string;
|
|
3351
|
+
"region"?: string;
|
|
3352
|
+
"slow_flush_log_threshold"?: string;
|
|
3353
|
+
"sqs_url"?: string;
|
|
3354
|
+
"tag_property_name"?: string;
|
|
3355
|
+
}
|
|
3356
|
+
export interface ClientCertPath {
|
|
3357
|
+
"mountFrom"?: MountFrom;
|
|
3358
|
+
"value"?: string;
|
|
3359
|
+
"valueFrom"?: ValueFrom;
|
|
3360
|
+
}
|
|
3361
|
+
export interface Format2 {
|
|
3362
|
+
"app_name_field"?: string;
|
|
3363
|
+
"hostname_field"?: string;
|
|
3364
|
+
"log_field"?: string;
|
|
3365
|
+
"message_id_field"?: string;
|
|
3366
|
+
"proc_id_field"?: string;
|
|
3367
|
+
"rfc6587_message_size"?: boolean;
|
|
3368
|
+
"structured_data_field"?: string;
|
|
3369
|
+
"type"?: "out_file" | "json" | "ltsv" | "csv" | "msgpack" | "hash" | "single_value";
|
|
3370
|
+
}
|
|
3371
|
+
export interface PrivateKeyPassphrase {
|
|
3372
|
+
"mountFrom"?: MountFrom;
|
|
3373
|
+
"value"?: string;
|
|
3374
|
+
"valueFrom"?: ValueFrom;
|
|
3375
|
+
}
|
|
3376
|
+
export interface PrivateKeyPath {
|
|
3377
|
+
"mountFrom"?: MountFrom;
|
|
3378
|
+
"value"?: string;
|
|
3379
|
+
"valueFrom"?: ValueFrom;
|
|
3380
|
+
}
|
|
3381
|
+
export interface TrustedCaPath {
|
|
3382
|
+
"mountFrom"?: MountFrom;
|
|
3383
|
+
"value"?: string;
|
|
3384
|
+
"valueFrom"?: ValueFrom;
|
|
3385
|
+
}
|
|
3386
|
+
export interface Syslog {
|
|
3387
|
+
"allow_self_signed_cert"?: boolean;
|
|
3388
|
+
"buffer"?: Buffer;
|
|
3389
|
+
"client_cert_path"?: ClientCertPath;
|
|
3390
|
+
"enable_system_cert_store"?: boolean;
|
|
3391
|
+
"format"?: Format2;
|
|
3392
|
+
"fqdn"?: string;
|
|
3393
|
+
"host": string;
|
|
3394
|
+
"insecure"?: boolean;
|
|
3395
|
+
"port"?: number;
|
|
3396
|
+
"private_key_passphrase"?: PrivateKeyPassphrase;
|
|
3397
|
+
"private_key_path"?: PrivateKeyPath;
|
|
3398
|
+
"slow_flush_log_threshold"?: string;
|
|
3399
|
+
"transport"?: string;
|
|
3400
|
+
"trusted_ca_path"?: TrustedCaPath;
|
|
3401
|
+
"verify_fqdn"?: boolean;
|
|
3402
|
+
"version"?: string;
|
|
3403
|
+
}
|
|
3404
|
+
export interface VmwareLogInsight {
|
|
3405
|
+
"agent_id"?: string;
|
|
3406
|
+
"authentication"?: "nil" | "basic";
|
|
3407
|
+
"buffer"?: Buffer;
|
|
3408
|
+
"ca_file"?: CaFile;
|
|
3409
|
+
"config_param"?: Record<string, unknown>;
|
|
3410
|
+
"flatten_hashes"?: boolean;
|
|
3411
|
+
"flatten_hashes_separator"?: string;
|
|
3412
|
+
"host"?: string;
|
|
3413
|
+
"http_conn_debug"?: boolean;
|
|
3414
|
+
"http_method"?: "post";
|
|
3415
|
+
"log_text_keys"?: string[];
|
|
3416
|
+
"max_batch_size"?: number;
|
|
3417
|
+
"password"?: Password;
|
|
3418
|
+
"path"?: string;
|
|
3419
|
+
"port"?: number;
|
|
3420
|
+
"raise_on_error"?: boolean;
|
|
3421
|
+
"rate_limit_msec"?: number;
|
|
3422
|
+
"request_retries"?: number;
|
|
3423
|
+
"request_timeout"?: number;
|
|
3424
|
+
"scheme"?: "http" | "https";
|
|
3425
|
+
"serializer"?: "json";
|
|
3426
|
+
"shorten_keys"?: Record<string, unknown>;
|
|
3427
|
+
"ssl_verify"?: boolean;
|
|
3428
|
+
"username"?: Username;
|
|
3429
|
+
}
|
|
3430
|
+
export interface Authorization {
|
|
3431
|
+
"mountFrom"?: MountFrom;
|
|
3432
|
+
"value"?: string;
|
|
3433
|
+
"valueFrom"?: ValueFrom;
|
|
3434
|
+
}
|
|
3435
|
+
export interface Headers {
|
|
3436
|
+
"authorization": Authorization;
|
|
3437
|
+
"content_type": string;
|
|
3438
|
+
"structure": string;
|
|
3439
|
+
}
|
|
3440
|
+
export interface VmwareLogIntelligence {
|
|
3441
|
+
"buffer"?: Buffer;
|
|
3442
|
+
"endpoint_url": string;
|
|
3443
|
+
"format"?: Format;
|
|
3444
|
+
"headers": Headers;
|
|
3445
|
+
"http_compress"?: boolean;
|
|
3446
|
+
"verify_ssl": boolean;
|
|
3447
|
+
}
|
|
3448
|
+
export interface OutputSpec {
|
|
3449
|
+
"awsElasticsearch"?: AwsElasticsearch;
|
|
3450
|
+
"azurestorage"?: Azurestorage;
|
|
3451
|
+
"cloudwatch"?: Cloudwatch;
|
|
3452
|
+
"datadog"?: Datadog;
|
|
3453
|
+
"elasticsearch"?: Elasticsearch;
|
|
3454
|
+
"file"?: File;
|
|
3455
|
+
"forward"?: Forward;
|
|
3456
|
+
"gcs"?: Gcs;
|
|
3457
|
+
"gelf"?: Gelf;
|
|
3458
|
+
"http"?: Http;
|
|
3459
|
+
"kafka"?: Kafka;
|
|
3460
|
+
"kinesisFirehose"?: KinesisFirehose;
|
|
3461
|
+
"kinesisStream"?: KinesisStream;
|
|
3462
|
+
"lmLogs"?: LmLogs;
|
|
3463
|
+
"logdna"?: Logdna;
|
|
3464
|
+
"loggingRef"?: string;
|
|
3465
|
+
"logz"?: Logz;
|
|
3466
|
+
"loki"?: Loki;
|
|
3467
|
+
"mattermost"?: Mattermost;
|
|
3468
|
+
"newrelic"?: Newrelic;
|
|
3469
|
+
"nullout"?: Nullout;
|
|
3470
|
+
"opensearch"?: Opensearch;
|
|
3471
|
+
"oss"?: Oss;
|
|
3472
|
+
"rabbitmq"?: Rabbitmq;
|
|
3473
|
+
"redis"?: Redis;
|
|
3474
|
+
"relabel"?: Relabel;
|
|
3475
|
+
"s3"?: S3;
|
|
3476
|
+
"splunkHec"?: SplunkHec;
|
|
3477
|
+
"sqs"?: Sqs;
|
|
3478
|
+
"syslog"?: Syslog;
|
|
3479
|
+
"vmwareLogInsight"?: VmwareLogInsight;
|
|
3480
|
+
"vmwareLogIntelligence"?: VmwareLogIntelligence;
|
|
3481
|
+
}
|
|
3482
|
+
export interface OutputStatus {
|
|
3483
|
+
"active"?: boolean;
|
|
3484
|
+
"problems"?: string[];
|
|
3485
|
+
"problemsCount"?: number;
|
|
3486
|
+
}
|
|
3487
|
+
//# sourceMappingURL=logging.d.ts.map
|