aws-sdk-timestreaminfluxdb 1.31.0 → 1.32.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreaminfluxdb/client.rb +500 -41
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +171 -3
- data/lib/aws-sdk-timestreaminfluxdb/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +781 -8
- data/lib/aws-sdk-timestreaminfluxdb.rb +1 -1
- data/sig/client.rbs +215 -16
- data/sig/types.rbs +133 -7
- metadata +1 -1
@@ -499,7 +499,7 @@ module Aws::TimestreamInfluxDB
|
|
499
499
|
# the InfluxDB CLI to create an operator token. These attributes will be
|
500
500
|
# stored in a secret created in Secrets Manager in your account.
|
501
501
|
#
|
502
|
-
# @option params [
|
502
|
+
# @option params [String] :password
|
503
503
|
# The password of the initial admin user created in InfluxDB. This
|
504
504
|
# password will allow you to access the InfluxDB UI to perform various
|
505
505
|
# administrative tasks and also use the InfluxDB CLI to create an
|
@@ -522,7 +522,7 @@ module Aws::TimestreamInfluxDB
|
|
522
522
|
#
|
523
523
|
# Valid Values: 1024-65535
|
524
524
|
#
|
525
|
-
# Default: 8086
|
525
|
+
# Default: 8086 for InfluxDB v2, 8181 for InfluxDB v3
|
526
526
|
#
|
527
527
|
# Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
|
528
528
|
# 51678-51680
|
@@ -548,7 +548,7 @@ module Aws::TimestreamInfluxDB
|
|
548
548
|
#
|
549
549
|
# * Influx I/O Included 16000 IOPS
|
550
550
|
#
|
551
|
-
# @option params [
|
551
|
+
# @option params [Integer] :allocated_storage
|
552
552
|
# The amount of storage to allocate for your DB storage type in GiB
|
553
553
|
# (gibibytes).
|
554
554
|
#
|
@@ -570,7 +570,7 @@ module Aws::TimestreamInfluxDB
|
|
570
570
|
# A list of VPC security group IDs to associate with the Timestream for
|
571
571
|
# InfluxDB cluster.
|
572
572
|
#
|
573
|
-
# @option params [
|
573
|
+
# @option params [String] :deployment_type
|
574
574
|
# Specifies the type of cluster to create.
|
575
575
|
#
|
576
576
|
# @option params [String] :failover_mode
|
@@ -594,19 +594,19 @@ module Aws::TimestreamInfluxDB
|
|
594
594
|
# resp = client.create_db_cluster({
|
595
595
|
# name: "DbClusterName", # required
|
596
596
|
# username: "Username",
|
597
|
-
# password: "Password",
|
597
|
+
# password: "Password",
|
598
598
|
# organization: "Organization",
|
599
599
|
# bucket: "Bucket",
|
600
600
|
# port: 1,
|
601
601
|
# db_parameter_group_identifier: "DbParameterGroupIdentifier",
|
602
602
|
# db_instance_type: "db.influx.medium", # required, accepts db.influx.medium, db.influx.large, db.influx.xlarge, db.influx.2xlarge, db.influx.4xlarge, db.influx.8xlarge, db.influx.12xlarge, db.influx.16xlarge, db.influx.24xlarge
|
603
603
|
# db_storage_type: "InfluxIOIncludedT1", # accepts InfluxIOIncludedT1, InfluxIOIncludedT2, InfluxIOIncludedT3
|
604
|
-
# allocated_storage: 1,
|
604
|
+
# allocated_storage: 1,
|
605
605
|
# network_type: "IPV4", # accepts IPV4, DUAL
|
606
606
|
# publicly_accessible: false,
|
607
607
|
# vpc_subnet_ids: ["VpcSubnetId"], # required
|
608
608
|
# vpc_security_group_ids: ["VpcSecurityGroupId"], # required
|
609
|
-
# deployment_type: "MULTI_NODE_READ_REPLICAS", #
|
609
|
+
# deployment_type: "MULTI_NODE_READ_REPLICAS", # accepts MULTI_NODE_READ_REPLICAS
|
610
610
|
# failover_mode: "AUTOMATIC", # accepts AUTOMATIC, NO_FAILOVER
|
611
611
|
# log_delivery_configuration: {
|
612
612
|
# s3_configuration: { # required
|
@@ -650,7 +650,7 @@ module Aws::TimestreamInfluxDB
|
|
650
650
|
# stored in a Secret created in Amazon Secrets Manager in your account.
|
651
651
|
#
|
652
652
|
# @option params [required, String] :password
|
653
|
-
# The password of the initial admin user created in InfluxDB. This
|
653
|
+
# The password of the initial admin user created in InfluxDB v2. This
|
654
654
|
# password will allow you to access the InfluxDB UI to perform various
|
655
655
|
# administrative tasks and also use the InfluxDB CLI to create an
|
656
656
|
# operator token. These attributes will be stored in a Secret created in
|
@@ -752,6 +752,7 @@ module Aws::TimestreamInfluxDB
|
|
752
752
|
# * {Types::CreateDbInstanceOutput#influx_auth_parameters_secret_arn #influx_auth_parameters_secret_arn} => String
|
753
753
|
# * {Types::CreateDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
754
754
|
# * {Types::CreateDbInstanceOutput#instance_mode #instance_mode} => String
|
755
|
+
# * {Types::CreateDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
755
756
|
#
|
756
757
|
# @example Request syntax with placeholder values
|
757
758
|
#
|
@@ -807,7 +808,9 @@ module Aws::TimestreamInfluxDB
|
|
807
808
|
# resp.log_delivery_configuration.s3_configuration.enabled #=> Boolean
|
808
809
|
# resp.influx_auth_parameters_secret_arn #=> String
|
809
810
|
# resp.db_cluster_id #=> String
|
810
|
-
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA"
|
811
|
+
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
812
|
+
# resp.instance_modes #=> Array
|
813
|
+
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
811
814
|
#
|
812
815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstance AWS API Documentation
|
813
816
|
#
|
@@ -854,22 +857,22 @@ module Aws::TimestreamInfluxDB
|
|
854
857
|
# no_tasks: false,
|
855
858
|
# query_concurrency: 1,
|
856
859
|
# query_queue_size: 1,
|
857
|
-
# tracing_type: "log", # accepts log, jaeger
|
860
|
+
# tracing_type: "log", # accepts log, jaeger, disabled
|
858
861
|
# metrics_disabled: false,
|
859
862
|
# http_idle_timeout: {
|
860
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
863
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
861
864
|
# value: 1, # required
|
862
865
|
# },
|
863
866
|
# http_read_header_timeout: {
|
864
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
867
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
865
868
|
# value: 1, # required
|
866
869
|
# },
|
867
870
|
# http_read_timeout: {
|
868
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
871
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
869
872
|
# value: 1, # required
|
870
873
|
# },
|
871
874
|
# http_write_timeout: {
|
872
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
875
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
873
876
|
# value: 1, # required
|
874
877
|
# },
|
875
878
|
# influxql_max_select_buckets: 1,
|
@@ -884,11 +887,11 @@ module Aws::TimestreamInfluxDB
|
|
884
887
|
# storage_cache_max_memory_size: 1,
|
885
888
|
# storage_cache_snapshot_memory_size: 1,
|
886
889
|
# storage_cache_snapshot_write_cold_duration: {
|
887
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
890
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
888
891
|
# value: 1, # required
|
889
892
|
# },
|
890
893
|
# storage_compact_full_write_cold_duration: {
|
891
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
894
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
892
895
|
# value: 1, # required
|
893
896
|
# },
|
894
897
|
# storage_compact_throughput_burst: 1,
|
@@ -896,18 +899,212 @@ module Aws::TimestreamInfluxDB
|
|
896
899
|
# storage_max_index_log_file_size: 1,
|
897
900
|
# storage_no_validate_field_size: false,
|
898
901
|
# storage_retention_check_interval: {
|
899
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
902
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
900
903
|
# value: 1, # required
|
901
904
|
# },
|
902
905
|
# storage_series_file_max_concurrent_snapshot_compactions: 1,
|
903
906
|
# storage_series_id_set_cache_size: 1,
|
904
907
|
# storage_wal_max_concurrent_writes: 1,
|
905
908
|
# storage_wal_max_write_delay: {
|
906
|
-
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
909
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
907
910
|
# value: 1, # required
|
908
911
|
# },
|
909
912
|
# ui_disabled: false,
|
910
913
|
# },
|
914
|
+
# influx_d_bv_3_core: {
|
915
|
+
# query_file_limit: 1,
|
916
|
+
# query_log_size: 1,
|
917
|
+
# log_filter: "InfluxDBv3CoreParametersLogFilterString",
|
918
|
+
# log_format: "full", # accepts full
|
919
|
+
# data_fusion_num_threads: 1,
|
920
|
+
# data_fusion_runtime_type: "multi-thread", # accepts multi-thread, multi-thread-alt
|
921
|
+
# data_fusion_runtime_disable_lifo_slot: false,
|
922
|
+
# data_fusion_runtime_event_interval: 1,
|
923
|
+
# data_fusion_runtime_global_queue_interval: 1,
|
924
|
+
# data_fusion_runtime_max_blocking_threads: 1,
|
925
|
+
# data_fusion_runtime_max_io_events_per_tick: 1,
|
926
|
+
# data_fusion_runtime_thread_keep_alive: {
|
927
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
928
|
+
# value: 1, # required
|
929
|
+
# },
|
930
|
+
# data_fusion_runtime_thread_priority: 1,
|
931
|
+
# data_fusion_max_parquet_fanout: 1,
|
932
|
+
# data_fusion_use_cached_parquet_loader: false,
|
933
|
+
# data_fusion_config: "InfluxDBv3CoreParametersDataFusionConfigString",
|
934
|
+
# max_http_request_size: 1,
|
935
|
+
# force_snapshot_mem_threshold: {
|
936
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
937
|
+
# absolute: 1,
|
938
|
+
# },
|
939
|
+
# wal_snapshot_size: 1,
|
940
|
+
# wal_max_write_buffer_size: 1,
|
941
|
+
# snapshotted_wal_files_to_keep: 1,
|
942
|
+
# preemptive_cache_age: {
|
943
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
944
|
+
# value: 1, # required
|
945
|
+
# },
|
946
|
+
# parquet_mem_cache_prune_percentage: 1.0,
|
947
|
+
# parquet_mem_cache_prune_interval: {
|
948
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
949
|
+
# value: 1, # required
|
950
|
+
# },
|
951
|
+
# disable_parquet_mem_cache: false,
|
952
|
+
# parquet_mem_cache_query_path_duration: {
|
953
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
954
|
+
# value: 1, # required
|
955
|
+
# },
|
956
|
+
# last_cache_eviction_interval: {
|
957
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
958
|
+
# value: 1, # required
|
959
|
+
# },
|
960
|
+
# distinct_cache_eviction_interval: {
|
961
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
962
|
+
# value: 1, # required
|
963
|
+
# },
|
964
|
+
# gen1_duration: {
|
965
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
966
|
+
# value: 1, # required
|
967
|
+
# },
|
968
|
+
# exec_mem_pool_bytes: {
|
969
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
970
|
+
# absolute: 1,
|
971
|
+
# },
|
972
|
+
# parquet_mem_cache_size: {
|
973
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
974
|
+
# absolute: 1,
|
975
|
+
# },
|
976
|
+
# wal_replay_fail_on_error: false,
|
977
|
+
# wal_replay_concurrency_limit: 1,
|
978
|
+
# table_index_cache_max_entries: 1,
|
979
|
+
# table_index_cache_concurrency_limit: 1,
|
980
|
+
# gen1_lookback_duration: {
|
981
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
982
|
+
# value: 1, # required
|
983
|
+
# },
|
984
|
+
# retention_check_interval: {
|
985
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
986
|
+
# value: 1, # required
|
987
|
+
# },
|
988
|
+
# delete_grace_period: {
|
989
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
990
|
+
# value: 1, # required
|
991
|
+
# },
|
992
|
+
# hard_delete_default_duration: {
|
993
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
994
|
+
# value: 1, # required
|
995
|
+
# },
|
996
|
+
# },
|
997
|
+
# influx_d_bv_3_enterprise: {
|
998
|
+
# query_file_limit: 1,
|
999
|
+
# query_log_size: 1,
|
1000
|
+
# log_filter: "InfluxDBv3EnterpriseParametersLogFilterString",
|
1001
|
+
# log_format: "full", # accepts full
|
1002
|
+
# data_fusion_num_threads: 1,
|
1003
|
+
# data_fusion_runtime_type: "multi-thread", # accepts multi-thread, multi-thread-alt
|
1004
|
+
# data_fusion_runtime_disable_lifo_slot: false,
|
1005
|
+
# data_fusion_runtime_event_interval: 1,
|
1006
|
+
# data_fusion_runtime_global_queue_interval: 1,
|
1007
|
+
# data_fusion_runtime_max_blocking_threads: 1,
|
1008
|
+
# data_fusion_runtime_max_io_events_per_tick: 1,
|
1009
|
+
# data_fusion_runtime_thread_keep_alive: {
|
1010
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1011
|
+
# value: 1, # required
|
1012
|
+
# },
|
1013
|
+
# data_fusion_runtime_thread_priority: 1,
|
1014
|
+
# data_fusion_max_parquet_fanout: 1,
|
1015
|
+
# data_fusion_use_cached_parquet_loader: false,
|
1016
|
+
# data_fusion_config: "InfluxDBv3EnterpriseParametersDataFusionConfigString",
|
1017
|
+
# max_http_request_size: 1,
|
1018
|
+
# force_snapshot_mem_threshold: {
|
1019
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
1020
|
+
# absolute: 1,
|
1021
|
+
# },
|
1022
|
+
# wal_snapshot_size: 1,
|
1023
|
+
# wal_max_write_buffer_size: 1,
|
1024
|
+
# snapshotted_wal_files_to_keep: 1,
|
1025
|
+
# preemptive_cache_age: {
|
1026
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1027
|
+
# value: 1, # required
|
1028
|
+
# },
|
1029
|
+
# parquet_mem_cache_prune_percentage: 1.0,
|
1030
|
+
# parquet_mem_cache_prune_interval: {
|
1031
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1032
|
+
# value: 1, # required
|
1033
|
+
# },
|
1034
|
+
# disable_parquet_mem_cache: false,
|
1035
|
+
# parquet_mem_cache_query_path_duration: {
|
1036
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1037
|
+
# value: 1, # required
|
1038
|
+
# },
|
1039
|
+
# last_cache_eviction_interval: {
|
1040
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1041
|
+
# value: 1, # required
|
1042
|
+
# },
|
1043
|
+
# distinct_cache_eviction_interval: {
|
1044
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1045
|
+
# value: 1, # required
|
1046
|
+
# },
|
1047
|
+
# gen1_duration: {
|
1048
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1049
|
+
# value: 1, # required
|
1050
|
+
# },
|
1051
|
+
# exec_mem_pool_bytes: {
|
1052
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
1053
|
+
# absolute: 1,
|
1054
|
+
# },
|
1055
|
+
# parquet_mem_cache_size: {
|
1056
|
+
# percent: "PercentOrAbsoluteLongPercentString",
|
1057
|
+
# absolute: 1,
|
1058
|
+
# },
|
1059
|
+
# wal_replay_fail_on_error: false,
|
1060
|
+
# wal_replay_concurrency_limit: 1,
|
1061
|
+
# table_index_cache_max_entries: 1,
|
1062
|
+
# table_index_cache_concurrency_limit: 1,
|
1063
|
+
# gen1_lookback_duration: {
|
1064
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1065
|
+
# value: 1, # required
|
1066
|
+
# },
|
1067
|
+
# retention_check_interval: {
|
1068
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1069
|
+
# value: 1, # required
|
1070
|
+
# },
|
1071
|
+
# delete_grace_period: {
|
1072
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1073
|
+
# value: 1, # required
|
1074
|
+
# },
|
1075
|
+
# hard_delete_default_duration: {
|
1076
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1077
|
+
# value: 1, # required
|
1078
|
+
# },
|
1079
|
+
# ingest_query_instances: 1, # required
|
1080
|
+
# query_only_instances: 1, # required
|
1081
|
+
# dedicated_compactor: false, # required
|
1082
|
+
# compaction_row_limit: 1,
|
1083
|
+
# compaction_max_num_files_per_plan: 1,
|
1084
|
+
# compaction_gen_2_duration: {
|
1085
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1086
|
+
# value: 1, # required
|
1087
|
+
# },
|
1088
|
+
# compaction_multipliers: "InfluxDBv3EnterpriseParametersCompactionMultipliersString",
|
1089
|
+
# compaction_cleanup_wait: {
|
1090
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1091
|
+
# value: 1, # required
|
1092
|
+
# },
|
1093
|
+
# compaction_check_interval: {
|
1094
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1095
|
+
# value: 1, # required
|
1096
|
+
# },
|
1097
|
+
# last_value_cache_disable_from_history: false,
|
1098
|
+
# distinct_value_cache_disable_from_history: false,
|
1099
|
+
# replication_interval: {
|
1100
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1101
|
+
# value: 1, # required
|
1102
|
+
# },
|
1103
|
+
# catalog_sync_interval: {
|
1104
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds, days
|
1105
|
+
# value: 1, # required
|
1106
|
+
# },
|
1107
|
+
# },
|
911
1108
|
# },
|
912
1109
|
# tags: {
|
913
1110
|
# "TagKey" => "TagValue",
|
@@ -925,15 +1122,15 @@ module Aws::TimestreamInfluxDB
|
|
925
1122
|
# resp.parameters.influx_d_bv_2.no_tasks #=> Boolean
|
926
1123
|
# resp.parameters.influx_d_bv_2.query_concurrency #=> Integer
|
927
1124
|
# resp.parameters.influx_d_bv_2.query_queue_size #=> Integer
|
928
|
-
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger"
|
1125
|
+
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger", "disabled"
|
929
1126
|
# resp.parameters.influx_d_bv_2.metrics_disabled #=> Boolean
|
930
|
-
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1127
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
931
1128
|
# resp.parameters.influx_d_bv_2.http_idle_timeout.value #=> Integer
|
932
|
-
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1129
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
933
1130
|
# resp.parameters.influx_d_bv_2.http_read_header_timeout.value #=> Integer
|
934
|
-
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1131
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
935
1132
|
# resp.parameters.influx_d_bv_2.http_read_timeout.value #=> Integer
|
936
|
-
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1133
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
937
1134
|
# resp.parameters.influx_d_bv_2.http_write_timeout.value #=> Integer
|
938
1135
|
# resp.parameters.influx_d_bv_2.influxql_max_select_buckets #=> Integer
|
939
1136
|
# resp.parameters.influx_d_bv_2.influxql_max_select_point #=> Integer
|
@@ -946,22 +1143,146 @@ module Aws::TimestreamInfluxDB
|
|
946
1143
|
# resp.parameters.influx_d_bv_2.session_renew_disabled #=> Boolean
|
947
1144
|
# resp.parameters.influx_d_bv_2.storage_cache_max_memory_size #=> Integer
|
948
1145
|
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_memory_size #=> Integer
|
949
|
-
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1146
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
950
1147
|
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.value #=> Integer
|
951
|
-
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1148
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
952
1149
|
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.value #=> Integer
|
953
1150
|
# resp.parameters.influx_d_bv_2.storage_compact_throughput_burst #=> Integer
|
954
1151
|
# resp.parameters.influx_d_bv_2.storage_max_concurrent_compactions #=> Integer
|
955
1152
|
# resp.parameters.influx_d_bv_2.storage_max_index_log_file_size #=> Integer
|
956
1153
|
# resp.parameters.influx_d_bv_2.storage_no_validate_field_size #=> Boolean
|
957
|
-
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1154
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
958
1155
|
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.value #=> Integer
|
959
1156
|
# resp.parameters.influx_d_bv_2.storage_series_file_max_concurrent_snapshot_compactions #=> Integer
|
960
1157
|
# resp.parameters.influx_d_bv_2.storage_series_id_set_cache_size #=> Integer
|
961
1158
|
# resp.parameters.influx_d_bv_2.storage_wal_max_concurrent_writes #=> Integer
|
962
|
-
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1159
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
963
1160
|
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.value #=> Integer
|
964
1161
|
# resp.parameters.influx_d_bv_2.ui_disabled #=> Boolean
|
1162
|
+
# resp.parameters.influx_d_bv_3_core.query_file_limit #=> Integer
|
1163
|
+
# resp.parameters.influx_d_bv_3_core.query_log_size #=> Integer
|
1164
|
+
# resp.parameters.influx_d_bv_3_core.log_filter #=> String
|
1165
|
+
# resp.parameters.influx_d_bv_3_core.log_format #=> String, one of "full"
|
1166
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_num_threads #=> Integer
|
1167
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_type #=> String, one of "multi-thread", "multi-thread-alt"
|
1168
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_disable_lifo_slot #=> Boolean
|
1169
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_event_interval #=> Integer
|
1170
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_global_queue_interval #=> Integer
|
1171
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_max_blocking_threads #=> Integer
|
1172
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_max_io_events_per_tick #=> Integer
|
1173
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_keep_alive.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1174
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_keep_alive.value #=> Integer
|
1175
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_priority #=> Integer
|
1176
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_max_parquet_fanout #=> Integer
|
1177
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_use_cached_parquet_loader #=> Boolean
|
1178
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_config #=> String
|
1179
|
+
# resp.parameters.influx_d_bv_3_core.max_http_request_size #=> Integer
|
1180
|
+
# resp.parameters.influx_d_bv_3_core.force_snapshot_mem_threshold.percent #=> String
|
1181
|
+
# resp.parameters.influx_d_bv_3_core.force_snapshot_mem_threshold.absolute #=> Integer
|
1182
|
+
# resp.parameters.influx_d_bv_3_core.wal_snapshot_size #=> Integer
|
1183
|
+
# resp.parameters.influx_d_bv_3_core.wal_max_write_buffer_size #=> Integer
|
1184
|
+
# resp.parameters.influx_d_bv_3_core.snapshotted_wal_files_to_keep #=> Integer
|
1185
|
+
# resp.parameters.influx_d_bv_3_core.preemptive_cache_age.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1186
|
+
# resp.parameters.influx_d_bv_3_core.preemptive_cache_age.value #=> Integer
|
1187
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_percentage #=> Float
|
1188
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1189
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_interval.value #=> Integer
|
1190
|
+
# resp.parameters.influx_d_bv_3_core.disable_parquet_mem_cache #=> Boolean
|
1191
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_query_path_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1192
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_query_path_duration.value #=> Integer
|
1193
|
+
# resp.parameters.influx_d_bv_3_core.last_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1194
|
+
# resp.parameters.influx_d_bv_3_core.last_cache_eviction_interval.value #=> Integer
|
1195
|
+
# resp.parameters.influx_d_bv_3_core.distinct_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1196
|
+
# resp.parameters.influx_d_bv_3_core.distinct_cache_eviction_interval.value #=> Integer
|
1197
|
+
# resp.parameters.influx_d_bv_3_core.gen1_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1198
|
+
# resp.parameters.influx_d_bv_3_core.gen1_duration.value #=> Integer
|
1199
|
+
# resp.parameters.influx_d_bv_3_core.exec_mem_pool_bytes.percent #=> String
|
1200
|
+
# resp.parameters.influx_d_bv_3_core.exec_mem_pool_bytes.absolute #=> Integer
|
1201
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_size.percent #=> String
|
1202
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_size.absolute #=> Integer
|
1203
|
+
# resp.parameters.influx_d_bv_3_core.wal_replay_fail_on_error #=> Boolean
|
1204
|
+
# resp.parameters.influx_d_bv_3_core.wal_replay_concurrency_limit #=> Integer
|
1205
|
+
# resp.parameters.influx_d_bv_3_core.table_index_cache_max_entries #=> Integer
|
1206
|
+
# resp.parameters.influx_d_bv_3_core.table_index_cache_concurrency_limit #=> Integer
|
1207
|
+
# resp.parameters.influx_d_bv_3_core.gen1_lookback_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1208
|
+
# resp.parameters.influx_d_bv_3_core.gen1_lookback_duration.value #=> Integer
|
1209
|
+
# resp.parameters.influx_d_bv_3_core.retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1210
|
+
# resp.parameters.influx_d_bv_3_core.retention_check_interval.value #=> Integer
|
1211
|
+
# resp.parameters.influx_d_bv_3_core.delete_grace_period.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1212
|
+
# resp.parameters.influx_d_bv_3_core.delete_grace_period.value #=> Integer
|
1213
|
+
# resp.parameters.influx_d_bv_3_core.hard_delete_default_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1214
|
+
# resp.parameters.influx_d_bv_3_core.hard_delete_default_duration.value #=> Integer
|
1215
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_file_limit #=> Integer
|
1216
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_log_size #=> Integer
|
1217
|
+
# resp.parameters.influx_d_bv_3_enterprise.log_filter #=> String
|
1218
|
+
# resp.parameters.influx_d_bv_3_enterprise.log_format #=> String, one of "full"
|
1219
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_num_threads #=> Integer
|
1220
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_type #=> String, one of "multi-thread", "multi-thread-alt"
|
1221
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_disable_lifo_slot #=> Boolean
|
1222
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_event_interval #=> Integer
|
1223
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_global_queue_interval #=> Integer
|
1224
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_max_blocking_threads #=> Integer
|
1225
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_max_io_events_per_tick #=> Integer
|
1226
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_keep_alive.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1227
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_keep_alive.value #=> Integer
|
1228
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_priority #=> Integer
|
1229
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_max_parquet_fanout #=> Integer
|
1230
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_use_cached_parquet_loader #=> Boolean
|
1231
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_config #=> String
|
1232
|
+
# resp.parameters.influx_d_bv_3_enterprise.max_http_request_size #=> Integer
|
1233
|
+
# resp.parameters.influx_d_bv_3_enterprise.force_snapshot_mem_threshold.percent #=> String
|
1234
|
+
# resp.parameters.influx_d_bv_3_enterprise.force_snapshot_mem_threshold.absolute #=> Integer
|
1235
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_snapshot_size #=> Integer
|
1236
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_max_write_buffer_size #=> Integer
|
1237
|
+
# resp.parameters.influx_d_bv_3_enterprise.snapshotted_wal_files_to_keep #=> Integer
|
1238
|
+
# resp.parameters.influx_d_bv_3_enterprise.preemptive_cache_age.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1239
|
+
# resp.parameters.influx_d_bv_3_enterprise.preemptive_cache_age.value #=> Integer
|
1240
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_percentage #=> Float
|
1241
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1242
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_interval.value #=> Integer
|
1243
|
+
# resp.parameters.influx_d_bv_3_enterprise.disable_parquet_mem_cache #=> Boolean
|
1244
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_query_path_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1245
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_query_path_duration.value #=> Integer
|
1246
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1247
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_cache_eviction_interval.value #=> Integer
|
1248
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1249
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_cache_eviction_interval.value #=> Integer
|
1250
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1251
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_duration.value #=> Integer
|
1252
|
+
# resp.parameters.influx_d_bv_3_enterprise.exec_mem_pool_bytes.percent #=> String
|
1253
|
+
# resp.parameters.influx_d_bv_3_enterprise.exec_mem_pool_bytes.absolute #=> Integer
|
1254
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_size.percent #=> String
|
1255
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_size.absolute #=> Integer
|
1256
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_replay_fail_on_error #=> Boolean
|
1257
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_replay_concurrency_limit #=> Integer
|
1258
|
+
# resp.parameters.influx_d_bv_3_enterprise.table_index_cache_max_entries #=> Integer
|
1259
|
+
# resp.parameters.influx_d_bv_3_enterprise.table_index_cache_concurrency_limit #=> Integer
|
1260
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_lookback_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1261
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_lookback_duration.value #=> Integer
|
1262
|
+
# resp.parameters.influx_d_bv_3_enterprise.retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1263
|
+
# resp.parameters.influx_d_bv_3_enterprise.retention_check_interval.value #=> Integer
|
1264
|
+
# resp.parameters.influx_d_bv_3_enterprise.delete_grace_period.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1265
|
+
# resp.parameters.influx_d_bv_3_enterprise.delete_grace_period.value #=> Integer
|
1266
|
+
# resp.parameters.influx_d_bv_3_enterprise.hard_delete_default_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1267
|
+
# resp.parameters.influx_d_bv_3_enterprise.hard_delete_default_duration.value #=> Integer
|
1268
|
+
# resp.parameters.influx_d_bv_3_enterprise.ingest_query_instances #=> Integer
|
1269
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_only_instances #=> Integer
|
1270
|
+
# resp.parameters.influx_d_bv_3_enterprise.dedicated_compactor #=> Boolean
|
1271
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_row_limit #=> Integer
|
1272
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_max_num_files_per_plan #=> Integer
|
1273
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_gen_2_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1274
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_gen_2_duration.value #=> Integer
|
1275
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_multipliers #=> String
|
1276
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_cleanup_wait.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1277
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_cleanup_wait.value #=> Integer
|
1278
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1279
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_check_interval.value #=> Integer
|
1280
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_value_cache_disable_from_history #=> Boolean
|
1281
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_value_cache_disable_from_history #=> Boolean
|
1282
|
+
# resp.parameters.influx_d_bv_3_enterprise.replication_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1283
|
+
# resp.parameters.influx_d_bv_3_enterprise.replication_interval.value #=> Integer
|
1284
|
+
# resp.parameters.influx_d_bv_3_enterprise.catalog_sync_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1285
|
+
# resp.parameters.influx_d_bv_3_enterprise.catalog_sync_interval.value #=> Integer
|
965
1286
|
#
|
966
1287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbParameterGroup AWS API Documentation
|
967
1288
|
#
|
@@ -1028,6 +1349,7 @@ module Aws::TimestreamInfluxDB
|
|
1028
1349
|
# * {Types::DeleteDbInstanceOutput#influx_auth_parameters_secret_arn #influx_auth_parameters_secret_arn} => String
|
1029
1350
|
# * {Types::DeleteDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
1030
1351
|
# * {Types::DeleteDbInstanceOutput#instance_mode #instance_mode} => String
|
1352
|
+
# * {Types::DeleteDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
1031
1353
|
#
|
1032
1354
|
# @example Request syntax with placeholder values
|
1033
1355
|
#
|
@@ -1060,7 +1382,9 @@ module Aws::TimestreamInfluxDB
|
|
1060
1382
|
# resp.log_delivery_configuration.s3_configuration.enabled #=> Boolean
|
1061
1383
|
# resp.influx_auth_parameters_secret_arn #=> String
|
1062
1384
|
# resp.db_cluster_id #=> String
|
1063
|
-
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA"
|
1385
|
+
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1386
|
+
# resp.instance_modes #=> Array
|
1387
|
+
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1064
1388
|
#
|
1065
1389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/DeleteDbInstance AWS API Documentation
|
1066
1390
|
#
|
@@ -1090,6 +1414,7 @@ module Aws::TimestreamInfluxDB
|
|
1090
1414
|
# * {Types::GetDbClusterOutput#network_type #network_type} => String
|
1091
1415
|
# * {Types::GetDbClusterOutput#db_storage_type #db_storage_type} => String
|
1092
1416
|
# * {Types::GetDbClusterOutput#allocated_storage #allocated_storage} => Integer
|
1417
|
+
# * {Types::GetDbClusterOutput#engine_type #engine_type} => String
|
1093
1418
|
# * {Types::GetDbClusterOutput#publicly_accessible #publicly_accessible} => Boolean
|
1094
1419
|
# * {Types::GetDbClusterOutput#db_parameter_group_identifier #db_parameter_group_identifier} => String
|
1095
1420
|
# * {Types::GetDbClusterOutput#log_delivery_configuration #log_delivery_configuration} => Types::LogDeliveryConfiguration
|
@@ -1118,6 +1443,7 @@ module Aws::TimestreamInfluxDB
|
|
1118
1443
|
# resp.network_type #=> String, one of "IPV4", "DUAL"
|
1119
1444
|
# resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
1120
1445
|
# resp.allocated_storage #=> Integer
|
1446
|
+
# resp.engine_type #=> String, one of "INFLUXDB_V2", "INFLUXDB_V3_CORE", "INFLUXDB_V3_ENTERPRISE"
|
1121
1447
|
# resp.publicly_accessible #=> Boolean
|
1122
1448
|
# resp.db_parameter_group_identifier #=> String
|
1123
1449
|
# resp.log_delivery_configuration.s3_configuration.bucket_name #=> String
|
@@ -1166,6 +1492,7 @@ module Aws::TimestreamInfluxDB
|
|
1166
1492
|
# * {Types::GetDbInstanceOutput#influx_auth_parameters_secret_arn #influx_auth_parameters_secret_arn} => String
|
1167
1493
|
# * {Types::GetDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
1168
1494
|
# * {Types::GetDbInstanceOutput#instance_mode #instance_mode} => String
|
1495
|
+
# * {Types::GetDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
1169
1496
|
#
|
1170
1497
|
# @example Request syntax with placeholder values
|
1171
1498
|
#
|
@@ -1198,7 +1525,9 @@ module Aws::TimestreamInfluxDB
|
|
1198
1525
|
# resp.log_delivery_configuration.s3_configuration.enabled #=> Boolean
|
1199
1526
|
# resp.influx_auth_parameters_secret_arn #=> String
|
1200
1527
|
# resp.db_cluster_id #=> String
|
1201
|
-
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA"
|
1528
|
+
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1529
|
+
# resp.instance_modes #=> Array
|
1530
|
+
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1202
1531
|
#
|
1203
1532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbInstance AWS API Documentation
|
1204
1533
|
#
|
@@ -1239,15 +1568,15 @@ module Aws::TimestreamInfluxDB
|
|
1239
1568
|
# resp.parameters.influx_d_bv_2.no_tasks #=> Boolean
|
1240
1569
|
# resp.parameters.influx_d_bv_2.query_concurrency #=> Integer
|
1241
1570
|
# resp.parameters.influx_d_bv_2.query_queue_size #=> Integer
|
1242
|
-
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger"
|
1571
|
+
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger", "disabled"
|
1243
1572
|
# resp.parameters.influx_d_bv_2.metrics_disabled #=> Boolean
|
1244
|
-
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1573
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1245
1574
|
# resp.parameters.influx_d_bv_2.http_idle_timeout.value #=> Integer
|
1246
|
-
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1575
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1247
1576
|
# resp.parameters.influx_d_bv_2.http_read_header_timeout.value #=> Integer
|
1248
|
-
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1577
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1249
1578
|
# resp.parameters.influx_d_bv_2.http_read_timeout.value #=> Integer
|
1250
|
-
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1579
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1251
1580
|
# resp.parameters.influx_d_bv_2.http_write_timeout.value #=> Integer
|
1252
1581
|
# resp.parameters.influx_d_bv_2.influxql_max_select_buckets #=> Integer
|
1253
1582
|
# resp.parameters.influx_d_bv_2.influxql_max_select_point #=> Integer
|
@@ -1260,22 +1589,146 @@ module Aws::TimestreamInfluxDB
|
|
1260
1589
|
# resp.parameters.influx_d_bv_2.session_renew_disabled #=> Boolean
|
1261
1590
|
# resp.parameters.influx_d_bv_2.storage_cache_max_memory_size #=> Integer
|
1262
1591
|
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_memory_size #=> Integer
|
1263
|
-
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1592
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1264
1593
|
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.value #=> Integer
|
1265
|
-
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1594
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1266
1595
|
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.value #=> Integer
|
1267
1596
|
# resp.parameters.influx_d_bv_2.storage_compact_throughput_burst #=> Integer
|
1268
1597
|
# resp.parameters.influx_d_bv_2.storage_max_concurrent_compactions #=> Integer
|
1269
1598
|
# resp.parameters.influx_d_bv_2.storage_max_index_log_file_size #=> Integer
|
1270
1599
|
# resp.parameters.influx_d_bv_2.storage_no_validate_field_size #=> Boolean
|
1271
|
-
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1600
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1272
1601
|
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.value #=> Integer
|
1273
1602
|
# resp.parameters.influx_d_bv_2.storage_series_file_max_concurrent_snapshot_compactions #=> Integer
|
1274
1603
|
# resp.parameters.influx_d_bv_2.storage_series_id_set_cache_size #=> Integer
|
1275
1604
|
# resp.parameters.influx_d_bv_2.storage_wal_max_concurrent_writes #=> Integer
|
1276
|
-
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
1605
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1277
1606
|
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.value #=> Integer
|
1278
1607
|
# resp.parameters.influx_d_bv_2.ui_disabled #=> Boolean
|
1608
|
+
# resp.parameters.influx_d_bv_3_core.query_file_limit #=> Integer
|
1609
|
+
# resp.parameters.influx_d_bv_3_core.query_log_size #=> Integer
|
1610
|
+
# resp.parameters.influx_d_bv_3_core.log_filter #=> String
|
1611
|
+
# resp.parameters.influx_d_bv_3_core.log_format #=> String, one of "full"
|
1612
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_num_threads #=> Integer
|
1613
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_type #=> String, one of "multi-thread", "multi-thread-alt"
|
1614
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_disable_lifo_slot #=> Boolean
|
1615
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_event_interval #=> Integer
|
1616
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_global_queue_interval #=> Integer
|
1617
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_max_blocking_threads #=> Integer
|
1618
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_max_io_events_per_tick #=> Integer
|
1619
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_keep_alive.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1620
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_keep_alive.value #=> Integer
|
1621
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_runtime_thread_priority #=> Integer
|
1622
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_max_parquet_fanout #=> Integer
|
1623
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_use_cached_parquet_loader #=> Boolean
|
1624
|
+
# resp.parameters.influx_d_bv_3_core.data_fusion_config #=> String
|
1625
|
+
# resp.parameters.influx_d_bv_3_core.max_http_request_size #=> Integer
|
1626
|
+
# resp.parameters.influx_d_bv_3_core.force_snapshot_mem_threshold.percent #=> String
|
1627
|
+
# resp.parameters.influx_d_bv_3_core.force_snapshot_mem_threshold.absolute #=> Integer
|
1628
|
+
# resp.parameters.influx_d_bv_3_core.wal_snapshot_size #=> Integer
|
1629
|
+
# resp.parameters.influx_d_bv_3_core.wal_max_write_buffer_size #=> Integer
|
1630
|
+
# resp.parameters.influx_d_bv_3_core.snapshotted_wal_files_to_keep #=> Integer
|
1631
|
+
# resp.parameters.influx_d_bv_3_core.preemptive_cache_age.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1632
|
+
# resp.parameters.influx_d_bv_3_core.preemptive_cache_age.value #=> Integer
|
1633
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_percentage #=> Float
|
1634
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1635
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_prune_interval.value #=> Integer
|
1636
|
+
# resp.parameters.influx_d_bv_3_core.disable_parquet_mem_cache #=> Boolean
|
1637
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_query_path_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1638
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_query_path_duration.value #=> Integer
|
1639
|
+
# resp.parameters.influx_d_bv_3_core.last_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1640
|
+
# resp.parameters.influx_d_bv_3_core.last_cache_eviction_interval.value #=> Integer
|
1641
|
+
# resp.parameters.influx_d_bv_3_core.distinct_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1642
|
+
# resp.parameters.influx_d_bv_3_core.distinct_cache_eviction_interval.value #=> Integer
|
1643
|
+
# resp.parameters.influx_d_bv_3_core.gen1_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1644
|
+
# resp.parameters.influx_d_bv_3_core.gen1_duration.value #=> Integer
|
1645
|
+
# resp.parameters.influx_d_bv_3_core.exec_mem_pool_bytes.percent #=> String
|
1646
|
+
# resp.parameters.influx_d_bv_3_core.exec_mem_pool_bytes.absolute #=> Integer
|
1647
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_size.percent #=> String
|
1648
|
+
# resp.parameters.influx_d_bv_3_core.parquet_mem_cache_size.absolute #=> Integer
|
1649
|
+
# resp.parameters.influx_d_bv_3_core.wal_replay_fail_on_error #=> Boolean
|
1650
|
+
# resp.parameters.influx_d_bv_3_core.wal_replay_concurrency_limit #=> Integer
|
1651
|
+
# resp.parameters.influx_d_bv_3_core.table_index_cache_max_entries #=> Integer
|
1652
|
+
# resp.parameters.influx_d_bv_3_core.table_index_cache_concurrency_limit #=> Integer
|
1653
|
+
# resp.parameters.influx_d_bv_3_core.gen1_lookback_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1654
|
+
# resp.parameters.influx_d_bv_3_core.gen1_lookback_duration.value #=> Integer
|
1655
|
+
# resp.parameters.influx_d_bv_3_core.retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1656
|
+
# resp.parameters.influx_d_bv_3_core.retention_check_interval.value #=> Integer
|
1657
|
+
# resp.parameters.influx_d_bv_3_core.delete_grace_period.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1658
|
+
# resp.parameters.influx_d_bv_3_core.delete_grace_period.value #=> Integer
|
1659
|
+
# resp.parameters.influx_d_bv_3_core.hard_delete_default_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1660
|
+
# resp.parameters.influx_d_bv_3_core.hard_delete_default_duration.value #=> Integer
|
1661
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_file_limit #=> Integer
|
1662
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_log_size #=> Integer
|
1663
|
+
# resp.parameters.influx_d_bv_3_enterprise.log_filter #=> String
|
1664
|
+
# resp.parameters.influx_d_bv_3_enterprise.log_format #=> String, one of "full"
|
1665
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_num_threads #=> Integer
|
1666
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_type #=> String, one of "multi-thread", "multi-thread-alt"
|
1667
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_disable_lifo_slot #=> Boolean
|
1668
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_event_interval #=> Integer
|
1669
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_global_queue_interval #=> Integer
|
1670
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_max_blocking_threads #=> Integer
|
1671
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_max_io_events_per_tick #=> Integer
|
1672
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_keep_alive.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1673
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_keep_alive.value #=> Integer
|
1674
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_runtime_thread_priority #=> Integer
|
1675
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_max_parquet_fanout #=> Integer
|
1676
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_use_cached_parquet_loader #=> Boolean
|
1677
|
+
# resp.parameters.influx_d_bv_3_enterprise.data_fusion_config #=> String
|
1678
|
+
# resp.parameters.influx_d_bv_3_enterprise.max_http_request_size #=> Integer
|
1679
|
+
# resp.parameters.influx_d_bv_3_enterprise.force_snapshot_mem_threshold.percent #=> String
|
1680
|
+
# resp.parameters.influx_d_bv_3_enterprise.force_snapshot_mem_threshold.absolute #=> Integer
|
1681
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_snapshot_size #=> Integer
|
1682
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_max_write_buffer_size #=> Integer
|
1683
|
+
# resp.parameters.influx_d_bv_3_enterprise.snapshotted_wal_files_to_keep #=> Integer
|
1684
|
+
# resp.parameters.influx_d_bv_3_enterprise.preemptive_cache_age.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1685
|
+
# resp.parameters.influx_d_bv_3_enterprise.preemptive_cache_age.value #=> Integer
|
1686
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_percentage #=> Float
|
1687
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1688
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_prune_interval.value #=> Integer
|
1689
|
+
# resp.parameters.influx_d_bv_3_enterprise.disable_parquet_mem_cache #=> Boolean
|
1690
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_query_path_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1691
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_query_path_duration.value #=> Integer
|
1692
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1693
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_cache_eviction_interval.value #=> Integer
|
1694
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_cache_eviction_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1695
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_cache_eviction_interval.value #=> Integer
|
1696
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1697
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_duration.value #=> Integer
|
1698
|
+
# resp.parameters.influx_d_bv_3_enterprise.exec_mem_pool_bytes.percent #=> String
|
1699
|
+
# resp.parameters.influx_d_bv_3_enterprise.exec_mem_pool_bytes.absolute #=> Integer
|
1700
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_size.percent #=> String
|
1701
|
+
# resp.parameters.influx_d_bv_3_enterprise.parquet_mem_cache_size.absolute #=> Integer
|
1702
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_replay_fail_on_error #=> Boolean
|
1703
|
+
# resp.parameters.influx_d_bv_3_enterprise.wal_replay_concurrency_limit #=> Integer
|
1704
|
+
# resp.parameters.influx_d_bv_3_enterprise.table_index_cache_max_entries #=> Integer
|
1705
|
+
# resp.parameters.influx_d_bv_3_enterprise.table_index_cache_concurrency_limit #=> Integer
|
1706
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_lookback_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1707
|
+
# resp.parameters.influx_d_bv_3_enterprise.gen1_lookback_duration.value #=> Integer
|
1708
|
+
# resp.parameters.influx_d_bv_3_enterprise.retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1709
|
+
# resp.parameters.influx_d_bv_3_enterprise.retention_check_interval.value #=> Integer
|
1710
|
+
# resp.parameters.influx_d_bv_3_enterprise.delete_grace_period.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1711
|
+
# resp.parameters.influx_d_bv_3_enterprise.delete_grace_period.value #=> Integer
|
1712
|
+
# resp.parameters.influx_d_bv_3_enterprise.hard_delete_default_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1713
|
+
# resp.parameters.influx_d_bv_3_enterprise.hard_delete_default_duration.value #=> Integer
|
1714
|
+
# resp.parameters.influx_d_bv_3_enterprise.ingest_query_instances #=> Integer
|
1715
|
+
# resp.parameters.influx_d_bv_3_enterprise.query_only_instances #=> Integer
|
1716
|
+
# resp.parameters.influx_d_bv_3_enterprise.dedicated_compactor #=> Boolean
|
1717
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_row_limit #=> Integer
|
1718
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_max_num_files_per_plan #=> Integer
|
1719
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_gen_2_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1720
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_gen_2_duration.value #=> Integer
|
1721
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_multipliers #=> String
|
1722
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_cleanup_wait.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1723
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_cleanup_wait.value #=> Integer
|
1724
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1725
|
+
# resp.parameters.influx_d_bv_3_enterprise.compaction_check_interval.value #=> Integer
|
1726
|
+
# resp.parameters.influx_d_bv_3_enterprise.last_value_cache_disable_from_history #=> Boolean
|
1727
|
+
# resp.parameters.influx_d_bv_3_enterprise.distinct_value_cache_disable_from_history #=> Boolean
|
1728
|
+
# resp.parameters.influx_d_bv_3_enterprise.replication_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1729
|
+
# resp.parameters.influx_d_bv_3_enterprise.replication_interval.value #=> Integer
|
1730
|
+
# resp.parameters.influx_d_bv_3_enterprise.catalog_sync_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds", "days"
|
1731
|
+
# resp.parameters.influx_d_bv_3_enterprise.catalog_sync_interval.value #=> Integer
|
1279
1732
|
#
|
1280
1733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbParameterGroup AWS API Documentation
|
1281
1734
|
#
|
@@ -1327,6 +1780,7 @@ module Aws::TimestreamInfluxDB
|
|
1327
1780
|
# resp.items[0].network_type #=> String, one of "IPV4", "DUAL"
|
1328
1781
|
# resp.items[0].db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
1329
1782
|
# resp.items[0].allocated_storage #=> Integer
|
1783
|
+
# resp.items[0].engine_type #=> String, one of "INFLUXDB_V2", "INFLUXDB_V3_CORE", "INFLUXDB_V3_ENTERPRISE"
|
1330
1784
|
# resp.next_token #=> String
|
1331
1785
|
#
|
1332
1786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/ListDbClusters AWS API Documentation
|
@@ -1433,7 +1887,9 @@ module Aws::TimestreamInfluxDB
|
|
1433
1887
|
# resp.items[0].db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
1434
1888
|
# resp.items[0].allocated_storage #=> Integer
|
1435
1889
|
# resp.items[0].deployment_type #=> String, one of "SINGLE_AZ", "WITH_MULTIAZ_STANDBY"
|
1436
|
-
# resp.items[0].instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA"
|
1890
|
+
# resp.items[0].instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1891
|
+
# resp.items[0].instance_modes #=> Array
|
1892
|
+
# resp.items[0].instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1437
1893
|
# resp.next_token #=> String
|
1438
1894
|
#
|
1439
1895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/ListDbInstancesForCluster AWS API Documentation
|
@@ -1690,6 +2146,7 @@ module Aws::TimestreamInfluxDB
|
|
1690
2146
|
# * {Types::UpdateDbInstanceOutput#influx_auth_parameters_secret_arn #influx_auth_parameters_secret_arn} => String
|
1691
2147
|
# * {Types::UpdateDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
1692
2148
|
# * {Types::UpdateDbInstanceOutput#instance_mode #instance_mode} => String
|
2149
|
+
# * {Types::UpdateDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
1693
2150
|
#
|
1694
2151
|
# @example Request syntax with placeholder values
|
1695
2152
|
#
|
@@ -1734,7 +2191,9 @@ module Aws::TimestreamInfluxDB
|
|
1734
2191
|
# resp.log_delivery_configuration.s3_configuration.enabled #=> Boolean
|
1735
2192
|
# resp.influx_auth_parameters_secret_arn #=> String
|
1736
2193
|
# resp.db_cluster_id #=> String
|
1737
|
-
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA"
|
2194
|
+
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
2195
|
+
# resp.instance_modes #=> Array
|
2196
|
+
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
1738
2197
|
#
|
1739
2198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstance AWS API Documentation
|
1740
2199
|
#
|
@@ -1763,7 +2222,7 @@ module Aws::TimestreamInfluxDB
|
|
1763
2222
|
tracer: tracer
|
1764
2223
|
)
|
1765
2224
|
context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
|
1766
|
-
context[:gem_version] = '1.
|
2225
|
+
context[:gem_version] = '1.32.0'
|
1767
2226
|
Seahorse::Client::Request.new(handlers, context)
|
1768
2227
|
end
|
1769
2228
|
|