@pulumi/aiven 6.7.0 → 6.7.1
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/cassandra.d.ts +5 -5
- package/clickhouse.d.ts +5 -5
- package/clickhouseGrant.d.ts +3 -3
- package/flink.d.ts +3 -3
- package/getKafkaSchema.d.ts +2 -2
- package/getKafkaSchemaConfiguration.d.ts +2 -2
- package/getPgUser.d.ts +2 -2
- package/influxDb.d.ts +5 -5
- package/kafka.d.ts +5 -5
- package/kafkaSchema.d.ts +6 -6
- package/openSearch.d.ts +5 -5
- package/package.json +1 -1
- package/pg.d.ts +6 -6
- package/pgUser.d.ts +6 -6
- package/types/input.d.ts +928 -19
- package/types/output.d.ts +929 -176
package/types/input.d.ts
CHANGED
|
@@ -89,18 +89,39 @@ export interface CassandraCassandraUserConfig {
|
|
|
89
89
|
staticIps?: pulumi.Input<boolean>;
|
|
90
90
|
}
|
|
91
91
|
export interface CassandraCassandraUserConfigCassandra {
|
|
92
|
+
/**
|
|
93
|
+
* Fail any multiple-partition batch exceeding this value. 50kb (10x warn threshold) by default.
|
|
94
|
+
*/
|
|
92
95
|
batchSizeFailThresholdInKb?: pulumi.Input<number>;
|
|
96
|
+
/**
|
|
97
|
+
* Log a warning message on any multiple-partition batch size exceeding this value.5kb per batch by default.Caution should be taken on increasing the size of this thresholdas it can lead to node instability.
|
|
98
|
+
*/
|
|
93
99
|
batchSizeWarnThresholdInKb?: pulumi.Input<number>;
|
|
100
|
+
/**
|
|
101
|
+
* Name of the datacenter to which nodes of this service belong. Can be set only when creating the service.
|
|
102
|
+
*/
|
|
94
103
|
datacenter?: pulumi.Input<string>;
|
|
95
104
|
}
|
|
96
105
|
export interface CassandraCassandraUserConfigIpFilterObject {
|
|
106
|
+
/**
|
|
107
|
+
* Description for IP filter list entry.
|
|
108
|
+
*/
|
|
97
109
|
description?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* CIDR address block.
|
|
112
|
+
*/
|
|
98
113
|
network: pulumi.Input<string>;
|
|
99
114
|
}
|
|
100
115
|
export interface CassandraCassandraUserConfigPrivateAccess {
|
|
116
|
+
/**
|
|
117
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
118
|
+
*/
|
|
101
119
|
prometheus?: pulumi.Input<boolean>;
|
|
102
120
|
}
|
|
103
121
|
export interface CassandraCassandraUserConfigPublicAccess {
|
|
122
|
+
/**
|
|
123
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
124
|
+
*/
|
|
104
125
|
prometheus?: pulumi.Input<boolean>;
|
|
105
126
|
}
|
|
106
127
|
export interface CassandraComponent {
|
|
@@ -179,31 +200,55 @@ export interface ClickhouseClickhouseUserConfig {
|
|
|
179
200
|
staticIps?: pulumi.Input<boolean>;
|
|
180
201
|
}
|
|
181
202
|
export interface ClickhouseClickhouseUserConfigIpFilterObject {
|
|
203
|
+
/**
|
|
204
|
+
* Description for IP filter list entry.
|
|
205
|
+
*/
|
|
182
206
|
description?: pulumi.Input<string>;
|
|
207
|
+
/**
|
|
208
|
+
* CIDR address block.
|
|
209
|
+
*/
|
|
183
210
|
network: pulumi.Input<string>;
|
|
184
211
|
}
|
|
185
212
|
export interface ClickhouseClickhouseUserConfigPrivateAccess {
|
|
186
213
|
/**
|
|
187
|
-
*
|
|
214
|
+
* Allow clients to connect to clickhouse with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
188
215
|
*/
|
|
189
216
|
clickhouse?: pulumi.Input<boolean>;
|
|
217
|
+
/**
|
|
218
|
+
* Allow clients to connect to clickhouseHttps with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
219
|
+
*/
|
|
190
220
|
clickhouseHttps?: pulumi.Input<boolean>;
|
|
221
|
+
/**
|
|
222
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
223
|
+
*/
|
|
191
224
|
prometheus?: pulumi.Input<boolean>;
|
|
192
225
|
}
|
|
193
226
|
export interface ClickhouseClickhouseUserConfigPrivatelinkAccess {
|
|
194
227
|
/**
|
|
195
|
-
*
|
|
228
|
+
* Allow clients to connect to clickhouse with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
196
229
|
*/
|
|
197
230
|
clickhouse?: pulumi.Input<boolean>;
|
|
231
|
+
/**
|
|
232
|
+
* Allow clients to connect to clickhouseHttps with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
233
|
+
*/
|
|
198
234
|
clickhouseHttps?: pulumi.Input<boolean>;
|
|
235
|
+
/**
|
|
236
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
237
|
+
*/
|
|
199
238
|
prometheus?: pulumi.Input<boolean>;
|
|
200
239
|
}
|
|
201
240
|
export interface ClickhouseClickhouseUserConfigPublicAccess {
|
|
202
241
|
/**
|
|
203
|
-
*
|
|
242
|
+
* Allow clients to connect to clickhouse with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
204
243
|
*/
|
|
205
244
|
clickhouse?: pulumi.Input<boolean>;
|
|
245
|
+
/**
|
|
246
|
+
* Allow clients to connect to clickhouseHttps with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
247
|
+
*/
|
|
206
248
|
clickhouseHttps?: pulumi.Input<boolean>;
|
|
249
|
+
/**
|
|
250
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
251
|
+
*/
|
|
207
252
|
prometheus?: pulumi.Input<boolean>;
|
|
208
253
|
}
|
|
209
254
|
export interface ClickhouseComponent {
|
|
@@ -327,14 +372,23 @@ export interface FlinkFlinkUserConfig {
|
|
|
327
372
|
privatelinkAccess?: pulumi.Input<inputs.FlinkFlinkUserConfigPrivatelinkAccess>;
|
|
328
373
|
}
|
|
329
374
|
export interface FlinkFlinkUserConfigIpFilterObject {
|
|
375
|
+
/**
|
|
376
|
+
* Description for IP filter list entry.
|
|
377
|
+
*/
|
|
330
378
|
description?: pulumi.Input<string>;
|
|
379
|
+
/**
|
|
380
|
+
* CIDR address block.
|
|
381
|
+
*/
|
|
331
382
|
network: pulumi.Input<string>;
|
|
332
383
|
}
|
|
333
384
|
export interface FlinkFlinkUserConfigPrivatelinkAccess {
|
|
334
385
|
/**
|
|
335
|
-
*
|
|
386
|
+
* Enable flink.
|
|
336
387
|
*/
|
|
337
388
|
flink?: pulumi.Input<boolean>;
|
|
389
|
+
/**
|
|
390
|
+
* Enable prometheus.
|
|
391
|
+
*/
|
|
338
392
|
prometheus?: pulumi.Input<boolean>;
|
|
339
393
|
}
|
|
340
394
|
export interface FlinkServiceIntegration {
|
|
@@ -573,33 +627,60 @@ export interface InfluxDbInfluxdbUserConfig {
|
|
|
573
627
|
staticIps?: pulumi.Input<boolean>;
|
|
574
628
|
}
|
|
575
629
|
export interface InfluxDbInfluxdbUserConfigInfluxdb {
|
|
630
|
+
/**
|
|
631
|
+
* The maximum duration in seconds before a query is logged as a slow query. Setting this to 0 (the default) will never log slow queries.
|
|
632
|
+
*/
|
|
576
633
|
logQueriesAfter?: pulumi.Input<number>;
|
|
634
|
+
/**
|
|
635
|
+
* Maximum number of connections to InfluxDB. Setting this to 0 (default) means no limit. If using max*connection*limit, it is recommended to set the value to be large enough in order to not block clients unnecessarily.
|
|
636
|
+
*/
|
|
577
637
|
maxConnectionLimit?: pulumi.Input<number>;
|
|
638
|
+
/**
|
|
639
|
+
* The maximum number of rows returned in a non-chunked query. Setting this to 0 (the default) allows an unlimited number to be returned.
|
|
640
|
+
*/
|
|
578
641
|
maxRowLimit?: pulumi.Input<number>;
|
|
642
|
+
/**
|
|
643
|
+
* The maximum number of `GROUP BY time()` buckets that can be processed in a query. Setting this to 0 (the default) allows an unlimited number to be processed.
|
|
644
|
+
*/
|
|
579
645
|
maxSelectBuckets?: pulumi.Input<number>;
|
|
646
|
+
/**
|
|
647
|
+
* The maximum number of points that can be processed in a SELECT statement. Setting this to 0 (the default) allows an unlimited number to be processed.
|
|
648
|
+
*/
|
|
580
649
|
maxSelectPoint?: pulumi.Input<number>;
|
|
650
|
+
/**
|
|
651
|
+
* Whether queries should be logged before execution. May log sensitive data contained within a query.
|
|
652
|
+
*/
|
|
581
653
|
queryLogEnabled?: pulumi.Input<boolean>;
|
|
654
|
+
/**
|
|
655
|
+
* The maximum duration in seconds before a query is killed. Setting this to 0 (the default) will never kill slow queries.
|
|
656
|
+
*/
|
|
582
657
|
queryTimeout?: pulumi.Input<number>;
|
|
583
658
|
}
|
|
584
659
|
export interface InfluxDbInfluxdbUserConfigIpFilterObject {
|
|
660
|
+
/**
|
|
661
|
+
* Description for IP filter list entry.
|
|
662
|
+
*/
|
|
585
663
|
description?: pulumi.Input<string>;
|
|
664
|
+
/**
|
|
665
|
+
* CIDR address block.
|
|
666
|
+
*/
|
|
586
667
|
network: pulumi.Input<string>;
|
|
587
668
|
}
|
|
588
669
|
export interface InfluxDbInfluxdbUserConfigPrivateAccess {
|
|
589
670
|
/**
|
|
590
|
-
*
|
|
671
|
+
* influxdb.conf configuration values.
|
|
591
672
|
*/
|
|
592
673
|
influxdb?: pulumi.Input<boolean>;
|
|
593
674
|
}
|
|
594
675
|
export interface InfluxDbInfluxdbUserConfigPrivatelinkAccess {
|
|
595
676
|
/**
|
|
596
|
-
*
|
|
677
|
+
* influxdb.conf configuration values.
|
|
597
678
|
*/
|
|
598
679
|
influxdb?: pulumi.Input<boolean>;
|
|
599
680
|
}
|
|
600
681
|
export interface InfluxDbInfluxdbUserConfigPublicAccess {
|
|
601
682
|
/**
|
|
602
|
-
*
|
|
683
|
+
* influxdb.conf configuration values.
|
|
603
684
|
*/
|
|
604
685
|
influxdb?: pulumi.Input<boolean>;
|
|
605
686
|
}
|
|
@@ -702,9 +783,6 @@ export interface KafkaConnectTag {
|
|
|
702
783
|
}
|
|
703
784
|
export interface KafkaConnectorTask {
|
|
704
785
|
connector?: pulumi.Input<string>;
|
|
705
|
-
/**
|
|
706
|
-
* List of tasks of a connector.
|
|
707
|
-
*/
|
|
708
786
|
task?: pulumi.Input<number>;
|
|
709
787
|
}
|
|
710
788
|
export interface KafkaKafka {
|
|
@@ -795,115 +873,361 @@ export interface KafkaKafkaUserConfig {
|
|
|
795
873
|
staticIps?: pulumi.Input<boolean>;
|
|
796
874
|
}
|
|
797
875
|
export interface KafkaKafkaUserConfigIpFilterObject {
|
|
876
|
+
/**
|
|
877
|
+
* Description for IP filter list entry.
|
|
878
|
+
*/
|
|
798
879
|
description?: pulumi.Input<string>;
|
|
880
|
+
/**
|
|
881
|
+
* CIDR address block.
|
|
882
|
+
*/
|
|
799
883
|
network: pulumi.Input<string>;
|
|
800
884
|
}
|
|
801
885
|
export interface KafkaKafkaUserConfigKafka {
|
|
886
|
+
/**
|
|
887
|
+
* Enable auto creation of topics.
|
|
888
|
+
*/
|
|
802
889
|
autoCreateTopicsEnable?: pulumi.Input<boolean>;
|
|
890
|
+
/**
|
|
891
|
+
* Specify the final compression type for a given topic. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'uncompressed' which is equivalent to no compression; and 'producer' which means retain the original compression codec set by the producer.
|
|
892
|
+
*/
|
|
803
893
|
compressionType?: pulumi.Input<string>;
|
|
894
|
+
/**
|
|
895
|
+
* Idle connections timeout: the server socket processor threads close the connections that idle for longer than this.
|
|
896
|
+
*/
|
|
804
897
|
connectionsMaxIdleMs?: pulumi.Input<number>;
|
|
898
|
+
/**
|
|
899
|
+
* Replication factor for autocreated topics.
|
|
900
|
+
*/
|
|
805
901
|
defaultReplicationFactor?: pulumi.Input<number>;
|
|
902
|
+
/**
|
|
903
|
+
* The amount of time, in milliseconds, the group coordinator will wait for more consumers to join a new group before performing the first rebalance. A longer delay means potentially fewer rebalances, but increases the time until processing begins. The default value for this is 3 seconds. During development and testing it might be desirable to set this to 0 in order to not delay test execution time.
|
|
904
|
+
*/
|
|
806
905
|
groupInitialRebalanceDelayMs?: pulumi.Input<number>;
|
|
906
|
+
/**
|
|
907
|
+
* The maximum allowed session timeout for registered consumers. Longer timeouts give consumers more time to process messages in between heartbeats at the cost of a longer time to detect failures.
|
|
908
|
+
*/
|
|
807
909
|
groupMaxSessionTimeoutMs?: pulumi.Input<number>;
|
|
910
|
+
/**
|
|
911
|
+
* The minimum allowed session timeout for registered consumers. Longer timeouts give consumers more time to process messages in between heartbeats at the cost of a longer time to detect failures.
|
|
912
|
+
*/
|
|
808
913
|
groupMinSessionTimeoutMs?: pulumi.Input<number>;
|
|
914
|
+
/**
|
|
915
|
+
* How long are delete records retained?.
|
|
916
|
+
*/
|
|
809
917
|
logCleanerDeleteRetentionMs?: pulumi.Input<number>;
|
|
918
|
+
/**
|
|
919
|
+
* The maximum amount of time message will remain uncompacted. Only applicable for logs that are being compacted.
|
|
920
|
+
*/
|
|
810
921
|
logCleanerMaxCompactionLagMs?: pulumi.Input<number>;
|
|
922
|
+
/**
|
|
923
|
+
* Controls log compactor frequency. Larger value means more frequent compactions but also more space wasted for logs. Consider setting log.cleaner.max.compaction.lag.ms to enforce compactions sooner, instead of setting a very high value for this option.
|
|
924
|
+
*/
|
|
811
925
|
logCleanerMinCleanableRatio?: pulumi.Input<number>;
|
|
926
|
+
/**
|
|
927
|
+
* The minimum time a message will remain uncompacted in the log. Only applicable for logs that are being compacted.
|
|
928
|
+
*/
|
|
812
929
|
logCleanerMinCompactionLagMs?: pulumi.Input<number>;
|
|
930
|
+
/**
|
|
931
|
+
* The default cleanup policy for segments beyond the retention window.
|
|
932
|
+
*/
|
|
813
933
|
logCleanupPolicy?: pulumi.Input<string>;
|
|
934
|
+
/**
|
|
935
|
+
* The number of messages accumulated on a log partition before messages are flushed to disk.
|
|
936
|
+
*/
|
|
814
937
|
logFlushIntervalMessages?: pulumi.Input<number>;
|
|
938
|
+
/**
|
|
939
|
+
* The maximum time in ms that a message in any topic is kept in memory before flushed to disk. If not set, the value in log.flush.scheduler.interval.ms is used.
|
|
940
|
+
*/
|
|
815
941
|
logFlushIntervalMs?: pulumi.Input<number>;
|
|
942
|
+
/**
|
|
943
|
+
* The interval with which Kafka adds an entry to the offset index.
|
|
944
|
+
*/
|
|
816
945
|
logIndexIntervalBytes?: pulumi.Input<number>;
|
|
946
|
+
/**
|
|
947
|
+
* The maximum size in bytes of the offset index.
|
|
948
|
+
*/
|
|
817
949
|
logIndexSizeMaxBytes?: pulumi.Input<number>;
|
|
950
|
+
/**
|
|
951
|
+
* This configuration controls whether down-conversion of message formats is enabled to satisfy consume requests. .
|
|
952
|
+
*/
|
|
818
953
|
logMessageDownconversionEnable?: pulumi.Input<boolean>;
|
|
954
|
+
/**
|
|
955
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message.
|
|
956
|
+
*/
|
|
819
957
|
logMessageTimestampDifferenceMaxMs?: pulumi.Input<number>;
|
|
958
|
+
/**
|
|
959
|
+
* Define whether the timestamp in the message is message create time or log append time.
|
|
960
|
+
*/
|
|
820
961
|
logMessageTimestampType?: pulumi.Input<string>;
|
|
962
|
+
/**
|
|
963
|
+
* Should pre allocate file when create new segment?.
|
|
964
|
+
*/
|
|
821
965
|
logPreallocate?: pulumi.Input<boolean>;
|
|
966
|
+
/**
|
|
967
|
+
* The maximum size of the log before deleting messages.
|
|
968
|
+
*/
|
|
822
969
|
logRetentionBytes?: pulumi.Input<number>;
|
|
970
|
+
/**
|
|
971
|
+
* The number of hours to keep a log file before deleting it.
|
|
972
|
+
*/
|
|
823
973
|
logRetentionHours?: pulumi.Input<number>;
|
|
974
|
+
/**
|
|
975
|
+
* The number of milliseconds to keep a log file before deleting it (in milliseconds), If not set, the value in log.retention.minutes is used. If set to -1, no time limit is applied.
|
|
976
|
+
*/
|
|
824
977
|
logRetentionMs?: pulumi.Input<number>;
|
|
978
|
+
/**
|
|
979
|
+
* The maximum jitter to subtract from logRollTimeMillis (in milliseconds). If not set, the value in log.roll.jitter.hours is used.
|
|
980
|
+
*/
|
|
825
981
|
logRollJitterMs?: pulumi.Input<number>;
|
|
982
|
+
/**
|
|
983
|
+
* The maximum time before a new log segment is rolled out (in milliseconds).
|
|
984
|
+
*/
|
|
826
985
|
logRollMs?: pulumi.Input<number>;
|
|
986
|
+
/**
|
|
987
|
+
* The maximum size of a single log file.
|
|
988
|
+
*/
|
|
827
989
|
logSegmentBytes?: pulumi.Input<number>;
|
|
990
|
+
/**
|
|
991
|
+
* The amount of time to wait before deleting a file from the filesystem.
|
|
992
|
+
*/
|
|
828
993
|
logSegmentDeleteDelayMs?: pulumi.Input<number>;
|
|
994
|
+
/**
|
|
995
|
+
* The maximum number of connections allowed from each ip address (defaults to 2147483647).
|
|
996
|
+
*/
|
|
829
997
|
maxConnectionsPerIp?: pulumi.Input<number>;
|
|
998
|
+
/**
|
|
999
|
+
* The maximum number of incremental fetch sessions that the broker will maintain.
|
|
1000
|
+
*/
|
|
830
1001
|
maxIncrementalFetchSessionCacheSlots?: pulumi.Input<number>;
|
|
1002
|
+
/**
|
|
1003
|
+
* The maximum size of message that the server can receive.
|
|
1004
|
+
*/
|
|
831
1005
|
messageMaxBytes?: pulumi.Input<number>;
|
|
1006
|
+
/**
|
|
1007
|
+
* When a producer sets acks to 'all' (or '-1'), min.insync.replicas specifies the minimum number of replicas that must acknowledge a write for the write to be considered successful.
|
|
1008
|
+
*/
|
|
832
1009
|
minInsyncReplicas?: pulumi.Input<number>;
|
|
1010
|
+
/**
|
|
1011
|
+
* Number of partitions for autocreated topics.
|
|
1012
|
+
*/
|
|
833
1013
|
numPartitions?: pulumi.Input<number>;
|
|
1014
|
+
/**
|
|
1015
|
+
* Log retention window in minutes for offsets topic.
|
|
1016
|
+
*/
|
|
834
1017
|
offsetsRetentionMinutes?: pulumi.Input<number>;
|
|
1018
|
+
/**
|
|
1019
|
+
* The purge interval (in number of requests) of the producer request purgatory(defaults to 1000).
|
|
1020
|
+
*/
|
|
835
1021
|
producerPurgatoryPurgeIntervalRequests?: pulumi.Input<number>;
|
|
1022
|
+
/**
|
|
1023
|
+
* The number of bytes of messages to attempt to fetch for each partition (defaults to 1048576). This is not an absolute maximum, if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that progress can be made.
|
|
1024
|
+
*/
|
|
836
1025
|
replicaFetchMaxBytes?: pulumi.Input<number>;
|
|
1026
|
+
/**
|
|
1027
|
+
* Maximum bytes expected for the entire fetch response (defaults to 10485760). Records are fetched in batches, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that progress can be made. As such, this is not an absolute maximum.
|
|
1028
|
+
*/
|
|
837
1029
|
replicaFetchResponseMaxBytes?: pulumi.Input<number>;
|
|
1030
|
+
/**
|
|
1031
|
+
* The maximum number of bytes in a socket request (defaults to 104857600).
|
|
1032
|
+
*/
|
|
838
1033
|
socketRequestMaxBytes?: pulumi.Input<number>;
|
|
1034
|
+
/**
|
|
1035
|
+
* The interval at which to remove transactions that have expired due to transactional.id.expiration.ms passing (defaults to 3600000 (1 hour)).
|
|
1036
|
+
*/
|
|
839
1037
|
transactionRemoveExpiredTransactionCleanupIntervalMs?: pulumi.Input<number>;
|
|
1038
|
+
/**
|
|
1039
|
+
* The transaction topic segment bytes should be kept relatively small in order to facilitate faster log compaction and cache loads (defaults to 104857600 (100 mebibytes)).
|
|
1040
|
+
*/
|
|
840
1041
|
transactionStateLogSegmentBytes?: pulumi.Input<number>;
|
|
841
1042
|
}
|
|
842
1043
|
export interface KafkaKafkaUserConfigKafkaAuthenticationMethods {
|
|
1044
|
+
/**
|
|
1045
|
+
* Enable certificate/SSL authentication. The default value is `true`.
|
|
1046
|
+
*/
|
|
843
1047
|
certificate?: pulumi.Input<boolean>;
|
|
1048
|
+
/**
|
|
1049
|
+
* Enable SASL authentication. The default value is `false`.
|
|
1050
|
+
*/
|
|
844
1051
|
sasl?: pulumi.Input<boolean>;
|
|
845
1052
|
}
|
|
846
1053
|
export interface KafkaKafkaUserConfigKafkaConnectConfig {
|
|
1054
|
+
/**
|
|
1055
|
+
* Defines what client configurations can be overridden by the connector. Default is None.
|
|
1056
|
+
*/
|
|
847
1057
|
connectorClientConfigOverridePolicy?: pulumi.Input<string>;
|
|
1058
|
+
/**
|
|
1059
|
+
* What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server. Default is earliest.
|
|
1060
|
+
*/
|
|
848
1061
|
consumerAutoOffsetReset?: pulumi.Input<string>;
|
|
1062
|
+
/**
|
|
1063
|
+
* Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum.
|
|
1064
|
+
*/
|
|
849
1065
|
consumerFetchMaxBytes?: pulumi.Input<number>;
|
|
1066
|
+
/**
|
|
1067
|
+
* Transaction read isolation level. read*uncommitted is the default, but read*committed can be used if consume-exactly-once behavior is desired.
|
|
1068
|
+
*/
|
|
850
1069
|
consumerIsolationLevel?: pulumi.Input<string>;
|
|
1070
|
+
/**
|
|
1071
|
+
* Records are fetched in batches by the consumer.If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress. .
|
|
1072
|
+
*/
|
|
851
1073
|
consumerMaxPartitionFetchBytes?: pulumi.Input<number>;
|
|
1074
|
+
/**
|
|
1075
|
+
* The maximum delay in milliseconds between invocations of poll() when using consumer group management (defaults to 300000).
|
|
1076
|
+
*/
|
|
852
1077
|
consumerMaxPollIntervalMs?: pulumi.Input<number>;
|
|
1078
|
+
/**
|
|
1079
|
+
* The maximum number of records returned in a single call to poll() (defaults to 500).
|
|
1080
|
+
*/
|
|
853
1081
|
consumerMaxPollRecords?: pulumi.Input<number>;
|
|
1082
|
+
/**
|
|
1083
|
+
* The interval at which to try committing offsets for tasks (defaults to 60000).
|
|
1084
|
+
*/
|
|
854
1085
|
offsetFlushIntervalMs?: pulumi.Input<number>;
|
|
1086
|
+
/**
|
|
1087
|
+
* Maximum number of milliseconds to wait for records to flush and partition offset data to be committed to offset storage before cancelling the process and restoring the offset data to be committed in a future attempt (defaults to 5000).
|
|
1088
|
+
*/
|
|
855
1089
|
offsetFlushTimeoutMs?: pulumi.Input<number>;
|
|
1090
|
+
/**
|
|
1091
|
+
* This setting gives the upper bound of the batch size to be sent. If there are fewer than this many bytes accumulated for this partition, the producer will 'linger' for the linger.ms time waiting for more records to show up. A batch size of zero will disable batching entirely (defaults to 16384).
|
|
1092
|
+
*/
|
|
856
1093
|
producerBatchSize?: pulumi.Input<number>;
|
|
1094
|
+
/**
|
|
1095
|
+
* The total bytes of memory the producer can use to buffer records waiting to be sent to the broker (defaults to 33554432).
|
|
1096
|
+
*/
|
|
857
1097
|
producerBufferMemory?: pulumi.Input<number>;
|
|
1098
|
+
/**
|
|
1099
|
+
* Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
1100
|
+
*/
|
|
858
1101
|
producerCompressionType?: pulumi.Input<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
|
|
1104
|
+
*/
|
|
859
1105
|
producerLingerMs?: pulumi.Input<number>;
|
|
1106
|
+
/**
|
|
1107
|
+
* This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
|
|
1108
|
+
*/
|
|
860
1109
|
producerMaxRequestSize?: pulumi.Input<number>;
|
|
1110
|
+
/**
|
|
1111
|
+
* The maximum delay that is scheduled in order to wait for the return of one or more departed workers before rebalancing and reassigning their connectors and tasks to the group. During this period the connectors and tasks of the departed workers remain unassigned. Defaults to 5 minutes.
|
|
1112
|
+
*/
|
|
861
1113
|
scheduledRebalanceMaxDelayMs?: pulumi.Input<number>;
|
|
1114
|
+
/**
|
|
1115
|
+
* The timeout in milliseconds used to detect failures when using Kafka’s group management facilities (defaults to 10000).
|
|
1116
|
+
*/
|
|
862
1117
|
sessionTimeoutMs?: pulumi.Input<number>;
|
|
863
1118
|
}
|
|
864
1119
|
export interface KafkaKafkaUserConfigKafkaRestConfig {
|
|
1120
|
+
/**
|
|
1121
|
+
* If true the consumer's offset will be periodically committed to Kafka in the background. The default value is `true`.
|
|
1122
|
+
*/
|
|
865
1123
|
consumerEnableAutoCommit?: pulumi.Input<boolean>;
|
|
1124
|
+
/**
|
|
1125
|
+
* Maximum number of bytes in unencoded message keys and values by a single request. The default value is `67108864`.
|
|
1126
|
+
*/
|
|
866
1127
|
consumerRequestMaxBytes?: pulumi.Input<number>;
|
|
1128
|
+
/**
|
|
1129
|
+
* The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
1130
|
+
*/
|
|
867
1131
|
consumerRequestTimeoutMs?: pulumi.Input<number>;
|
|
1132
|
+
/**
|
|
1133
|
+
* The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
|
|
1134
|
+
*/
|
|
868
1135
|
producerAcks?: pulumi.Input<string>;
|
|
1136
|
+
/**
|
|
1137
|
+
* Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
1138
|
+
*/
|
|
869
1139
|
producerCompressionType?: pulumi.Input<string>;
|
|
1140
|
+
/**
|
|
1141
|
+
* This setting gives the upper bound on the delay for batching: once there is batch.size worth of records for a partition it will be sent immediately regardless of this setting, however if there are fewer than this many bytes accumulated for this partition the producer will 'linger' for the specified time waiting for more records to show up. Defaults to 0.
|
|
1142
|
+
*/
|
|
870
1143
|
producerLingerMs?: pulumi.Input<number>;
|
|
1144
|
+
/**
|
|
1145
|
+
* This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
|
|
1146
|
+
*/
|
|
871
1147
|
producerMaxRequestSize?: pulumi.Input<number>;
|
|
1148
|
+
/**
|
|
1149
|
+
* Maximum number of SimpleConsumers that can be instantiated per broker. The default value is `25`.
|
|
1150
|
+
*/
|
|
872
1151
|
simpleconsumerPoolSizeMax?: pulumi.Input<number>;
|
|
873
1152
|
}
|
|
874
1153
|
export interface KafkaKafkaUserConfigPrivateAccess {
|
|
875
1154
|
/**
|
|
876
|
-
* Kafka
|
|
1155
|
+
* Kafka broker configuration values.
|
|
877
1156
|
*/
|
|
878
1157
|
kafka?: pulumi.Input<boolean>;
|
|
1158
|
+
/**
|
|
1159
|
+
* Enable Kafka Connect service. The default value is `false`.
|
|
1160
|
+
*/
|
|
879
1161
|
kafkaConnect?: pulumi.Input<boolean>;
|
|
1162
|
+
/**
|
|
1163
|
+
* Enable Kafka-REST service. The default value is `false`.
|
|
1164
|
+
*/
|
|
880
1165
|
kafkaRest?: pulumi.Input<boolean>;
|
|
1166
|
+
/**
|
|
1167
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1168
|
+
*/
|
|
881
1169
|
prometheus?: pulumi.Input<boolean>;
|
|
1170
|
+
/**
|
|
1171
|
+
* Allow clients to connect to schemaRegistry with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1172
|
+
*/
|
|
882
1173
|
schemaRegistry?: pulumi.Input<boolean>;
|
|
883
1174
|
}
|
|
884
1175
|
export interface KafkaKafkaUserConfigPrivatelinkAccess {
|
|
1176
|
+
/**
|
|
1177
|
+
* Enable jolokia.
|
|
1178
|
+
*/
|
|
885
1179
|
jolokia?: pulumi.Input<boolean>;
|
|
886
1180
|
/**
|
|
887
|
-
* Kafka
|
|
1181
|
+
* Kafka broker configuration values.
|
|
888
1182
|
*/
|
|
889
1183
|
kafka?: pulumi.Input<boolean>;
|
|
1184
|
+
/**
|
|
1185
|
+
* Enable Kafka Connect service. The default value is `false`.
|
|
1186
|
+
*/
|
|
890
1187
|
kafkaConnect?: pulumi.Input<boolean>;
|
|
1188
|
+
/**
|
|
1189
|
+
* Enable Kafka-REST service. The default value is `false`.
|
|
1190
|
+
*/
|
|
891
1191
|
kafkaRest?: pulumi.Input<boolean>;
|
|
1192
|
+
/**
|
|
1193
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1194
|
+
*/
|
|
892
1195
|
prometheus?: pulumi.Input<boolean>;
|
|
1196
|
+
/**
|
|
1197
|
+
* Allow clients to connect to schemaRegistry with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1198
|
+
*/
|
|
893
1199
|
schemaRegistry?: pulumi.Input<boolean>;
|
|
894
1200
|
}
|
|
895
1201
|
export interface KafkaKafkaUserConfigPublicAccess {
|
|
896
1202
|
/**
|
|
897
|
-
* Kafka
|
|
1203
|
+
* Kafka broker configuration values.
|
|
898
1204
|
*/
|
|
899
1205
|
kafka?: pulumi.Input<boolean>;
|
|
1206
|
+
/**
|
|
1207
|
+
* Enable Kafka Connect service. The default value is `false`.
|
|
1208
|
+
*/
|
|
900
1209
|
kafkaConnect?: pulumi.Input<boolean>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Enable Kafka-REST service. The default value is `false`.
|
|
1212
|
+
*/
|
|
901
1213
|
kafkaRest?: pulumi.Input<boolean>;
|
|
1214
|
+
/**
|
|
1215
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1216
|
+
*/
|
|
902
1217
|
prometheus?: pulumi.Input<boolean>;
|
|
1218
|
+
/**
|
|
1219
|
+
* Allow clients to connect to schemaRegistry with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
1220
|
+
*/
|
|
903
1221
|
schemaRegistry?: pulumi.Input<boolean>;
|
|
904
1222
|
}
|
|
905
1223
|
export interface KafkaKafkaUserConfigSchemaRegistryConfig {
|
|
1224
|
+
/**
|
|
1225
|
+
* If true, Karapace / Schema Registry on the service nodes can participate in leader election. It might be needed to disable this when the schemas topic is replicated to a secondary cluster and Karapace / Schema Registry there must not participate in leader election. Defaults to `true`.
|
|
1226
|
+
*/
|
|
906
1227
|
leaderEligibility?: pulumi.Input<boolean>;
|
|
1228
|
+
/**
|
|
1229
|
+
* The durable single partition topic that acts as the durable log for the data. This topic must be compacted to avoid losing data due to retention policy. Please note that changing this configuration in an existing Schema Registry / Karapace setup leads to previous schemas being inaccessible, data encoded with them potentially unreadable and schema ID sequence put out of order. It's only possible to do the switch while Schema Registry / Karapace is disabled. Defaults to `_schemas`.
|
|
1230
|
+
*/
|
|
907
1231
|
topicName?: pulumi.Input<string>;
|
|
908
1232
|
}
|
|
909
1233
|
export interface KafkaMirrorMakerComponent {
|
|
@@ -1444,102 +1768,303 @@ export interface OpenSearchOpensearchUserConfig {
|
|
|
1444
1768
|
staticIps?: pulumi.Input<boolean>;
|
|
1445
1769
|
}
|
|
1446
1770
|
export interface OpenSearchOpensearchUserConfigIndexPattern {
|
|
1771
|
+
/**
|
|
1772
|
+
* Maximum number of indexes to keep.
|
|
1773
|
+
*/
|
|
1447
1774
|
maxIndexCount: pulumi.Input<number>;
|
|
1775
|
+
/**
|
|
1776
|
+
* fnmatch pattern.
|
|
1777
|
+
*/
|
|
1448
1778
|
pattern: pulumi.Input<string>;
|
|
1779
|
+
/**
|
|
1780
|
+
* Deletion sorting algorithm. The default value is `creationDate`.
|
|
1781
|
+
*/
|
|
1449
1782
|
sortingAlgorithm?: pulumi.Input<string>;
|
|
1450
1783
|
}
|
|
1451
1784
|
export interface OpenSearchOpensearchUserConfigIndexTemplate {
|
|
1785
|
+
/**
|
|
1786
|
+
* The maximum number of nested JSON objects that a single document can contain across all nested types. This limit helps to prevent out of memory errors when a document contains too many nested objects. Default is 10000.
|
|
1787
|
+
*/
|
|
1452
1788
|
mappingNestedObjectsLimit?: pulumi.Input<number>;
|
|
1789
|
+
/**
|
|
1790
|
+
* The number of replicas each primary shard has.
|
|
1791
|
+
*/
|
|
1453
1792
|
numberOfReplicas?: pulumi.Input<number>;
|
|
1793
|
+
/**
|
|
1794
|
+
* The number of primary shards that an index should have.
|
|
1795
|
+
*/
|
|
1454
1796
|
numberOfShards?: pulumi.Input<number>;
|
|
1455
1797
|
}
|
|
1456
1798
|
export interface OpenSearchOpensearchUserConfigIpFilterObject {
|
|
1799
|
+
/**
|
|
1800
|
+
* Description for IP filter list entry.
|
|
1801
|
+
*/
|
|
1457
1802
|
description?: pulumi.Input<string>;
|
|
1803
|
+
/**
|
|
1804
|
+
* CIDR address block.
|
|
1805
|
+
*/
|
|
1458
1806
|
network: pulumi.Input<string>;
|
|
1459
1807
|
}
|
|
1460
1808
|
export interface OpenSearchOpensearchUserConfigOpenid {
|
|
1809
|
+
/**
|
|
1810
|
+
* The ID of the OpenID Connect client configured in your IdP. Required.
|
|
1811
|
+
*/
|
|
1461
1812
|
clientId: pulumi.Input<string>;
|
|
1813
|
+
/**
|
|
1814
|
+
* The client secret of the OpenID Connect client configured in your IdP. Required.
|
|
1815
|
+
*/
|
|
1462
1816
|
clientSecret: pulumi.Input<string>;
|
|
1817
|
+
/**
|
|
1818
|
+
* The URL of your IdP where the Security plugin can find the OpenID Connect metadata/configuration settings.
|
|
1819
|
+
*/
|
|
1463
1820
|
connectUrl: pulumi.Input<string>;
|
|
1821
|
+
/**
|
|
1822
|
+
* Enables or disables OpenID Connect authentication for OpenSearch. When enabled, users can authenticate using OpenID Connect with an Identity Provider. The default value is `true`.
|
|
1823
|
+
*/
|
|
1464
1824
|
enabled?: pulumi.Input<boolean>;
|
|
1825
|
+
/**
|
|
1826
|
+
* HTTP header name of the JWT token. Optional. Default is Authorization. The default value is `Authorization`.
|
|
1827
|
+
*/
|
|
1465
1828
|
header?: pulumi.Input<string>;
|
|
1829
|
+
/**
|
|
1830
|
+
* The HTTP header that stores the token. Typically the Authorization header with the Bearer schema: Authorization: Bearer \n\n. Optional. Default is Authorization.
|
|
1831
|
+
*/
|
|
1466
1832
|
jwtHeader?: pulumi.Input<string>;
|
|
1833
|
+
/**
|
|
1834
|
+
* If the token is not transmitted in the HTTP header, but as an URL parameter, define the name of the parameter here. Optional.
|
|
1835
|
+
*/
|
|
1467
1836
|
jwtUrlParameter?: pulumi.Input<string>;
|
|
1837
|
+
/**
|
|
1838
|
+
* The maximum number of unknown key IDs in the time frame. Default is 10. Optional. The default value is `10`.
|
|
1839
|
+
*/
|
|
1468
1840
|
refreshRateLimitCount?: pulumi.Input<number>;
|
|
1841
|
+
/**
|
|
1842
|
+
* The time frame to use when checking the maximum number of unknown key IDs, in milliseconds. Optional.Default is 10000 (10 seconds). The default value is `10000`.
|
|
1843
|
+
*/
|
|
1469
1844
|
refreshRateLimitTimeWindowMs?: pulumi.Input<number>;
|
|
1845
|
+
/**
|
|
1846
|
+
* The key in the JSON payload that stores the user’s roles. The value of this key must be a comma-separated list of roles. Required only if you want to use roles in the JWT.
|
|
1847
|
+
*/
|
|
1470
1848
|
rolesKey?: pulumi.Input<string>;
|
|
1849
|
+
/**
|
|
1850
|
+
* The scope of the identity token issued by the IdP. Optional. Default is openid profile email address phone.
|
|
1851
|
+
*/
|
|
1471
1852
|
scope?: pulumi.Input<string>;
|
|
1853
|
+
/**
|
|
1854
|
+
* The key in the JSON payload that stores the user’s name. If not defined, the subject registered claim is used. Most IdP providers use the preferredUsername claim. Optional.
|
|
1855
|
+
*/
|
|
1472
1856
|
subjectKey?: pulumi.Input<string>;
|
|
1473
1857
|
}
|
|
1474
1858
|
export interface OpenSearchOpensearchUserConfigOpensearch {
|
|
1859
|
+
/**
|
|
1860
|
+
* Explicitly allow or block automatic creation of indices. Defaults to true.
|
|
1861
|
+
*/
|
|
1475
1862
|
actionAutoCreateIndexEnabled?: pulumi.Input<boolean>;
|
|
1863
|
+
/**
|
|
1864
|
+
* Require explicit index names when deleting.
|
|
1865
|
+
*/
|
|
1476
1866
|
actionDestructiveRequiresName?: pulumi.Input<boolean>;
|
|
1867
|
+
/**
|
|
1868
|
+
* Controls the number of shards allowed in the cluster per data node.
|
|
1869
|
+
*/
|
|
1477
1870
|
clusterMaxShardsPerNode?: pulumi.Input<number>;
|
|
1871
|
+
/**
|
|
1872
|
+
* How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to 2.
|
|
1873
|
+
*/
|
|
1478
1874
|
clusterRoutingAllocationNodeConcurrentRecoveries?: pulumi.Input<number>;
|
|
1875
|
+
/**
|
|
1876
|
+
* This should be identical to the Sender name defined in Opensearch dashboards.
|
|
1877
|
+
*/
|
|
1479
1878
|
emailSenderName?: pulumi.Input<string>;
|
|
1879
|
+
/**
|
|
1880
|
+
* Sender password for Opensearch alerts to authenticate with SMTP server.
|
|
1881
|
+
*/
|
|
1480
1882
|
emailSenderPassword?: pulumi.Input<string>;
|
|
1883
|
+
/**
|
|
1884
|
+
* Sender username for Opensearch alerts.
|
|
1885
|
+
*/
|
|
1481
1886
|
emailSenderUsername?: pulumi.Input<string>;
|
|
1887
|
+
/**
|
|
1888
|
+
* Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
1889
|
+
*/
|
|
1482
1890
|
httpMaxContentLength?: pulumi.Input<number>;
|
|
1891
|
+
/**
|
|
1892
|
+
* The max size of allowed headers, in bytes.
|
|
1893
|
+
*/
|
|
1483
1894
|
httpMaxHeaderSize?: pulumi.Input<number>;
|
|
1895
|
+
/**
|
|
1896
|
+
* The max length of an HTTP URL, in bytes.
|
|
1897
|
+
*/
|
|
1484
1898
|
httpMaxInitialLineLength?: pulumi.Input<number>;
|
|
1899
|
+
/**
|
|
1900
|
+
* Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
|
|
1901
|
+
*/
|
|
1485
1902
|
indicesFielddataCacheSize?: pulumi.Input<number>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Percentage value. Default is 10%. Total amount of heap used for indexing buffer, before writing segments to disk. This is an expert setting. Too low value will slow down indexing; too high value will increase indexing performance but causes performance issues for query performance.
|
|
1905
|
+
*/
|
|
1486
1906
|
indicesMemoryIndexBufferSize?: pulumi.Input<number>;
|
|
1907
|
+
/**
|
|
1908
|
+
* Percentage value. Default is 10%. Maximum amount of heap used for query cache. This is an expert setting. Too low value will decrease query performance and increase performance for other operations; too high value will cause issues with other OpenSearch functionality.
|
|
1909
|
+
*/
|
|
1487
1910
|
indicesQueriesCacheSize?: pulumi.Input<number>;
|
|
1911
|
+
/**
|
|
1912
|
+
* Maximum number of clauses Lucene BooleanQuery can have. The default value (1024) is relatively high, and increasing it may cause performance issues. Investigate other approaches first before increasing this value.
|
|
1913
|
+
*/
|
|
1488
1914
|
indicesQueryBoolMaxClauseCount?: pulumi.Input<number>;
|
|
1915
|
+
/**
|
|
1916
|
+
* Limits total inbound and outbound recovery traffic for each node. Applies to both peer recoveries as well as snapshot recoveries (i.e., restores from a snapshot). Defaults to 40mb.
|
|
1917
|
+
*/
|
|
1489
1918
|
indicesRecoveryMaxBytesPerSec?: pulumi.Input<number>;
|
|
1919
|
+
/**
|
|
1920
|
+
* Number of file chunks sent in parallel for each recovery. Defaults to 2.
|
|
1921
|
+
*/
|
|
1490
1922
|
indicesRecoveryMaxConcurrentFileChunks?: pulumi.Input<number>;
|
|
1923
|
+
/**
|
|
1924
|
+
* Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
|
|
1925
|
+
*/
|
|
1491
1926
|
overrideMainResponseVersion?: pulumi.Input<boolean>;
|
|
1927
|
+
/**
|
|
1928
|
+
* Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
|
|
1929
|
+
*/
|
|
1492
1930
|
reindexRemoteWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1931
|
+
/**
|
|
1932
|
+
* Script compilation circuit breaker limits the number of inline script compilations within a period of time. Default is use-context.
|
|
1933
|
+
*/
|
|
1493
1934
|
scriptMaxCompilationsRate?: pulumi.Input<string>;
|
|
1935
|
+
/**
|
|
1936
|
+
* Maximum number of aggregation buckets allowed in a single response. OpenSearch default value is used when this is not defined.
|
|
1937
|
+
*/
|
|
1494
1938
|
searchMaxBuckets?: pulumi.Input<number>;
|
|
1939
|
+
/**
|
|
1940
|
+
* Size for the thread pool queue. See documentation for exact details.
|
|
1941
|
+
*/
|
|
1495
1942
|
threadPoolAnalyzeQueueSize?: pulumi.Input<number>;
|
|
1943
|
+
/**
|
|
1944
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1945
|
+
*/
|
|
1496
1946
|
threadPoolAnalyzeSize?: pulumi.Input<number>;
|
|
1947
|
+
/**
|
|
1948
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1949
|
+
*/
|
|
1497
1950
|
threadPoolForceMergeSize?: pulumi.Input<number>;
|
|
1951
|
+
/**
|
|
1952
|
+
* Size for the thread pool queue. See documentation for exact details.
|
|
1953
|
+
*/
|
|
1498
1954
|
threadPoolGetQueueSize?: pulumi.Input<number>;
|
|
1955
|
+
/**
|
|
1956
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1957
|
+
*/
|
|
1499
1958
|
threadPoolGetSize?: pulumi.Input<number>;
|
|
1959
|
+
/**
|
|
1960
|
+
* Size for the thread pool queue. See documentation for exact details.
|
|
1961
|
+
*/
|
|
1500
1962
|
threadPoolSearchQueueSize?: pulumi.Input<number>;
|
|
1963
|
+
/**
|
|
1964
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1965
|
+
*/
|
|
1501
1966
|
threadPoolSearchSize?: pulumi.Input<number>;
|
|
1967
|
+
/**
|
|
1968
|
+
* Size for the thread pool queue. See documentation for exact details.
|
|
1969
|
+
*/
|
|
1502
1970
|
threadPoolSearchThrottledQueueSize?: pulumi.Input<number>;
|
|
1971
|
+
/**
|
|
1972
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1973
|
+
*/
|
|
1503
1974
|
threadPoolSearchThrottledSize?: pulumi.Input<number>;
|
|
1975
|
+
/**
|
|
1976
|
+
* Size for the thread pool queue. See documentation for exact details.
|
|
1977
|
+
*/
|
|
1504
1978
|
threadPoolWriteQueueSize?: pulumi.Input<number>;
|
|
1979
|
+
/**
|
|
1980
|
+
* Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
1981
|
+
*/
|
|
1505
1982
|
threadPoolWriteSize?: pulumi.Input<number>;
|
|
1506
1983
|
}
|
|
1507
1984
|
export interface OpenSearchOpensearchUserConfigOpensearchDashboards {
|
|
1985
|
+
/**
|
|
1986
|
+
* Enables or disables OpenID Connect authentication for OpenSearch. When enabled, users can authenticate using OpenID Connect with an Identity Provider. The default value is `true`.
|
|
1987
|
+
*/
|
|
1508
1988
|
enabled?: pulumi.Input<boolean>;
|
|
1989
|
+
/**
|
|
1990
|
+
* Limits the maximum amount of memory (in MiB) the OpenSearch Dashboards process can use. This sets the max*old*space_size option of the nodejs running the OpenSearch Dashboards. Note: the memory reserved by OpenSearch Dashboards is not available for OpenSearch. The default value is `128`.
|
|
1991
|
+
*/
|
|
1509
1992
|
maxOldSpaceSize?: pulumi.Input<number>;
|
|
1993
|
+
/**
|
|
1994
|
+
* Timeout in milliseconds for requests made by OpenSearch Dashboards towards OpenSearch. The default value is `30000`.
|
|
1995
|
+
*/
|
|
1510
1996
|
opensearchRequestTimeout?: pulumi.Input<number>;
|
|
1511
1997
|
}
|
|
1512
1998
|
export interface OpenSearchOpensearchUserConfigPrivateAccess {
|
|
1513
1999
|
/**
|
|
1514
|
-
* OpenSearch
|
|
2000
|
+
* OpenSearch settings.
|
|
1515
2001
|
*/
|
|
1516
2002
|
opensearch?: pulumi.Input<boolean>;
|
|
2003
|
+
/**
|
|
2004
|
+
* OpenSearch Dashboards settings.
|
|
2005
|
+
*/
|
|
1517
2006
|
opensearchDashboards?: pulumi.Input<boolean>;
|
|
2007
|
+
/**
|
|
2008
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2009
|
+
*/
|
|
1518
2010
|
prometheus?: pulumi.Input<boolean>;
|
|
1519
2011
|
}
|
|
1520
2012
|
export interface OpenSearchOpensearchUserConfigPrivatelinkAccess {
|
|
1521
2013
|
/**
|
|
1522
|
-
* OpenSearch
|
|
2014
|
+
* OpenSearch settings.
|
|
1523
2015
|
*/
|
|
1524
2016
|
opensearch?: pulumi.Input<boolean>;
|
|
2017
|
+
/**
|
|
2018
|
+
* OpenSearch Dashboards settings.
|
|
2019
|
+
*/
|
|
1525
2020
|
opensearchDashboards?: pulumi.Input<boolean>;
|
|
2021
|
+
/**
|
|
2022
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2023
|
+
*/
|
|
1526
2024
|
prometheus?: pulumi.Input<boolean>;
|
|
1527
2025
|
}
|
|
1528
2026
|
export interface OpenSearchOpensearchUserConfigPublicAccess {
|
|
1529
2027
|
/**
|
|
1530
|
-
* OpenSearch
|
|
2028
|
+
* OpenSearch settings.
|
|
1531
2029
|
*/
|
|
1532
2030
|
opensearch?: pulumi.Input<boolean>;
|
|
2031
|
+
/**
|
|
2032
|
+
* OpenSearch Dashboards settings.
|
|
2033
|
+
*/
|
|
1533
2034
|
opensearchDashboards?: pulumi.Input<boolean>;
|
|
2035
|
+
/**
|
|
2036
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2037
|
+
*/
|
|
1534
2038
|
prometheus?: pulumi.Input<boolean>;
|
|
1535
2039
|
}
|
|
1536
2040
|
export interface OpenSearchOpensearchUserConfigSaml {
|
|
2041
|
+
/**
|
|
2042
|
+
* Enables or disables OpenID Connect authentication for OpenSearch. When enabled, users can authenticate using OpenID Connect with an Identity Provider. The default value is `true`.
|
|
2043
|
+
*/
|
|
1537
2044
|
enabled: pulumi.Input<boolean>;
|
|
2045
|
+
/**
|
|
2046
|
+
* The unique identifier for the Identity Provider (IdP) entity that is used for SAML authentication. This value is typically provided by the IdP.
|
|
2047
|
+
*/
|
|
1538
2048
|
idpEntityId: pulumi.Input<string>;
|
|
2049
|
+
/**
|
|
2050
|
+
* The URL of the SAML metadata for the Identity Provider (IdP). This is used to configure SAML-based authentication with the IdP.
|
|
2051
|
+
*/
|
|
1539
2052
|
idpMetadataUrl: pulumi.Input<string>;
|
|
2053
|
+
/**
|
|
2054
|
+
* This parameter specifies the PEM-encoded root certificate authority (CA) content for the SAML identity provider (IdP) server verification. The root CA content is used to verify the SSL/TLS certificate presented by the server.
|
|
2055
|
+
*/
|
|
1540
2056
|
idpPemtrustedcasContent?: pulumi.Input<string>;
|
|
2057
|
+
/**
|
|
2058
|
+
* The key in the JSON payload that stores the user’s roles. The value of this key must be a comma-separated list of roles. Required only if you want to use roles in the JWT.
|
|
2059
|
+
*/
|
|
1541
2060
|
rolesKey?: pulumi.Input<string>;
|
|
2061
|
+
/**
|
|
2062
|
+
* The unique identifier for the Service Provider (SP) entity that is used for SAML authentication. This value is typically provided by the SP.
|
|
2063
|
+
*/
|
|
1542
2064
|
spEntityId: pulumi.Input<string>;
|
|
2065
|
+
/**
|
|
2066
|
+
* The key in the JSON payload that stores the user’s name. If not defined, the subject registered claim is used. Most IdP providers use the preferredUsername claim. Optional.
|
|
2067
|
+
*/
|
|
1543
2068
|
subjectKey?: pulumi.Input<string>;
|
|
1544
2069
|
}
|
|
1545
2070
|
export interface OpenSearchServiceIntegration {
|
|
@@ -1752,109 +2277,328 @@ export interface PgPgUserConfig {
|
|
|
1752
2277
|
workMem?: pulumi.Input<number>;
|
|
1753
2278
|
}
|
|
1754
2279
|
export interface PgPgUserConfigIpFilterObject {
|
|
2280
|
+
/**
|
|
2281
|
+
* Description for IP filter list entry.
|
|
2282
|
+
*/
|
|
1755
2283
|
description?: pulumi.Input<string>;
|
|
2284
|
+
/**
|
|
2285
|
+
* CIDR address block.
|
|
2286
|
+
*/
|
|
1756
2287
|
network: pulumi.Input<string>;
|
|
1757
2288
|
}
|
|
1758
2289
|
export interface PgPgUserConfigMigration {
|
|
2290
|
+
/**
|
|
2291
|
+
* Primary PostgreSQL database name
|
|
2292
|
+
*/
|
|
1759
2293
|
dbname?: pulumi.Input<string>;
|
|
1760
2294
|
host: pulumi.Input<string>;
|
|
2295
|
+
/**
|
|
2296
|
+
* Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment).
|
|
2297
|
+
*/
|
|
1761
2298
|
ignoreDbs?: pulumi.Input<string>;
|
|
2299
|
+
/**
|
|
2300
|
+
* The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).
|
|
2301
|
+
*/
|
|
1762
2302
|
method?: pulumi.Input<string>;
|
|
2303
|
+
/**
|
|
2304
|
+
* PostgreSQL admin user password
|
|
2305
|
+
*/
|
|
1763
2306
|
password?: pulumi.Input<string>;
|
|
1764
2307
|
port: pulumi.Input<number>;
|
|
1765
2308
|
ssl?: pulumi.Input<boolean>;
|
|
2309
|
+
/**
|
|
2310
|
+
* User name for authentication with the server where to migrate data from.
|
|
2311
|
+
*/
|
|
1766
2312
|
username?: pulumi.Input<string>;
|
|
1767
2313
|
}
|
|
1768
2314
|
export interface PgPgUserConfigPg {
|
|
2315
|
+
/**
|
|
2316
|
+
* Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
|
|
2317
|
+
*/
|
|
1769
2318
|
autovacuumAnalyzeScaleFactor?: pulumi.Input<number>;
|
|
2319
|
+
/**
|
|
2320
|
+
* Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
|
|
2321
|
+
*/
|
|
1770
2322
|
autovacuumAnalyzeThreshold?: pulumi.Input<number>;
|
|
2323
|
+
/**
|
|
2324
|
+
* Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
|
|
2325
|
+
*/
|
|
1771
2326
|
autovacuumFreezeMaxAge?: pulumi.Input<number>;
|
|
2327
|
+
/**
|
|
2328
|
+
* Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
|
|
2329
|
+
*/
|
|
1772
2330
|
autovacuumMaxWorkers?: pulumi.Input<number>;
|
|
2331
|
+
/**
|
|
2332
|
+
* Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
|
|
2333
|
+
*/
|
|
1773
2334
|
autovacuumNaptime?: pulumi.Input<number>;
|
|
2335
|
+
/**
|
|
2336
|
+
* Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
|
|
2337
|
+
*/
|
|
1774
2338
|
autovacuumVacuumCostDelay?: pulumi.Input<number>;
|
|
2339
|
+
/**
|
|
2340
|
+
* Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum*cost*limit value will be used.
|
|
2341
|
+
*/
|
|
1775
2342
|
autovacuumVacuumCostLimit?: pulumi.Input<number>;
|
|
2343
|
+
/**
|
|
2344
|
+
* Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
|
|
2345
|
+
*/
|
|
1776
2346
|
autovacuumVacuumScaleFactor?: pulumi.Input<number>;
|
|
2347
|
+
/**
|
|
2348
|
+
* Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
|
|
2349
|
+
*/
|
|
1777
2350
|
autovacuumVacuumThreshold?: pulumi.Input<number>;
|
|
2351
|
+
/**
|
|
2352
|
+
* Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200.
|
|
2353
|
+
*/
|
|
1778
2354
|
bgwriterDelay?: pulumi.Input<number>;
|
|
2355
|
+
/**
|
|
2356
|
+
* Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
|
|
2357
|
+
*/
|
|
1779
2358
|
bgwriterFlushAfter?: pulumi.Input<number>;
|
|
2359
|
+
/**
|
|
2360
|
+
* In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
|
|
2361
|
+
*/
|
|
1780
2362
|
bgwriterLruMaxpages?: pulumi.Input<number>;
|
|
2363
|
+
/**
|
|
2364
|
+
* The average recent need for new buffers is multiplied by bgwriter*lru*multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter*lru*maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
|
|
2365
|
+
*/
|
|
1781
2366
|
bgwriterLruMultiplier?: pulumi.Input<number>;
|
|
2367
|
+
/**
|
|
2368
|
+
* This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
|
|
2369
|
+
*/
|
|
1782
2370
|
deadlockTimeout?: pulumi.Input<number>;
|
|
2371
|
+
/**
|
|
2372
|
+
* Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
2373
|
+
*/
|
|
1783
2374
|
defaultToastCompression?: pulumi.Input<string>;
|
|
2375
|
+
/**
|
|
2376
|
+
* Time out sessions with open transactions after this number of milliseconds.
|
|
2377
|
+
*/
|
|
1784
2378
|
idleInTransactionSessionTimeout?: pulumi.Input<number>;
|
|
2379
|
+
/**
|
|
2380
|
+
* Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
2381
|
+
*/
|
|
1785
2382
|
jit?: pulumi.Input<boolean>;
|
|
2383
|
+
/**
|
|
2384
|
+
* Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
|
|
2385
|
+
*/
|
|
1786
2386
|
logAutovacuumMinDuration?: pulumi.Input<number>;
|
|
2387
|
+
/**
|
|
2388
|
+
* Controls the amount of detail written in the server log for each message that is logged.
|
|
2389
|
+
*/
|
|
1787
2390
|
logErrorVerbosity?: pulumi.Input<string>;
|
|
2391
|
+
/**
|
|
2392
|
+
* Choose from one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze etc.
|
|
2393
|
+
*/
|
|
1788
2394
|
logLinePrefix?: pulumi.Input<string>;
|
|
2395
|
+
/**
|
|
2396
|
+
* Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
2397
|
+
*/
|
|
1789
2398
|
logMinDurationStatement?: pulumi.Input<number>;
|
|
2399
|
+
/**
|
|
2400
|
+
* Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
2401
|
+
*/
|
|
1790
2402
|
logTempFiles?: pulumi.Input<number>;
|
|
2403
|
+
/**
|
|
2404
|
+
* PostgreSQL maximum number of files that can be open per process.
|
|
2405
|
+
*/
|
|
1791
2406
|
maxFilesPerProcess?: pulumi.Input<number>;
|
|
2407
|
+
/**
|
|
2408
|
+
* PostgreSQL maximum locks per transaction.
|
|
2409
|
+
*/
|
|
1792
2410
|
maxLocksPerTransaction?: pulumi.Input<number>;
|
|
2411
|
+
/**
|
|
2412
|
+
* PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
|
|
2413
|
+
*/
|
|
1793
2414
|
maxLogicalReplicationWorkers?: pulumi.Input<number>;
|
|
2415
|
+
/**
|
|
2416
|
+
* Sets the maximum number of workers that the system can support for parallel queries.
|
|
2417
|
+
*/
|
|
1794
2418
|
maxParallelWorkers?: pulumi.Input<number>;
|
|
2419
|
+
/**
|
|
2420
|
+
* Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
2421
|
+
*/
|
|
1795
2422
|
maxParallelWorkersPerGather?: pulumi.Input<number>;
|
|
2423
|
+
/**
|
|
2424
|
+
* PostgreSQL maximum predicate locks per transaction.
|
|
2425
|
+
*/
|
|
1796
2426
|
maxPredLocksPerTransaction?: pulumi.Input<number>;
|
|
2427
|
+
/**
|
|
2428
|
+
* PostgreSQL maximum prepared transactions.
|
|
2429
|
+
*/
|
|
1797
2430
|
maxPreparedTransactions?: pulumi.Input<number>;
|
|
2431
|
+
/**
|
|
2432
|
+
* PostgreSQL maximum replication slots.
|
|
2433
|
+
*/
|
|
1798
2434
|
maxReplicationSlots?: pulumi.Input<number>;
|
|
2435
|
+
/**
|
|
2436
|
+
* PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
|
|
2437
|
+
*/
|
|
1799
2438
|
maxSlotWalKeepSize?: pulumi.Input<number>;
|
|
2439
|
+
/**
|
|
2440
|
+
* Maximum depth of the stack in bytes.
|
|
2441
|
+
*/
|
|
1800
2442
|
maxStackDepth?: pulumi.Input<number>;
|
|
2443
|
+
/**
|
|
2444
|
+
* Max standby archive delay in milliseconds.
|
|
2445
|
+
*/
|
|
1801
2446
|
maxStandbyArchiveDelay?: pulumi.Input<number>;
|
|
2447
|
+
/**
|
|
2448
|
+
* Max standby streaming delay in milliseconds.
|
|
2449
|
+
*/
|
|
1802
2450
|
maxStandbyStreamingDelay?: pulumi.Input<number>;
|
|
2451
|
+
/**
|
|
2452
|
+
* PostgreSQL maximum WAL senders.
|
|
2453
|
+
*/
|
|
1803
2454
|
maxWalSenders?: pulumi.Input<number>;
|
|
2455
|
+
/**
|
|
2456
|
+
* Sets the maximum number of background processes that the system can support.
|
|
2457
|
+
*/
|
|
1804
2458
|
maxWorkerProcesses?: pulumi.Input<number>;
|
|
2459
|
+
/**
|
|
2460
|
+
* Sets the time interval to run pg_partman's scheduled tasks.
|
|
2461
|
+
*/
|
|
1805
2462
|
pgPartmanBgwDotInterval?: pulumi.Input<number>;
|
|
2463
|
+
/**
|
|
2464
|
+
* Controls which role to use for pg_partman's scheduled background tasks.
|
|
2465
|
+
*/
|
|
1806
2466
|
pgPartmanBgwDotRole?: pulumi.Input<string>;
|
|
2467
|
+
/**
|
|
2468
|
+
* Enables or disables query plan monitoring.
|
|
2469
|
+
*/
|
|
1807
2470
|
pgStatMonitorDotPgsmEnableQueryPlan?: pulumi.Input<boolean>;
|
|
2471
|
+
/**
|
|
2472
|
+
* Sets the maximum number of buckets .
|
|
2473
|
+
*/
|
|
1808
2474
|
pgStatMonitorDotPgsmMaxBuckets?: pulumi.Input<number>;
|
|
2475
|
+
/**
|
|
2476
|
+
* Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
2477
|
+
*/
|
|
1809
2478
|
pgStatStatementsDotTrack?: pulumi.Input<string>;
|
|
2479
|
+
/**
|
|
2480
|
+
* PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
2481
|
+
*/
|
|
1810
2482
|
tempFileLimit?: pulumi.Input<number>;
|
|
2483
|
+
/**
|
|
2484
|
+
* PostgreSQL service timezone.
|
|
2485
|
+
*/
|
|
1811
2486
|
timezone?: pulumi.Input<string>;
|
|
2487
|
+
/**
|
|
2488
|
+
* Specifies the number of bytes reserved to track the currently executing command for each active session.
|
|
2489
|
+
*/
|
|
1812
2490
|
trackActivityQuerySize?: pulumi.Input<number>;
|
|
2491
|
+
/**
|
|
2492
|
+
* Record commit time of transactions.
|
|
2493
|
+
*/
|
|
1813
2494
|
trackCommitTimestamp?: pulumi.Input<string>;
|
|
2495
|
+
/**
|
|
2496
|
+
* Enables tracking of function call counts and time used.
|
|
2497
|
+
*/
|
|
1814
2498
|
trackFunctions?: pulumi.Input<string>;
|
|
2499
|
+
/**
|
|
2500
|
+
* Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
2501
|
+
*/
|
|
1815
2502
|
trackIoTiming?: pulumi.Input<string>;
|
|
2503
|
+
/**
|
|
2504
|
+
* Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
|
|
2505
|
+
*/
|
|
1816
2506
|
walSenderTimeout?: pulumi.Input<number>;
|
|
2507
|
+
/**
|
|
2508
|
+
* WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
|
|
2509
|
+
*/
|
|
1817
2510
|
walWriterDelay?: pulumi.Input<number>;
|
|
1818
2511
|
}
|
|
1819
2512
|
export interface PgPgUserConfigPgbouncer {
|
|
2513
|
+
/**
|
|
2514
|
+
* If the automatically created database pools have been unused this many seconds, they are freed. If 0 then timeout is disabled. (seconds).
|
|
2515
|
+
*/
|
|
1820
2516
|
autodbIdleTimeout?: pulumi.Input<number>;
|
|
2517
|
+
/**
|
|
2518
|
+
* Do not allow more than this many server connections per database (regardless of user). Setting it to 0 means unlimited.
|
|
2519
|
+
*/
|
|
1821
2520
|
autodbMaxDbConnections?: pulumi.Input<number>;
|
|
2521
|
+
/**
|
|
2522
|
+
* PGBouncer pool mode.
|
|
2523
|
+
*/
|
|
1822
2524
|
autodbPoolMode?: pulumi.Input<string>;
|
|
2525
|
+
/**
|
|
2526
|
+
* If non-zero then create automatically a pool of that size per user when a pool doesn't exist.
|
|
2527
|
+
*/
|
|
1823
2528
|
autodbPoolSize?: pulumi.Input<number>;
|
|
2529
|
+
/**
|
|
2530
|
+
* List of parameters to ignore when given in startup packet.
|
|
2531
|
+
*/
|
|
1824
2532
|
ignoreStartupParameters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2533
|
+
/**
|
|
2534
|
+
* Add more server connections to pool if below this number. Improves behavior when usual load comes suddenly back after period of total inactivity. The value is effectively capped at the pool size.
|
|
2535
|
+
*/
|
|
1825
2536
|
minPoolSize?: pulumi.Input<number>;
|
|
2537
|
+
/**
|
|
2538
|
+
* If a server connection has been idle more than this many seconds it will be dropped. If 0 then timeout is disabled. (seconds).
|
|
2539
|
+
*/
|
|
1826
2540
|
serverIdleTimeout?: pulumi.Input<number>;
|
|
2541
|
+
/**
|
|
2542
|
+
* The pooler will close an unused server connection that has been connected longer than this. (seconds).
|
|
2543
|
+
*/
|
|
1827
2544
|
serverLifetime?: pulumi.Input<number>;
|
|
2545
|
+
/**
|
|
2546
|
+
* Run server*reset*query (DISCARD ALL) in all pooling modes.
|
|
2547
|
+
*/
|
|
1828
2548
|
serverResetQueryAlways?: pulumi.Input<boolean>;
|
|
1829
2549
|
}
|
|
1830
2550
|
export interface PgPgUserConfigPglookout {
|
|
2551
|
+
/**
|
|
2552
|
+
* Number of seconds of master unavailability before triggering database failover to standby. The default value is `60`.
|
|
2553
|
+
*/
|
|
1831
2554
|
maxFailoverReplicationTimeLag?: pulumi.Input<number>;
|
|
1832
2555
|
}
|
|
1833
2556
|
export interface PgPgUserConfigPrivateAccess {
|
|
1834
2557
|
/**
|
|
1835
|
-
*
|
|
2558
|
+
* postgresql.conf configuration values.
|
|
1836
2559
|
*/
|
|
1837
2560
|
pg?: pulumi.Input<boolean>;
|
|
2561
|
+
/**
|
|
2562
|
+
* PGBouncer connection pooling settings.
|
|
2563
|
+
*/
|
|
1838
2564
|
pgbouncer?: pulumi.Input<boolean>;
|
|
2565
|
+
/**
|
|
2566
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2567
|
+
*/
|
|
1839
2568
|
prometheus?: pulumi.Input<boolean>;
|
|
1840
2569
|
}
|
|
1841
2570
|
export interface PgPgUserConfigPrivatelinkAccess {
|
|
1842
2571
|
/**
|
|
1843
|
-
*
|
|
2572
|
+
* postgresql.conf configuration values.
|
|
1844
2573
|
*/
|
|
1845
2574
|
pg?: pulumi.Input<boolean>;
|
|
2575
|
+
/**
|
|
2576
|
+
* PGBouncer connection pooling settings.
|
|
2577
|
+
*/
|
|
1846
2578
|
pgbouncer?: pulumi.Input<boolean>;
|
|
2579
|
+
/**
|
|
2580
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2581
|
+
*/
|
|
1847
2582
|
prometheus?: pulumi.Input<boolean>;
|
|
1848
2583
|
}
|
|
1849
2584
|
export interface PgPgUserConfigPublicAccess {
|
|
1850
2585
|
/**
|
|
1851
|
-
*
|
|
2586
|
+
* postgresql.conf configuration values.
|
|
1852
2587
|
*/
|
|
1853
2588
|
pg?: pulumi.Input<boolean>;
|
|
2589
|
+
/**
|
|
2590
|
+
* PGBouncer connection pooling settings.
|
|
2591
|
+
*/
|
|
1854
2592
|
pgbouncer?: pulumi.Input<boolean>;
|
|
2593
|
+
/**
|
|
2594
|
+
* Allow clients to connect to prometheus with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
2595
|
+
*/
|
|
1855
2596
|
prometheus?: pulumi.Input<boolean>;
|
|
1856
2597
|
}
|
|
1857
2598
|
export interface PgPgUserConfigTimescaledb {
|
|
2599
|
+
/**
|
|
2600
|
+
* The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time.
|
|
2601
|
+
*/
|
|
1858
2602
|
maxBackgroundWorkers?: pulumi.Input<number>;
|
|
1859
2603
|
}
|
|
1860
2604
|
export interface PgServiceIntegration {
|
|
@@ -1967,25 +2711,73 @@ export interface ServiceIntegrationClickhouseKafkaUserConfig {
|
|
|
1967
2711
|
tables?: pulumi.Input<pulumi.Input<inputs.ServiceIntegrationClickhouseKafkaUserConfigTable>[]>;
|
|
1968
2712
|
}
|
|
1969
2713
|
export interface ServiceIntegrationClickhouseKafkaUserConfigTable {
|
|
2714
|
+
/**
|
|
2715
|
+
* Action to take when there is no initial offset in offset store or the desired offset is out of range. The default value is `earliest`.
|
|
2716
|
+
*/
|
|
1970
2717
|
autoOffsetReset?: pulumi.Input<string>;
|
|
2718
|
+
/**
|
|
2719
|
+
* Table columns.
|
|
2720
|
+
*/
|
|
1971
2721
|
columns?: pulumi.Input<pulumi.Input<inputs.ServiceIntegrationClickhouseKafkaUserConfigTableColumn>[]>;
|
|
2722
|
+
/**
|
|
2723
|
+
* Message data format. The default value is `JSONEachRow`.
|
|
2724
|
+
*/
|
|
1972
2725
|
dataFormat: pulumi.Input<string>;
|
|
2726
|
+
/**
|
|
2727
|
+
* Method to read DateTime from text input formats. The default value is `basic`.
|
|
2728
|
+
*/
|
|
1973
2729
|
dateTimeInputFormat?: pulumi.Input<string>;
|
|
2730
|
+
/**
|
|
2731
|
+
* Kafka consumers group. The default value is `clickhouse`.
|
|
2732
|
+
*/
|
|
1974
2733
|
groupName: pulumi.Input<string>;
|
|
2734
|
+
/**
|
|
2735
|
+
* How to handle errors for Kafka engine. The default value is `default`.
|
|
2736
|
+
*/
|
|
1975
2737
|
handleErrorMode?: pulumi.Input<string>;
|
|
2738
|
+
/**
|
|
2739
|
+
* Number of row collected by poll(s) for flushing data from Kafka. The default value is `0`.
|
|
2740
|
+
*/
|
|
1976
2741
|
maxBlockSize?: pulumi.Input<number>;
|
|
2742
|
+
/**
|
|
2743
|
+
* The maximum number of rows produced in one kafka message for row-based formats. The default value is `1`.
|
|
2744
|
+
*/
|
|
1977
2745
|
maxRowsPerMessage?: pulumi.Input<number>;
|
|
2746
|
+
/**
|
|
2747
|
+
* Column name.
|
|
2748
|
+
*/
|
|
1978
2749
|
name: pulumi.Input<string>;
|
|
2750
|
+
/**
|
|
2751
|
+
* The number of consumers per table per replica. The default value is `1`.
|
|
2752
|
+
*/
|
|
1979
2753
|
numConsumers?: pulumi.Input<number>;
|
|
2754
|
+
/**
|
|
2755
|
+
* Maximum amount of messages to be polled in a single Kafka poll. The default value is `0`.
|
|
2756
|
+
*/
|
|
1980
2757
|
pollMaxBatchSize?: pulumi.Input<number>;
|
|
2758
|
+
/**
|
|
2759
|
+
* Skip at least this number of broken messages from Kafka topic per block. The default value is `0`.
|
|
2760
|
+
*/
|
|
1981
2761
|
skipBrokenMessages?: pulumi.Input<number>;
|
|
2762
|
+
/**
|
|
2763
|
+
* Kafka topics.
|
|
2764
|
+
*/
|
|
1982
2765
|
topics?: pulumi.Input<pulumi.Input<inputs.ServiceIntegrationClickhouseKafkaUserConfigTableTopic>[]>;
|
|
1983
2766
|
}
|
|
1984
2767
|
export interface ServiceIntegrationClickhouseKafkaUserConfigTableColumn {
|
|
2768
|
+
/**
|
|
2769
|
+
* Column name.
|
|
2770
|
+
*/
|
|
1985
2771
|
name: pulumi.Input<string>;
|
|
2772
|
+
/**
|
|
2773
|
+
* Column type.
|
|
2774
|
+
*/
|
|
1986
2775
|
type: pulumi.Input<string>;
|
|
1987
2776
|
}
|
|
1988
2777
|
export interface ServiceIntegrationClickhouseKafkaUserConfigTableTopic {
|
|
2778
|
+
/**
|
|
2779
|
+
* Column name.
|
|
2780
|
+
*/
|
|
1989
2781
|
name: pulumi.Input<string>;
|
|
1990
2782
|
}
|
|
1991
2783
|
export interface ServiceIntegrationClickhousePostgresqlUserConfig {
|
|
@@ -1995,7 +2787,13 @@ export interface ServiceIntegrationClickhousePostgresqlUserConfig {
|
|
|
1995
2787
|
databases?: pulumi.Input<pulumi.Input<inputs.ServiceIntegrationClickhousePostgresqlUserConfigDatabase>[]>;
|
|
1996
2788
|
}
|
|
1997
2789
|
export interface ServiceIntegrationClickhousePostgresqlUserConfigDatabase {
|
|
2790
|
+
/**
|
|
2791
|
+
* PostgreSQL database to expose. The default value is `defaultdb`.
|
|
2792
|
+
*/
|
|
1998
2793
|
database?: pulumi.Input<string>;
|
|
2794
|
+
/**
|
|
2795
|
+
* PostgreSQL schema to expose. The default value is `public`.
|
|
2796
|
+
*/
|
|
1999
2797
|
schema?: pulumi.Input<string>;
|
|
2000
2798
|
}
|
|
2001
2799
|
export interface ServiceIntegrationDatadogUserConfig {
|
|
@@ -2041,15 +2839,33 @@ export interface ServiceIntegrationDatadogUserConfig {
|
|
|
2041
2839
|
redis?: pulumi.Input<inputs.ServiceIntegrationDatadogUserConfigRedis>;
|
|
2042
2840
|
}
|
|
2043
2841
|
export interface ServiceIntegrationDatadogUserConfigDatadogTag {
|
|
2842
|
+
/**
|
|
2843
|
+
* Optional tag explanation.
|
|
2844
|
+
*/
|
|
2044
2845
|
comment?: pulumi.Input<string>;
|
|
2846
|
+
/**
|
|
2847
|
+
* Tag format and usage are described here: https://docs.datadoghq.com/getting_started/tagging. Tags with prefix 'aiven-' are reserved for Aiven.
|
|
2848
|
+
*/
|
|
2045
2849
|
tag: pulumi.Input<string>;
|
|
2046
2850
|
}
|
|
2047
2851
|
export interface ServiceIntegrationDatadogUserConfigOpensearch {
|
|
2852
|
+
/**
|
|
2853
|
+
* Enable Datadog Opensearch Index Monitoring.
|
|
2854
|
+
*/
|
|
2048
2855
|
indexStatsEnabled?: pulumi.Input<boolean>;
|
|
2856
|
+
/**
|
|
2857
|
+
* Enable Datadog Opensearch Pending Task Monitoring.
|
|
2858
|
+
*/
|
|
2049
2859
|
pendingTaskStatsEnabled?: pulumi.Input<boolean>;
|
|
2860
|
+
/**
|
|
2861
|
+
* Enable Datadog Opensearch Primary Shard Monitoring.
|
|
2862
|
+
*/
|
|
2050
2863
|
pshardStatsEnabled?: pulumi.Input<boolean>;
|
|
2051
2864
|
}
|
|
2052
2865
|
export interface ServiceIntegrationDatadogUserConfigRedis {
|
|
2866
|
+
/**
|
|
2867
|
+
* Enable commandStats option in the agent's configuration. The default value is `false`.
|
|
2868
|
+
*/
|
|
2053
2869
|
commandStatsEnabled?: pulumi.Input<boolean>;
|
|
2054
2870
|
}
|
|
2055
2871
|
export interface ServiceIntegrationEndpointDatadogUserConfig {
|
|
@@ -2083,7 +2899,13 @@ export interface ServiceIntegrationEndpointDatadogUserConfig {
|
|
|
2083
2899
|
site?: pulumi.Input<string>;
|
|
2084
2900
|
}
|
|
2085
2901
|
export interface ServiceIntegrationEndpointDatadogUserConfigDatadogTag {
|
|
2902
|
+
/**
|
|
2903
|
+
* Optional tag explanation.
|
|
2904
|
+
*/
|
|
2086
2905
|
comment?: pulumi.Input<string>;
|
|
2906
|
+
/**
|
|
2907
|
+
* Tag format and usage are described here: https://docs.datadoghq.com/getting_started/tagging. Tags with prefix 'aiven-' are reserved for Aiven.
|
|
2908
|
+
*/
|
|
2087
2909
|
tag: pulumi.Input<string>;
|
|
2088
2910
|
}
|
|
2089
2911
|
export interface ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfig {
|
|
@@ -2305,11 +3127,23 @@ export interface ServiceIntegrationExternalAwsCloudwatchMetricsUserConfig {
|
|
|
2305
3127
|
extraMetrics?: pulumi.Input<pulumi.Input<inputs.ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigExtraMetric>[]>;
|
|
2306
3128
|
}
|
|
2307
3129
|
export interface ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigDroppedMetric {
|
|
3130
|
+
/**
|
|
3131
|
+
* Identifier of a value in the metric.
|
|
3132
|
+
*/
|
|
2308
3133
|
field: pulumi.Input<string>;
|
|
3134
|
+
/**
|
|
3135
|
+
* Identifier of the metric.
|
|
3136
|
+
*/
|
|
2309
3137
|
metric: pulumi.Input<string>;
|
|
2310
3138
|
}
|
|
2311
3139
|
export interface ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigExtraMetric {
|
|
3140
|
+
/**
|
|
3141
|
+
* Identifier of a value in the metric.
|
|
3142
|
+
*/
|
|
2312
3143
|
field: pulumi.Input<string>;
|
|
3144
|
+
/**
|
|
3145
|
+
* Identifier of the metric.
|
|
3146
|
+
*/
|
|
2313
3147
|
metric: pulumi.Input<string>;
|
|
2314
3148
|
}
|
|
2315
3149
|
export interface ServiceIntegrationKafkaConnectUserConfig {
|
|
@@ -2319,9 +3153,21 @@ export interface ServiceIntegrationKafkaConnectUserConfig {
|
|
|
2319
3153
|
kafkaConnect?: pulumi.Input<inputs.ServiceIntegrationKafkaConnectUserConfigKafkaConnect>;
|
|
2320
3154
|
}
|
|
2321
3155
|
export interface ServiceIntegrationKafkaConnectUserConfigKafkaConnect {
|
|
3156
|
+
/**
|
|
3157
|
+
* The name of the topic where connector and task configuration data are stored.This must be the same for all workers with the same group_id.
|
|
3158
|
+
*/
|
|
2322
3159
|
configStorageTopic?: pulumi.Input<string>;
|
|
3160
|
+
/**
|
|
3161
|
+
* A unique string that identifies the Connect cluster group this worker belongs to.
|
|
3162
|
+
*/
|
|
2323
3163
|
groupId?: pulumi.Input<string>;
|
|
3164
|
+
/**
|
|
3165
|
+
* The name of the topic where connector and task configuration offsets are stored.This must be the same for all workers with the same group_id.
|
|
3166
|
+
*/
|
|
2324
3167
|
offsetStorageTopic?: pulumi.Input<string>;
|
|
3168
|
+
/**
|
|
3169
|
+
* The name of the topic where connector and task configuration status updates are stored.This must be the same for all workers with the same group_id.
|
|
3170
|
+
*/
|
|
2325
3171
|
statusStorageTopic?: pulumi.Input<string>;
|
|
2326
3172
|
}
|
|
2327
3173
|
export interface ServiceIntegrationKafkaLogsUserConfig {
|
|
@@ -2345,11 +3191,29 @@ export interface ServiceIntegrationKafkaMirrormakerUserConfig {
|
|
|
2345
3191
|
kafkaMirrormaker?: pulumi.Input<inputs.ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormaker>;
|
|
2346
3192
|
}
|
|
2347
3193
|
export interface ServiceIntegrationKafkaMirrormakerUserConfigKafkaMirrormaker {
|
|
3194
|
+
/**
|
|
3195
|
+
* The minimum amount of data the server should return for a fetch request.
|
|
3196
|
+
*/
|
|
2348
3197
|
consumerFetchMinBytes?: pulumi.Input<number>;
|
|
3198
|
+
/**
|
|
3199
|
+
* The batch size in bytes producer will attempt to collect before publishing to broker.
|
|
3200
|
+
*/
|
|
2349
3201
|
producerBatchSize?: pulumi.Input<number>;
|
|
3202
|
+
/**
|
|
3203
|
+
* The amount of bytes producer can use for buffering data before publishing to broker.
|
|
3204
|
+
*/
|
|
2350
3205
|
producerBufferMemory?: pulumi.Input<number>;
|
|
3206
|
+
/**
|
|
3207
|
+
* Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
|
|
3208
|
+
*/
|
|
2351
3209
|
producerCompressionType?: pulumi.Input<string>;
|
|
3210
|
+
/**
|
|
3211
|
+
* The linger time (ms) for waiting new data to arrive for publishing.
|
|
3212
|
+
*/
|
|
2352
3213
|
producerLingerMs?: pulumi.Input<number>;
|
|
3214
|
+
/**
|
|
3215
|
+
* The maximum request size in bytes.
|
|
3216
|
+
*/
|
|
2353
3217
|
producerMaxRequestSize?: pulumi.Input<number>;
|
|
2354
3218
|
}
|
|
2355
3219
|
export interface ServiceIntegrationLogsUserConfig {
|
|
@@ -2389,21 +3253,66 @@ export interface ServiceIntegrationMetricsUserConfig {
|
|
|
2389
3253
|
username?: pulumi.Input<string>;
|
|
2390
3254
|
}
|
|
2391
3255
|
export interface ServiceIntegrationMetricsUserConfigSourceMysql {
|
|
3256
|
+
/**
|
|
3257
|
+
* Configuration options for Telegraf MySQL input plugin.
|
|
3258
|
+
*/
|
|
2392
3259
|
telegraf?: pulumi.Input<inputs.ServiceIntegrationMetricsUserConfigSourceMysqlTelegraf>;
|
|
2393
3260
|
}
|
|
2394
3261
|
export interface ServiceIntegrationMetricsUserConfigSourceMysqlTelegraf {
|
|
3262
|
+
/**
|
|
3263
|
+
* Gather metrics from PERFORMANCE*SCHEMA.EVENT*WAITS.
|
|
3264
|
+
*/
|
|
2395
3265
|
gatherEventWaits?: pulumi.Input<boolean>;
|
|
3266
|
+
/**
|
|
3267
|
+
* gather metrics from PERFORMANCE*SCHEMA.FILE*SUMMARY*BY*EVENT_NAME.
|
|
3268
|
+
*/
|
|
2396
3269
|
gatherFileEventsStats?: pulumi.Input<boolean>;
|
|
3270
|
+
/**
|
|
3271
|
+
* Gather metrics from PERFORMANCE*SCHEMA.TABLE*IO*WAITS*SUMMARY*BY*INDEX_USAGE.
|
|
3272
|
+
*/
|
|
2397
3273
|
gatherIndexIoWaits?: pulumi.Input<boolean>;
|
|
3274
|
+
/**
|
|
3275
|
+
* Gather autoIncrement columns and max values from information schema.
|
|
3276
|
+
*/
|
|
2398
3277
|
gatherInfoSchemaAutoInc?: pulumi.Input<boolean>;
|
|
3278
|
+
/**
|
|
3279
|
+
* Gather metrics from INFORMATION*SCHEMA.INNODB*METRICS.
|
|
3280
|
+
*/
|
|
2399
3281
|
gatherInnodbMetrics?: pulumi.Input<boolean>;
|
|
3282
|
+
/**
|
|
3283
|
+
* Gather metrics from PERFORMANCE*SCHEMA.EVENTS*STATEMENTS*SUMMARY*BY_DIGEST.
|
|
3284
|
+
*/
|
|
2400
3285
|
gatherPerfEventsStatements?: pulumi.Input<boolean>;
|
|
3286
|
+
/**
|
|
3287
|
+
* Gather thread state counts from INFORMATION_SCHEMA.PROCESSLIST.
|
|
3288
|
+
*/
|
|
2401
3289
|
gatherProcessList?: pulumi.Input<boolean>;
|
|
3290
|
+
/**
|
|
3291
|
+
* Gather metrics from SHOW SLAVE STATUS command output.
|
|
3292
|
+
*/
|
|
2402
3293
|
gatherSlaveStatus?: pulumi.Input<boolean>;
|
|
3294
|
+
/**
|
|
3295
|
+
* Gather metrics from PERFORMANCE*SCHEMA.TABLE*IO*WAITS*SUMMARY*BY*TABLE.
|
|
3296
|
+
*/
|
|
2403
3297
|
gatherTableIoWaits?: pulumi.Input<boolean>;
|
|
3298
|
+
/**
|
|
3299
|
+
* Gather metrics from PERFORMANCE*SCHEMA.TABLE*LOCK_WAITS.
|
|
3300
|
+
*/
|
|
2404
3301
|
gatherTableLockWaits?: pulumi.Input<boolean>;
|
|
3302
|
+
/**
|
|
3303
|
+
* Gather metrics from INFORMATION_SCHEMA.TABLES.
|
|
3304
|
+
*/
|
|
2405
3305
|
gatherTableSchema?: pulumi.Input<boolean>;
|
|
3306
|
+
/**
|
|
3307
|
+
* Truncates digest text from perf*events*statements into this many characters.
|
|
3308
|
+
*/
|
|
2406
3309
|
perfEventsStatementsDigestTextLimit?: pulumi.Input<number>;
|
|
3310
|
+
/**
|
|
3311
|
+
* Limits metrics from perf*events*statements.
|
|
3312
|
+
*/
|
|
2407
3313
|
perfEventsStatementsLimit?: pulumi.Input<number>;
|
|
3314
|
+
/**
|
|
3315
|
+
* Only include perf*events*statements whose last seen is less than this many seconds.
|
|
3316
|
+
*/
|
|
2408
3317
|
perfEventsStatementsTimeLimit?: pulumi.Input<number>;
|
|
2409
3318
|
}
|