aws-sdk-timestreaminfluxdb 1.11.0 → 1.13.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreaminfluxdb/client.rb +155 -3
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +57 -0
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +315 -2
- data/lib/aws-sdk-timestreaminfluxdb.rb +3 -1
- data/sig/client.rbs +59 -2
- data/sig/types.rbs +40 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ee493dcafba2efb8a22f6f009c14e70a54c631ae34a925d43c8ae8d3770abb0
|
4
|
+
data.tar.gz: c0bd5363656447d60b43984d9375977e388f4f82a7900225df6ab495ba9af852
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 573f2fc69c75e256f5871094753442cc7f6e5793e872e190179f6fb398aecd5290cb693f1903a6e930bdab20a51842095dfb4d51cc909cfc2547df47bcea5511
|
7
|
+
data.tar.gz: d28ac930206cd71d7b0ec07546b5b19e650a9d088bd2f69cb938d7c87bd90f1b198d045269b6711f2d8ff5bb34acc44a165e3984afc6e5446c26546ee88ff125
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2024-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Timestream for InfluxDB now supports port configuration and additional customer-modifiable InfluxDB v2 parameters. This release adds Port to the CreateDbInstance and UpdateDbInstance API, and additional InfluxDB v2 parameters to the CreateDbParameterGroup API.
|
8
|
+
|
9
|
+
1.12.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.11.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:timestreaminfluxdb)
|
40
|
-
|
41
39
|
module Aws::TimestreamInfluxDB
|
42
40
|
# An API client for TimestreamInfluxDB. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -537,6 +535,16 @@ module Aws::TimestreamInfluxDB
|
|
537
535
|
# @option params [Hash<String,String>] :tags
|
538
536
|
# A list of key-value pairs to associate with the DB instance.
|
539
537
|
#
|
538
|
+
# @option params [Integer] :port
|
539
|
+
# The port number on which InfluxDB accepts connections.
|
540
|
+
#
|
541
|
+
# Valid Values: 1024-65535
|
542
|
+
#
|
543
|
+
# Default: 8086
|
544
|
+
#
|
545
|
+
# Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
|
546
|
+
# 51678-51680
|
547
|
+
#
|
540
548
|
# @return [Types::CreateDbInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
541
549
|
#
|
542
550
|
# * {Types::CreateDbInstanceOutput#id #id} => String
|
@@ -544,6 +552,7 @@ module Aws::TimestreamInfluxDB
|
|
544
552
|
# * {Types::CreateDbInstanceOutput#arn #arn} => String
|
545
553
|
# * {Types::CreateDbInstanceOutput#status #status} => String
|
546
554
|
# * {Types::CreateDbInstanceOutput#endpoint #endpoint} => String
|
555
|
+
# * {Types::CreateDbInstanceOutput#port #port} => Integer
|
547
556
|
# * {Types::CreateDbInstanceOutput#db_instance_type #db_instance_type} => String
|
548
557
|
# * {Types::CreateDbInstanceOutput#db_storage_type #db_storage_type} => String
|
549
558
|
# * {Types::CreateDbInstanceOutput#allocated_storage #allocated_storage} => Integer
|
@@ -582,6 +591,7 @@ module Aws::TimestreamInfluxDB
|
|
582
591
|
# tags: {
|
583
592
|
# "TagKey" => "TagValue",
|
584
593
|
# },
|
594
|
+
# port: 1,
|
585
595
|
# })
|
586
596
|
#
|
587
597
|
# @example Response structure
|
@@ -591,6 +601,7 @@ module Aws::TimestreamInfluxDB
|
|
591
601
|
# resp.arn #=> String
|
592
602
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
|
593
603
|
# resp.endpoint #=> String
|
604
|
+
# resp.port #=> Integer
|
594
605
|
# resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
|
595
606
|
# resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
596
607
|
# resp.allocated_storage #=> Integer
|
@@ -654,6 +665,57 @@ module Aws::TimestreamInfluxDB
|
|
654
665
|
# query_queue_size: 1,
|
655
666
|
# tracing_type: "log", # accepts log, jaeger
|
656
667
|
# metrics_disabled: false,
|
668
|
+
# http_idle_timeout: {
|
669
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
670
|
+
# value: 1, # required
|
671
|
+
# },
|
672
|
+
# http_read_header_timeout: {
|
673
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
674
|
+
# value: 1, # required
|
675
|
+
# },
|
676
|
+
# http_read_timeout: {
|
677
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
678
|
+
# value: 1, # required
|
679
|
+
# },
|
680
|
+
# http_write_timeout: {
|
681
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
682
|
+
# value: 1, # required
|
683
|
+
# },
|
684
|
+
# influxql_max_select_buckets: 1,
|
685
|
+
# influxql_max_select_point: 1,
|
686
|
+
# influxql_max_select_series: 1,
|
687
|
+
# pprof_disabled: false,
|
688
|
+
# query_initial_memory_bytes: 1,
|
689
|
+
# query_max_memory_bytes: 1,
|
690
|
+
# query_memory_bytes: 1,
|
691
|
+
# session_length: 1,
|
692
|
+
# session_renew_disabled: false,
|
693
|
+
# storage_cache_max_memory_size: 1,
|
694
|
+
# storage_cache_snapshot_memory_size: 1,
|
695
|
+
# storage_cache_snapshot_write_cold_duration: {
|
696
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
697
|
+
# value: 1, # required
|
698
|
+
# },
|
699
|
+
# storage_compact_full_write_cold_duration: {
|
700
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
701
|
+
# value: 1, # required
|
702
|
+
# },
|
703
|
+
# storage_compact_throughput_burst: 1,
|
704
|
+
# storage_max_concurrent_compactions: 1,
|
705
|
+
# storage_max_index_log_file_size: 1,
|
706
|
+
# storage_no_validate_field_size: false,
|
707
|
+
# storage_retention_check_interval: {
|
708
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
709
|
+
# value: 1, # required
|
710
|
+
# },
|
711
|
+
# storage_series_file_max_concurrent_snapshot_compactions: 1,
|
712
|
+
# storage_series_id_set_cache_size: 1,
|
713
|
+
# storage_wal_max_concurrent_writes: 1,
|
714
|
+
# storage_wal_max_write_delay: {
|
715
|
+
# duration_type: "hours", # required, accepts hours, minutes, seconds, milliseconds
|
716
|
+
# value: 1, # required
|
717
|
+
# },
|
718
|
+
# ui_disabled: false,
|
657
719
|
# },
|
658
720
|
# },
|
659
721
|
# tags: {
|
@@ -674,6 +736,41 @@ module Aws::TimestreamInfluxDB
|
|
674
736
|
# resp.parameters.influx_d_bv_2.query_queue_size #=> Integer
|
675
737
|
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger"
|
676
738
|
# resp.parameters.influx_d_bv_2.metrics_disabled #=> Boolean
|
739
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
740
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.value #=> Integer
|
741
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
742
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.value #=> Integer
|
743
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
744
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.value #=> Integer
|
745
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
746
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.value #=> Integer
|
747
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_buckets #=> Integer
|
748
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_point #=> Integer
|
749
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_series #=> Integer
|
750
|
+
# resp.parameters.influx_d_bv_2.pprof_disabled #=> Boolean
|
751
|
+
# resp.parameters.influx_d_bv_2.query_initial_memory_bytes #=> Integer
|
752
|
+
# resp.parameters.influx_d_bv_2.query_max_memory_bytes #=> Integer
|
753
|
+
# resp.parameters.influx_d_bv_2.query_memory_bytes #=> Integer
|
754
|
+
# resp.parameters.influx_d_bv_2.session_length #=> Integer
|
755
|
+
# resp.parameters.influx_d_bv_2.session_renew_disabled #=> Boolean
|
756
|
+
# resp.parameters.influx_d_bv_2.storage_cache_max_memory_size #=> Integer
|
757
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_memory_size #=> Integer
|
758
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
759
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.value #=> Integer
|
760
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
761
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.value #=> Integer
|
762
|
+
# resp.parameters.influx_d_bv_2.storage_compact_throughput_burst #=> Integer
|
763
|
+
# resp.parameters.influx_d_bv_2.storage_max_concurrent_compactions #=> Integer
|
764
|
+
# resp.parameters.influx_d_bv_2.storage_max_index_log_file_size #=> Integer
|
765
|
+
# resp.parameters.influx_d_bv_2.storage_no_validate_field_size #=> Boolean
|
766
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
767
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.value #=> Integer
|
768
|
+
# resp.parameters.influx_d_bv_2.storage_series_file_max_concurrent_snapshot_compactions #=> Integer
|
769
|
+
# resp.parameters.influx_d_bv_2.storage_series_id_set_cache_size #=> Integer
|
770
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_concurrent_writes #=> Integer
|
771
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
772
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.value #=> Integer
|
773
|
+
# resp.parameters.influx_d_bv_2.ui_disabled #=> Boolean
|
677
774
|
#
|
678
775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbParameterGroup AWS API Documentation
|
679
776
|
#
|
@@ -696,6 +793,7 @@ module Aws::TimestreamInfluxDB
|
|
696
793
|
# * {Types::DeleteDbInstanceOutput#arn #arn} => String
|
697
794
|
# * {Types::DeleteDbInstanceOutput#status #status} => String
|
698
795
|
# * {Types::DeleteDbInstanceOutput#endpoint #endpoint} => String
|
796
|
+
# * {Types::DeleteDbInstanceOutput#port #port} => Integer
|
699
797
|
# * {Types::DeleteDbInstanceOutput#db_instance_type #db_instance_type} => String
|
700
798
|
# * {Types::DeleteDbInstanceOutput#db_storage_type #db_storage_type} => String
|
701
799
|
# * {Types::DeleteDbInstanceOutput#allocated_storage #allocated_storage} => Integer
|
@@ -722,6 +820,7 @@ module Aws::TimestreamInfluxDB
|
|
722
820
|
# resp.arn #=> String
|
723
821
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
|
724
822
|
# resp.endpoint #=> String
|
823
|
+
# resp.port #=> Integer
|
725
824
|
# resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
|
726
825
|
# resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
727
826
|
# resp.allocated_storage #=> Integer
|
@@ -759,6 +858,7 @@ module Aws::TimestreamInfluxDB
|
|
759
858
|
# * {Types::GetDbInstanceOutput#arn #arn} => String
|
760
859
|
# * {Types::GetDbInstanceOutput#status #status} => String
|
761
860
|
# * {Types::GetDbInstanceOutput#endpoint #endpoint} => String
|
861
|
+
# * {Types::GetDbInstanceOutput#port #port} => Integer
|
762
862
|
# * {Types::GetDbInstanceOutput#db_instance_type #db_instance_type} => String
|
763
863
|
# * {Types::GetDbInstanceOutput#db_storage_type #db_storage_type} => String
|
764
864
|
# * {Types::GetDbInstanceOutput#allocated_storage #allocated_storage} => Integer
|
@@ -785,6 +885,7 @@ module Aws::TimestreamInfluxDB
|
|
785
885
|
# resp.arn #=> String
|
786
886
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
|
787
887
|
# resp.endpoint #=> String
|
888
|
+
# resp.port #=> Integer
|
788
889
|
# resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
|
789
890
|
# resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
790
891
|
# resp.allocated_storage #=> Integer
|
@@ -842,6 +943,41 @@ module Aws::TimestreamInfluxDB
|
|
842
943
|
# resp.parameters.influx_d_bv_2.query_queue_size #=> Integer
|
843
944
|
# resp.parameters.influx_d_bv_2.tracing_type #=> String, one of "log", "jaeger"
|
844
945
|
# resp.parameters.influx_d_bv_2.metrics_disabled #=> Boolean
|
946
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
947
|
+
# resp.parameters.influx_d_bv_2.http_idle_timeout.value #=> Integer
|
948
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
949
|
+
# resp.parameters.influx_d_bv_2.http_read_header_timeout.value #=> Integer
|
950
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
951
|
+
# resp.parameters.influx_d_bv_2.http_read_timeout.value #=> Integer
|
952
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
953
|
+
# resp.parameters.influx_d_bv_2.http_write_timeout.value #=> Integer
|
954
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_buckets #=> Integer
|
955
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_point #=> Integer
|
956
|
+
# resp.parameters.influx_d_bv_2.influxql_max_select_series #=> Integer
|
957
|
+
# resp.parameters.influx_d_bv_2.pprof_disabled #=> Boolean
|
958
|
+
# resp.parameters.influx_d_bv_2.query_initial_memory_bytes #=> Integer
|
959
|
+
# resp.parameters.influx_d_bv_2.query_max_memory_bytes #=> Integer
|
960
|
+
# resp.parameters.influx_d_bv_2.query_memory_bytes #=> Integer
|
961
|
+
# resp.parameters.influx_d_bv_2.session_length #=> Integer
|
962
|
+
# resp.parameters.influx_d_bv_2.session_renew_disabled #=> Boolean
|
963
|
+
# resp.parameters.influx_d_bv_2.storage_cache_max_memory_size #=> Integer
|
964
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_memory_size #=> Integer
|
965
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
966
|
+
# resp.parameters.influx_d_bv_2.storage_cache_snapshot_write_cold_duration.value #=> Integer
|
967
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
968
|
+
# resp.parameters.influx_d_bv_2.storage_compact_full_write_cold_duration.value #=> Integer
|
969
|
+
# resp.parameters.influx_d_bv_2.storage_compact_throughput_burst #=> Integer
|
970
|
+
# resp.parameters.influx_d_bv_2.storage_max_concurrent_compactions #=> Integer
|
971
|
+
# resp.parameters.influx_d_bv_2.storage_max_index_log_file_size #=> Integer
|
972
|
+
# resp.parameters.influx_d_bv_2.storage_no_validate_field_size #=> Boolean
|
973
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
974
|
+
# resp.parameters.influx_d_bv_2.storage_retention_check_interval.value #=> Integer
|
975
|
+
# resp.parameters.influx_d_bv_2.storage_series_file_max_concurrent_snapshot_compactions #=> Integer
|
976
|
+
# resp.parameters.influx_d_bv_2.storage_series_id_set_cache_size #=> Integer
|
977
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_concurrent_writes #=> Integer
|
978
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.duration_type #=> String, one of "hours", "minutes", "seconds", "milliseconds"
|
979
|
+
# resp.parameters.influx_d_bv_2.storage_wal_max_write_delay.value #=> Integer
|
980
|
+
# resp.parameters.influx_d_bv_2.ui_disabled #=> Boolean
|
845
981
|
#
|
846
982
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbParameterGroup AWS API Documentation
|
847
983
|
#
|
@@ -886,6 +1022,7 @@ module Aws::TimestreamInfluxDB
|
|
886
1022
|
# resp.items[0].arn #=> String
|
887
1023
|
# resp.items[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
|
888
1024
|
# resp.items[0].endpoint #=> String
|
1025
|
+
# resp.items[0].port #=> Integer
|
889
1026
|
# resp.items[0].db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
|
890
1027
|
# resp.items[0].db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
891
1028
|
# resp.items[0].allocated_storage #=> Integer
|
@@ -1043,6 +1180,18 @@ module Aws::TimestreamInfluxDB
|
|
1043
1180
|
# parameter groups specify how the database is configured. For example,
|
1044
1181
|
# DB parameter groups can specify the limit for query concurrency.
|
1045
1182
|
#
|
1183
|
+
# @option params [Integer] :port
|
1184
|
+
# The port number on which InfluxDB accepts connections.
|
1185
|
+
#
|
1186
|
+
# If you change the Port value, your database restarts immediately.
|
1187
|
+
#
|
1188
|
+
# Valid Values: 1024-65535
|
1189
|
+
#
|
1190
|
+
# Default: 8086
|
1191
|
+
#
|
1192
|
+
# Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
|
1193
|
+
# 51678-51680
|
1194
|
+
#
|
1046
1195
|
# @option params [String] :db_instance_type
|
1047
1196
|
# The Timestream for InfluxDB DB instance type to run InfluxDB on.
|
1048
1197
|
#
|
@@ -1057,6 +1206,7 @@ module Aws::TimestreamInfluxDB
|
|
1057
1206
|
# * {Types::UpdateDbInstanceOutput#arn #arn} => String
|
1058
1207
|
# * {Types::UpdateDbInstanceOutput#status #status} => String
|
1059
1208
|
# * {Types::UpdateDbInstanceOutput#endpoint #endpoint} => String
|
1209
|
+
# * {Types::UpdateDbInstanceOutput#port #port} => Integer
|
1060
1210
|
# * {Types::UpdateDbInstanceOutput#db_instance_type #db_instance_type} => String
|
1061
1211
|
# * {Types::UpdateDbInstanceOutput#db_storage_type #db_storage_type} => String
|
1062
1212
|
# * {Types::UpdateDbInstanceOutput#allocated_storage #allocated_storage} => Integer
|
@@ -1081,6 +1231,7 @@ module Aws::TimestreamInfluxDB
|
|
1081
1231
|
# },
|
1082
1232
|
# },
|
1083
1233
|
# db_parameter_group_identifier: "DbParameterGroupIdentifier",
|
1234
|
+
# port: 1,
|
1084
1235
|
# db_instance_type: "db.influx.medium", # 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
|
1085
1236
|
# deployment_type: "SINGLE_AZ", # accepts SINGLE_AZ, WITH_MULTIAZ_STANDBY
|
1086
1237
|
# })
|
@@ -1092,6 +1243,7 @@ module Aws::TimestreamInfluxDB
|
|
1092
1243
|
# resp.arn #=> String
|
1093
1244
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
|
1094
1245
|
# resp.endpoint #=> String
|
1246
|
+
# resp.port #=> Integer
|
1095
1247
|
# resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
|
1096
1248
|
# resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
|
1097
1249
|
# resp.allocated_storage #=> Integer
|
@@ -1135,7 +1287,7 @@ module Aws::TimestreamInfluxDB
|
|
1135
1287
|
tracer: tracer
|
1136
1288
|
)
|
1137
1289
|
context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
|
1138
|
-
context[:gem_version] = '1.
|
1290
|
+
context[:gem_version] = '1.13.0'
|
1139
1291
|
Seahorse::Client::Request.new(handlers, context)
|
1140
1292
|
end
|
1141
1293
|
|
@@ -40,13 +40,31 @@ module Aws::TimestreamInfluxDB
|
|
40
40
|
DeleteDbInstanceInput = Shapes::StructureShape.new(name: 'DeleteDbInstanceInput')
|
41
41
|
DeleteDbInstanceOutput = Shapes::StructureShape.new(name: 'DeleteDbInstanceOutput')
|
42
42
|
DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
|
43
|
+
Duration = Shapes::StructureShape.new(name: 'Duration')
|
44
|
+
DurationType = Shapes::StringShape.new(name: 'DurationType')
|
45
|
+
DurationValueLong = Shapes::IntegerShape.new(name: 'DurationValueLong')
|
43
46
|
GetDbInstanceInput = Shapes::StructureShape.new(name: 'GetDbInstanceInput')
|
44
47
|
GetDbInstanceOutput = Shapes::StructureShape.new(name: 'GetDbInstanceOutput')
|
45
48
|
GetDbParameterGroupInput = Shapes::StructureShape.new(name: 'GetDbParameterGroupInput')
|
46
49
|
GetDbParameterGroupOutput = Shapes::StructureShape.new(name: 'GetDbParameterGroupOutput')
|
47
50
|
InfluxDBv2Parameters = Shapes::StructureShape.new(name: 'InfluxDBv2Parameters')
|
51
|
+
InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong')
|
52
|
+
InfluxDBv2ParametersInfluxqlMaxSelectPointLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersInfluxqlMaxSelectPointLong')
|
53
|
+
InfluxDBv2ParametersInfluxqlMaxSelectSeriesLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersInfluxqlMaxSelectSeriesLong')
|
48
54
|
InfluxDBv2ParametersQueryConcurrencyInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersQueryConcurrencyInteger')
|
55
|
+
InfluxDBv2ParametersQueryInitialMemoryBytesLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersQueryInitialMemoryBytesLong')
|
56
|
+
InfluxDBv2ParametersQueryMaxMemoryBytesLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersQueryMaxMemoryBytesLong')
|
57
|
+
InfluxDBv2ParametersQueryMemoryBytesLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersQueryMemoryBytesLong')
|
49
58
|
InfluxDBv2ParametersQueryQueueSizeInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersQueryQueueSizeInteger')
|
59
|
+
InfluxDBv2ParametersSessionLengthInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersSessionLengthInteger')
|
60
|
+
InfluxDBv2ParametersStorageCacheMaxMemorySizeLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageCacheMaxMemorySizeLong')
|
61
|
+
InfluxDBv2ParametersStorageCacheSnapshotMemorySizeLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageCacheSnapshotMemorySizeLong')
|
62
|
+
InfluxDBv2ParametersStorageCompactThroughputBurstLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageCompactThroughputBurstLong')
|
63
|
+
InfluxDBv2ParametersStorageMaxConcurrentCompactionsInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageMaxConcurrentCompactionsInteger')
|
64
|
+
InfluxDBv2ParametersStorageMaxIndexLogFileSizeLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageMaxIndexLogFileSizeLong')
|
65
|
+
InfluxDBv2ParametersStorageSeriesFileMaxConcurrentSnapshotCompactionsInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageSeriesFileMaxConcurrentSnapshotCompactionsInteger')
|
66
|
+
InfluxDBv2ParametersStorageSeriesIdSetCacheSizeLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageSeriesIdSetCacheSizeLong')
|
67
|
+
InfluxDBv2ParametersStorageWalMaxConcurrentWritesInteger = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersStorageWalMaxConcurrentWritesInteger')
|
50
68
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
51
69
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
52
70
|
ListDbInstancesInput = Shapes::StructureShape.new(name: 'ListDbInstancesInput')
|
@@ -62,6 +80,7 @@ module Aws::TimestreamInfluxDB
|
|
62
80
|
Organization = Shapes::StringShape.new(name: 'Organization')
|
63
81
|
Parameters = Shapes::UnionShape.new(name: 'Parameters')
|
64
82
|
Password = Shapes::StringShape.new(name: 'Password')
|
83
|
+
Port = Shapes::IntegerShape.new(name: 'Port')
|
65
84
|
RequestTagMap = Shapes::MapShape.new(name: 'RequestTagMap')
|
66
85
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
67
86
|
ResponseTagMap = Shapes::MapShape.new(name: 'ResponseTagMap')
|
@@ -110,6 +129,7 @@ module Aws::TimestreamInfluxDB
|
|
110
129
|
CreateDbInstanceInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "deploymentType"))
|
111
130
|
CreateDbInstanceInput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
|
112
131
|
CreateDbInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
|
132
|
+
CreateDbInstanceInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
113
133
|
CreateDbInstanceInput.struct_class = Types::CreateDbInstanceInput
|
114
134
|
|
115
135
|
CreateDbInstanceOutput.add_member(:id, Shapes::ShapeRef.new(shape: DbInstanceId, required: true, location_name: "id"))
|
@@ -117,6 +137,7 @@ module Aws::TimestreamInfluxDB
|
|
117
137
|
CreateDbInstanceOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
118
138
|
CreateDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
119
139
|
CreateDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
140
|
+
CreateDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
120
141
|
CreateDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
121
142
|
CreateDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
122
143
|
CreateDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
@@ -149,6 +170,7 @@ module Aws::TimestreamInfluxDB
|
|
149
170
|
DbInstanceSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
150
171
|
DbInstanceSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
151
172
|
DbInstanceSummary.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
173
|
+
DbInstanceSummary.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
152
174
|
DbInstanceSummary.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
153
175
|
DbInstanceSummary.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
154
176
|
DbInstanceSummary.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
@@ -173,6 +195,7 @@ module Aws::TimestreamInfluxDB
|
|
173
195
|
DeleteDbInstanceOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
174
196
|
DeleteDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
175
197
|
DeleteDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
198
|
+
DeleteDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
176
199
|
DeleteDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
177
200
|
DeleteDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
178
201
|
DeleteDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
@@ -187,6 +210,10 @@ module Aws::TimestreamInfluxDB
|
|
187
210
|
DeleteDbInstanceOutput.add_member(:influx_auth_parameters_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "influxAuthParametersSecretArn"))
|
188
211
|
DeleteDbInstanceOutput.struct_class = Types::DeleteDbInstanceOutput
|
189
212
|
|
213
|
+
Duration.add_member(:duration_type, Shapes::ShapeRef.new(shape: DurationType, required: true, location_name: "durationType"))
|
214
|
+
Duration.add_member(:value, Shapes::ShapeRef.new(shape: DurationValueLong, required: true, location_name: "value"))
|
215
|
+
Duration.struct_class = Types::Duration
|
216
|
+
|
190
217
|
GetDbInstanceInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DbInstanceIdentifier, required: true, location_name: "identifier"))
|
191
218
|
GetDbInstanceInput.struct_class = Types::GetDbInstanceInput
|
192
219
|
|
@@ -195,6 +222,7 @@ module Aws::TimestreamInfluxDB
|
|
195
222
|
GetDbInstanceOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
196
223
|
GetDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
197
224
|
GetDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
225
|
+
GetDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
198
226
|
GetDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
199
227
|
GetDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
200
228
|
GetDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
@@ -226,6 +254,33 @@ module Aws::TimestreamInfluxDB
|
|
226
254
|
InfluxDBv2Parameters.add_member(:query_queue_size, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersQueryQueueSizeInteger, location_name: "queryQueueSize"))
|
227
255
|
InfluxDBv2Parameters.add_member(:tracing_type, Shapes::ShapeRef.new(shape: TracingType, location_name: "tracingType"))
|
228
256
|
InfluxDBv2Parameters.add_member(:metrics_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "metricsDisabled"))
|
257
|
+
InfluxDBv2Parameters.add_member(:http_idle_timeout, Shapes::ShapeRef.new(shape: Duration, location_name: "httpIdleTimeout"))
|
258
|
+
InfluxDBv2Parameters.add_member(:http_read_header_timeout, Shapes::ShapeRef.new(shape: Duration, location_name: "httpReadHeaderTimeout"))
|
259
|
+
InfluxDBv2Parameters.add_member(:http_read_timeout, Shapes::ShapeRef.new(shape: Duration, location_name: "httpReadTimeout"))
|
260
|
+
InfluxDBv2Parameters.add_member(:http_write_timeout, Shapes::ShapeRef.new(shape: Duration, location_name: "httpWriteTimeout"))
|
261
|
+
InfluxDBv2Parameters.add_member(:influxql_max_select_buckets, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong, location_name: "influxqlMaxSelectBuckets"))
|
262
|
+
InfluxDBv2Parameters.add_member(:influxql_max_select_point, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersInfluxqlMaxSelectPointLong, location_name: "influxqlMaxSelectPoint"))
|
263
|
+
InfluxDBv2Parameters.add_member(:influxql_max_select_series, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersInfluxqlMaxSelectSeriesLong, location_name: "influxqlMaxSelectSeries"))
|
264
|
+
InfluxDBv2Parameters.add_member(:pprof_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "pprofDisabled"))
|
265
|
+
InfluxDBv2Parameters.add_member(:query_initial_memory_bytes, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersQueryInitialMemoryBytesLong, location_name: "queryInitialMemoryBytes"))
|
266
|
+
InfluxDBv2Parameters.add_member(:query_max_memory_bytes, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersQueryMaxMemoryBytesLong, location_name: "queryMaxMemoryBytes"))
|
267
|
+
InfluxDBv2Parameters.add_member(:query_memory_bytes, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersQueryMemoryBytesLong, location_name: "queryMemoryBytes"))
|
268
|
+
InfluxDBv2Parameters.add_member(:session_length, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersSessionLengthInteger, location_name: "sessionLength"))
|
269
|
+
InfluxDBv2Parameters.add_member(:session_renew_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionRenewDisabled"))
|
270
|
+
InfluxDBv2Parameters.add_member(:storage_cache_max_memory_size, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageCacheMaxMemorySizeLong, location_name: "storageCacheMaxMemorySize"))
|
271
|
+
InfluxDBv2Parameters.add_member(:storage_cache_snapshot_memory_size, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageCacheSnapshotMemorySizeLong, location_name: "storageCacheSnapshotMemorySize"))
|
272
|
+
InfluxDBv2Parameters.add_member(:storage_cache_snapshot_write_cold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "storageCacheSnapshotWriteColdDuration"))
|
273
|
+
InfluxDBv2Parameters.add_member(:storage_compact_full_write_cold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "storageCompactFullWriteColdDuration"))
|
274
|
+
InfluxDBv2Parameters.add_member(:storage_compact_throughput_burst, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageCompactThroughputBurstLong, location_name: "storageCompactThroughputBurst"))
|
275
|
+
InfluxDBv2Parameters.add_member(:storage_max_concurrent_compactions, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageMaxConcurrentCompactionsInteger, location_name: "storageMaxConcurrentCompactions"))
|
276
|
+
InfluxDBv2Parameters.add_member(:storage_max_index_log_file_size, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageMaxIndexLogFileSizeLong, location_name: "storageMaxIndexLogFileSize"))
|
277
|
+
InfluxDBv2Parameters.add_member(:storage_no_validate_field_size, Shapes::ShapeRef.new(shape: Boolean, location_name: "storageNoValidateFieldSize"))
|
278
|
+
InfluxDBv2Parameters.add_member(:storage_retention_check_interval, Shapes::ShapeRef.new(shape: Duration, location_name: "storageRetentionCheckInterval"))
|
279
|
+
InfluxDBv2Parameters.add_member(:storage_series_file_max_concurrent_snapshot_compactions, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageSeriesFileMaxConcurrentSnapshotCompactionsInteger, location_name: "storageSeriesFileMaxConcurrentSnapshotCompactions"))
|
280
|
+
InfluxDBv2Parameters.add_member(:storage_series_id_set_cache_size, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageSeriesIdSetCacheSizeLong, location_name: "storageSeriesIdSetCacheSize"))
|
281
|
+
InfluxDBv2Parameters.add_member(:storage_wal_max_concurrent_writes, Shapes::ShapeRef.new(shape: InfluxDBv2ParametersStorageWalMaxConcurrentWritesInteger, location_name: "storageWalMaxConcurrentWrites"))
|
282
|
+
InfluxDBv2Parameters.add_member(:storage_wal_max_write_delay, Shapes::ShapeRef.new(shape: Duration, location_name: "storageWalMaxWriteDelay"))
|
283
|
+
InfluxDBv2Parameters.add_member(:ui_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "uiDisabled"))
|
229
284
|
InfluxDBv2Parameters.struct_class = Types::InfluxDBv2Parameters
|
230
285
|
|
231
286
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
@@ -297,6 +352,7 @@ module Aws::TimestreamInfluxDB
|
|
297
352
|
UpdateDbInstanceInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DbInstanceIdentifier, required: true, location_name: "identifier"))
|
298
353
|
UpdateDbInstanceInput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
|
299
354
|
UpdateDbInstanceInput.add_member(:db_parameter_group_identifier, Shapes::ShapeRef.new(shape: DbParameterGroupIdentifier, location_name: "dbParameterGroupIdentifier"))
|
355
|
+
UpdateDbInstanceInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
300
356
|
UpdateDbInstanceInput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
301
357
|
UpdateDbInstanceInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "deploymentType"))
|
302
358
|
UpdateDbInstanceInput.struct_class = Types::UpdateDbInstanceInput
|
@@ -306,6 +362,7 @@ module Aws::TimestreamInfluxDB
|
|
306
362
|
UpdateDbInstanceOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
307
363
|
UpdateDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
308
364
|
UpdateDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
365
|
+
UpdateDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
309
366
|
UpdateDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
310
367
|
UpdateDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
311
368
|
UpdateDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
@@ -145,6 +145,17 @@ module Aws::TimestreamInfluxDB
|
|
145
145
|
# A list of key-value pairs to associate with the DB instance.
|
146
146
|
# @return [Hash<String,String>]
|
147
147
|
#
|
148
|
+
# @!attribute [rw] port
|
149
|
+
# The port number on which InfluxDB accepts connections.
|
150
|
+
#
|
151
|
+
# Valid Values: 1024-65535
|
152
|
+
#
|
153
|
+
# Default: 8086
|
154
|
+
#
|
155
|
+
# Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
|
156
|
+
# 51678-51680
|
157
|
+
# @return [Integer]
|
158
|
+
#
|
148
159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstanceInput AWS API Documentation
|
149
160
|
#
|
150
161
|
class CreateDbInstanceInput < Struct.new(
|
@@ -162,7 +173,8 @@ module Aws::TimestreamInfluxDB
|
|
162
173
|
:db_parameter_group_identifier,
|
163
174
|
:deployment_type,
|
164
175
|
:log_delivery_configuration,
|
165
|
-
:tags
|
176
|
+
:tags,
|
177
|
+
:port)
|
166
178
|
SENSITIVE = [:username, :password]
|
167
179
|
include Aws::Structure
|
168
180
|
end
|
@@ -190,6 +202,11 @@ module Aws::TimestreamInfluxDB
|
|
190
202
|
# is 8086.
|
191
203
|
# @return [String]
|
192
204
|
#
|
205
|
+
# @!attribute [rw] port
|
206
|
+
# The port number on which InfluxDB accepts connections. The default
|
207
|
+
# value is 8086.
|
208
|
+
# @return [Integer]
|
209
|
+
#
|
193
210
|
# @!attribute [rw] db_instance_type
|
194
211
|
# The Timestream for InfluxDB instance type that InfluxDB runs on.
|
195
212
|
# @return [String]
|
@@ -254,6 +271,7 @@ module Aws::TimestreamInfluxDB
|
|
254
271
|
:arn,
|
255
272
|
:status,
|
256
273
|
:endpoint,
|
274
|
+
:port,
|
257
275
|
:db_instance_type,
|
258
276
|
:db_storage_type,
|
259
277
|
:allocated_storage,
|
@@ -357,6 +375,10 @@ module Aws::TimestreamInfluxDB
|
|
357
375
|
# is 8086.
|
358
376
|
# @return [String]
|
359
377
|
#
|
378
|
+
# @!attribute [rw] port
|
379
|
+
# The port number on which InfluxDB accepts connections.
|
380
|
+
# @return [Integer]
|
381
|
+
#
|
360
382
|
# @!attribute [rw] db_instance_type
|
361
383
|
# The Timestream for InfluxDB instance type to run InfluxDB on.
|
362
384
|
# @return [String]
|
@@ -382,6 +404,7 @@ module Aws::TimestreamInfluxDB
|
|
382
404
|
:arn,
|
383
405
|
:status,
|
384
406
|
:endpoint,
|
407
|
+
:port,
|
385
408
|
:db_instance_type,
|
386
409
|
:db_storage_type,
|
387
410
|
:allocated_storage,
|
@@ -454,6 +477,10 @@ module Aws::TimestreamInfluxDB
|
|
454
477
|
# is 8086.
|
455
478
|
# @return [String]
|
456
479
|
#
|
480
|
+
# @!attribute [rw] port
|
481
|
+
# The port number on which InfluxDB accepts connections.
|
482
|
+
# @return [Integer]
|
483
|
+
#
|
457
484
|
# @!attribute [rw] db_instance_type
|
458
485
|
# The Timestream for InfluxDB instance type that InfluxDB runs on.
|
459
486
|
# @return [String]
|
@@ -518,6 +545,7 @@ module Aws::TimestreamInfluxDB
|
|
518
545
|
:arn,
|
519
546
|
:status,
|
520
547
|
:endpoint,
|
548
|
+
:port,
|
521
549
|
:db_instance_type,
|
522
550
|
:db_storage_type,
|
523
551
|
:allocated_storage,
|
@@ -534,6 +562,25 @@ module Aws::TimestreamInfluxDB
|
|
534
562
|
include Aws::Structure
|
535
563
|
end
|
536
564
|
|
565
|
+
# Duration for InfluxDB parameters in Timestream for InfluxDB.
|
566
|
+
#
|
567
|
+
# @!attribute [rw] duration_type
|
568
|
+
# The type of duration for InfluxDB parameters.
|
569
|
+
# @return [String]
|
570
|
+
#
|
571
|
+
# @!attribute [rw] value
|
572
|
+
# The value of duration for InfluxDB parameters.
|
573
|
+
# @return [Integer]
|
574
|
+
#
|
575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/Duration AWS API Documentation
|
576
|
+
#
|
577
|
+
class Duration < Struct.new(
|
578
|
+
:duration_type,
|
579
|
+
:value)
|
580
|
+
SENSITIVE = []
|
581
|
+
include Aws::Structure
|
582
|
+
end
|
583
|
+
|
537
584
|
# @!attribute [rw] identifier
|
538
585
|
# The id of the DB instance.
|
539
586
|
# @return [String]
|
@@ -569,6 +616,10 @@ module Aws::TimestreamInfluxDB
|
|
569
616
|
# is 8086.
|
570
617
|
# @return [String]
|
571
618
|
#
|
619
|
+
# @!attribute [rw] port
|
620
|
+
# The port number on which InfluxDB accepts connections.
|
621
|
+
# @return [Integer]
|
622
|
+
#
|
572
623
|
# @!attribute [rw] db_instance_type
|
573
624
|
# The Timestream for InfluxDB instance type that InfluxDB runs on.
|
574
625
|
# @return [String]
|
@@ -633,6 +684,7 @@ module Aws::TimestreamInfluxDB
|
|
633
684
|
:arn,
|
634
685
|
:status,
|
635
686
|
:endpoint,
|
687
|
+
:port,
|
636
688
|
:db_instance_type,
|
637
689
|
:db_storage_type,
|
638
690
|
:allocated_storage,
|
@@ -750,6 +802,221 @@ module Aws::TimestreamInfluxDB
|
|
750
802
|
# [1]: https://docs.influxdata.com/influxdb/v2/reference/internals/metrics/
|
751
803
|
# @return [Boolean]
|
752
804
|
#
|
805
|
+
# @!attribute [rw] http_idle_timeout
|
806
|
+
# Maximum duration the server should keep established connections
|
807
|
+
# alive while waiting for new requests. Set to 0 for no timeout.
|
808
|
+
#
|
809
|
+
# Default: 3 minutes
|
810
|
+
# @return [Types::Duration]
|
811
|
+
#
|
812
|
+
# @!attribute [rw] http_read_header_timeout
|
813
|
+
# Maximum duration the server should try to read HTTP headers for new
|
814
|
+
# requests. Set to 0 for no timeout.
|
815
|
+
#
|
816
|
+
# Default: 10 seconds
|
817
|
+
# @return [Types::Duration]
|
818
|
+
#
|
819
|
+
# @!attribute [rw] http_read_timeout
|
820
|
+
# Maximum duration the server should try to read the entirety of new
|
821
|
+
# requests. Set to 0 for no timeout.
|
822
|
+
#
|
823
|
+
# Default: 0
|
824
|
+
# @return [Types::Duration]
|
825
|
+
#
|
826
|
+
# @!attribute [rw] http_write_timeout
|
827
|
+
# Maximum duration the server should spend processing and responding
|
828
|
+
# to write requests. Set to 0 for no timeout.
|
829
|
+
#
|
830
|
+
# Default: 0
|
831
|
+
# @return [Types::Duration]
|
832
|
+
#
|
833
|
+
# @!attribute [rw] influxql_max_select_buckets
|
834
|
+
# Maximum number of group by time buckets a SELECT statement can
|
835
|
+
# create. 0 allows an unlimited number of buckets.
|
836
|
+
#
|
837
|
+
# Default: 0
|
838
|
+
# @return [Integer]
|
839
|
+
#
|
840
|
+
# @!attribute [rw] influxql_max_select_point
|
841
|
+
# Maximum number of points a SELECT statement can process. 0 allows an
|
842
|
+
# unlimited number of points. InfluxDB checks the point count every
|
843
|
+
# second (so queries exceeding the maximum aren’t immediately
|
844
|
+
# aborted).
|
845
|
+
#
|
846
|
+
# Default: 0
|
847
|
+
# @return [Integer]
|
848
|
+
#
|
849
|
+
# @!attribute [rw] influxql_max_select_series
|
850
|
+
# Maximum number of series a SELECT statement can return. 0 allows an
|
851
|
+
# unlimited number of series.
|
852
|
+
#
|
853
|
+
# Default: 0
|
854
|
+
# @return [Integer]
|
855
|
+
#
|
856
|
+
# @!attribute [rw] pprof_disabled
|
857
|
+
# Disable the /debug/pprof HTTP endpoint. This endpoint provides
|
858
|
+
# runtime profiling data and can be helpful when debugging.
|
859
|
+
#
|
860
|
+
# Default: false
|
861
|
+
# @return [Boolean]
|
862
|
+
#
|
863
|
+
# @!attribute [rw] query_initial_memory_bytes
|
864
|
+
# Initial bytes of memory allocated for a query.
|
865
|
+
#
|
866
|
+
# Default: 0
|
867
|
+
# @return [Integer]
|
868
|
+
#
|
869
|
+
# @!attribute [rw] query_max_memory_bytes
|
870
|
+
# Maximum number of queries allowed in execution queue. When queue
|
871
|
+
# limit is reached, new queries are rejected. Setting to 0 allows an
|
872
|
+
# unlimited number of queries in the queue.
|
873
|
+
#
|
874
|
+
# Default: 0
|
875
|
+
# @return [Integer]
|
876
|
+
#
|
877
|
+
# @!attribute [rw] query_memory_bytes
|
878
|
+
# Maximum bytes of memory allowed for a single query. Must be greater
|
879
|
+
# or equal to queryInitialMemoryBytes.
|
880
|
+
#
|
881
|
+
# Default: 0
|
882
|
+
# @return [Integer]
|
883
|
+
#
|
884
|
+
# @!attribute [rw] session_length
|
885
|
+
# Specifies the Time to Live (TTL) in minutes for newly created user
|
886
|
+
# sessions.
|
887
|
+
#
|
888
|
+
# Default: 60
|
889
|
+
# @return [Integer]
|
890
|
+
#
|
891
|
+
# @!attribute [rw] session_renew_disabled
|
892
|
+
# Disables automatically extending a user’s session TTL on each
|
893
|
+
# request. By default, every request sets the session’s expiration
|
894
|
+
# time to five minutes from now. When disabled, sessions expire after
|
895
|
+
# the specified [session length][1] and the user is redirected to the
|
896
|
+
# login page, even if recently active.
|
897
|
+
#
|
898
|
+
# Default: false
|
899
|
+
#
|
900
|
+
#
|
901
|
+
#
|
902
|
+
# [1]: https://docs.influxdata.com/influxdb/v2/reference/config-options/#session-length
|
903
|
+
# @return [Boolean]
|
904
|
+
#
|
905
|
+
# @!attribute [rw] storage_cache_max_memory_size
|
906
|
+
# Maximum size (in bytes) a shard’s cache can reach before it starts
|
907
|
+
# rejecting writes. Must be greater than
|
908
|
+
# storageCacheSnapShotMemorySize and lower than instance’s total
|
909
|
+
# memory capacity. We recommend setting it to below 15% of the total
|
910
|
+
# memory capacity.
|
911
|
+
#
|
912
|
+
# Default: 1073741824
|
913
|
+
# @return [Integer]
|
914
|
+
#
|
915
|
+
# @!attribute [rw] storage_cache_snapshot_memory_size
|
916
|
+
# Size (in bytes) at which the storage engine will snapshot the cache
|
917
|
+
# and write it to a TSM file to make more memory available. Must not
|
918
|
+
# be greater than storageCacheMaxMemorySize.
|
919
|
+
#
|
920
|
+
# Default: 26214400
|
921
|
+
# @return [Integer]
|
922
|
+
#
|
923
|
+
# @!attribute [rw] storage_cache_snapshot_write_cold_duration
|
924
|
+
# Duration at which the storage engine will snapshot the cache and
|
925
|
+
# write it to a new TSM file if the shard hasn’t received writes or
|
926
|
+
# deletes.
|
927
|
+
#
|
928
|
+
# Default: 10 minutes
|
929
|
+
# @return [Types::Duration]
|
930
|
+
#
|
931
|
+
# @!attribute [rw] storage_compact_full_write_cold_duration
|
932
|
+
# Duration at which the storage engine will compact all TSM files in a
|
933
|
+
# shard if it hasn't received writes or deletes.
|
934
|
+
#
|
935
|
+
# Default: 4 hours
|
936
|
+
# @return [Types::Duration]
|
937
|
+
#
|
938
|
+
# @!attribute [rw] storage_compact_throughput_burst
|
939
|
+
# Rate limit (in bytes per second) that TSM compactions can write to
|
940
|
+
# disk.
|
941
|
+
#
|
942
|
+
# Default: 50331648
|
943
|
+
# @return [Integer]
|
944
|
+
#
|
945
|
+
# @!attribute [rw] storage_max_concurrent_compactions
|
946
|
+
# Maximum number of full and level compactions that can run
|
947
|
+
# concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0)
|
948
|
+
# used at runtime. Any number greater than zero limits compactions to
|
949
|
+
# that value. This setting does not apply to cache snapshotting.
|
950
|
+
#
|
951
|
+
# Default: 0
|
952
|
+
# @return [Integer]
|
953
|
+
#
|
954
|
+
# @!attribute [rw] storage_max_index_log_file_size
|
955
|
+
# Size (in bytes) at which an index write-ahead log (WAL) file will
|
956
|
+
# compact into an index file. Lower sizes will cause log files to be
|
957
|
+
# compacted more quickly and result in lower heap usage at the expense
|
958
|
+
# of write throughput.
|
959
|
+
#
|
960
|
+
# Default: 1048576
|
961
|
+
# @return [Integer]
|
962
|
+
#
|
963
|
+
# @!attribute [rw] storage_no_validate_field_size
|
964
|
+
# Skip field size validation on incoming write requests.
|
965
|
+
#
|
966
|
+
# Default: false
|
967
|
+
# @return [Boolean]
|
968
|
+
#
|
969
|
+
# @!attribute [rw] storage_retention_check_interval
|
970
|
+
# Interval of retention policy enforcement checks. Must be greater
|
971
|
+
# than 0.
|
972
|
+
#
|
973
|
+
# Default: 30 minutes
|
974
|
+
# @return [Types::Duration]
|
975
|
+
#
|
976
|
+
# @!attribute [rw] storage_series_file_max_concurrent_snapshot_compactions
|
977
|
+
# Maximum number of snapshot compactions that can run concurrently
|
978
|
+
# across all series partitions in a database.
|
979
|
+
#
|
980
|
+
# Default: 0
|
981
|
+
# @return [Integer]
|
982
|
+
#
|
983
|
+
# @!attribute [rw] storage_series_id_set_cache_size
|
984
|
+
# Size of the internal cache used in the TSI index to store previously
|
985
|
+
# calculated series results. Cached results are returned quickly
|
986
|
+
# rather than needing to be recalculated when a subsequent query with
|
987
|
+
# the same tag key/value predicate is executed. Setting this value to
|
988
|
+
# 0 will disable the cache and may decrease query performance.
|
989
|
+
#
|
990
|
+
# Default: 100
|
991
|
+
# @return [Integer]
|
992
|
+
#
|
993
|
+
# @!attribute [rw] storage_wal_max_concurrent_writes
|
994
|
+
# Maximum number writes to the WAL directory to attempt at the same
|
995
|
+
# time. Setting this value to 0 results in number of processing units
|
996
|
+
# available x2.
|
997
|
+
#
|
998
|
+
# Default: 0
|
999
|
+
# @return [Integer]
|
1000
|
+
#
|
1001
|
+
# @!attribute [rw] storage_wal_max_write_delay
|
1002
|
+
# Maximum amount of time a write request to the WAL directory will
|
1003
|
+
# wait when the [maximum number of concurrent active writes to the WAL
|
1004
|
+
# directory has been met][1]. Set to 0 to disable the timeout.
|
1005
|
+
#
|
1006
|
+
# Default: 10 minutes
|
1007
|
+
#
|
1008
|
+
#
|
1009
|
+
#
|
1010
|
+
# [1]: https://docs.influxdata.com/influxdb/v2/reference/config-options/#storage-wal-max-concurrent-writes
|
1011
|
+
# @return [Types::Duration]
|
1012
|
+
#
|
1013
|
+
# @!attribute [rw] ui_disabled
|
1014
|
+
# Disable the InfluxDB user interface (UI). The UI is enabled by
|
1015
|
+
# default.
|
1016
|
+
#
|
1017
|
+
# Default: false
|
1018
|
+
# @return [Boolean]
|
1019
|
+
#
|
753
1020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/InfluxDBv2Parameters AWS API Documentation
|
754
1021
|
#
|
755
1022
|
class InfluxDBv2Parameters < Struct.new(
|
@@ -759,7 +1026,34 @@ module Aws::TimestreamInfluxDB
|
|
759
1026
|
:query_concurrency,
|
760
1027
|
:query_queue_size,
|
761
1028
|
:tracing_type,
|
762
|
-
:metrics_disabled
|
1029
|
+
:metrics_disabled,
|
1030
|
+
:http_idle_timeout,
|
1031
|
+
:http_read_header_timeout,
|
1032
|
+
:http_read_timeout,
|
1033
|
+
:http_write_timeout,
|
1034
|
+
:influxql_max_select_buckets,
|
1035
|
+
:influxql_max_select_point,
|
1036
|
+
:influxql_max_select_series,
|
1037
|
+
:pprof_disabled,
|
1038
|
+
:query_initial_memory_bytes,
|
1039
|
+
:query_max_memory_bytes,
|
1040
|
+
:query_memory_bytes,
|
1041
|
+
:session_length,
|
1042
|
+
:session_renew_disabled,
|
1043
|
+
:storage_cache_max_memory_size,
|
1044
|
+
:storage_cache_snapshot_memory_size,
|
1045
|
+
:storage_cache_snapshot_write_cold_duration,
|
1046
|
+
:storage_compact_full_write_cold_duration,
|
1047
|
+
:storage_compact_throughput_burst,
|
1048
|
+
:storage_max_concurrent_compactions,
|
1049
|
+
:storage_max_index_log_file_size,
|
1050
|
+
:storage_no_validate_field_size,
|
1051
|
+
:storage_retention_check_interval,
|
1052
|
+
:storage_series_file_max_concurrent_snapshot_compactions,
|
1053
|
+
:storage_series_id_set_cache_size,
|
1054
|
+
:storage_wal_max_concurrent_writes,
|
1055
|
+
:storage_wal_max_write_delay,
|
1056
|
+
:ui_disabled)
|
763
1057
|
SENSITIVE = []
|
764
1058
|
include Aws::Structure
|
765
1059
|
end
|
@@ -1046,6 +1340,19 @@ module Aws::TimestreamInfluxDB
|
|
1046
1340
|
# concurrency.
|
1047
1341
|
# @return [String]
|
1048
1342
|
#
|
1343
|
+
# @!attribute [rw] port
|
1344
|
+
# The port number on which InfluxDB accepts connections.
|
1345
|
+
#
|
1346
|
+
# If you change the Port value, your database restarts immediately.
|
1347
|
+
#
|
1348
|
+
# Valid Values: 1024-65535
|
1349
|
+
#
|
1350
|
+
# Default: 8086
|
1351
|
+
#
|
1352
|
+
# Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
|
1353
|
+
# 51678-51680
|
1354
|
+
# @return [Integer]
|
1355
|
+
#
|
1049
1356
|
# @!attribute [rw] db_instance_type
|
1050
1357
|
# The Timestream for InfluxDB DB instance type to run InfluxDB on.
|
1051
1358
|
# @return [String]
|
@@ -1061,6 +1368,7 @@ module Aws::TimestreamInfluxDB
|
|
1061
1368
|
:identifier,
|
1062
1369
|
:log_delivery_configuration,
|
1063
1370
|
:db_parameter_group_identifier,
|
1371
|
+
:port,
|
1064
1372
|
:db_instance_type,
|
1065
1373
|
:deployment_type)
|
1066
1374
|
SENSITIVE = []
|
@@ -1090,6 +1398,10 @@ module Aws::TimestreamInfluxDB
|
|
1090
1398
|
# is 8086.
|
1091
1399
|
# @return [String]
|
1092
1400
|
#
|
1401
|
+
# @!attribute [rw] port
|
1402
|
+
# The port number on which InfluxDB accepts connections.
|
1403
|
+
# @return [Integer]
|
1404
|
+
#
|
1093
1405
|
# @!attribute [rw] db_instance_type
|
1094
1406
|
# The Timestream for InfluxDB instance type that InfluxDB runs on.
|
1095
1407
|
# @return [String]
|
@@ -1154,6 +1466,7 @@ module Aws::TimestreamInfluxDB
|
|
1154
1466
|
:arn,
|
1155
1467
|
:status,
|
1156
1468
|
:endpoint,
|
1469
|
+
:port,
|
1157
1470
|
:db_instance_type,
|
1158
1471
|
:db_storage_type,
|
1159
1472
|
:allocated_storage,
|
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:timestreaminfluxdb)
|
15
|
+
|
14
16
|
# This module provides support for Timestream InfluxDB. This module is available in the
|
15
17
|
# `aws-sdk-timestreaminfluxdb` gem.
|
16
18
|
#
|
@@ -52,7 +54,7 @@ module Aws::TimestreamInfluxDB
|
|
52
54
|
autoload :EndpointProvider, 'aws-sdk-timestreaminfluxdb/endpoint_provider'
|
53
55
|
autoload :Endpoints, 'aws-sdk-timestreaminfluxdb/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.13.0'
|
56
58
|
|
57
59
|
end
|
58
60
|
|
data/sig/client.rbs
CHANGED
@@ -83,6 +83,7 @@ module Aws
|
|
83
83
|
def arn: () -> ::String
|
84
84
|
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
85
85
|
def endpoint: () -> ::String
|
86
|
+
def port: () -> ::Integer
|
86
87
|
def db_instance_type: () -> ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
87
88
|
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
88
89
|
def allocated_storage: () -> ::Integer
|
@@ -117,7 +118,8 @@ module Aws
|
|
117
118
|
enabled: bool
|
118
119
|
}
|
119
120
|
},
|
120
|
-
?tags: Hash[::String, ::String]
|
121
|
+
?tags: Hash[::String, ::String],
|
122
|
+
?port: ::Integer
|
121
123
|
) -> _CreateDbInstanceResponseSuccess
|
122
124
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbInstanceResponseSuccess
|
123
125
|
|
@@ -141,7 +143,58 @@ module Aws
|
|
141
143
|
query_concurrency: ::Integer?,
|
142
144
|
query_queue_size: ::Integer?,
|
143
145
|
tracing_type: ("log" | "jaeger")?,
|
144
|
-
metrics_disabled: bool
|
146
|
+
metrics_disabled: bool?,
|
147
|
+
http_idle_timeout: {
|
148
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
149
|
+
value: ::Integer
|
150
|
+
}?,
|
151
|
+
http_read_header_timeout: {
|
152
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
153
|
+
value: ::Integer
|
154
|
+
}?,
|
155
|
+
http_read_timeout: {
|
156
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
157
|
+
value: ::Integer
|
158
|
+
}?,
|
159
|
+
http_write_timeout: {
|
160
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
161
|
+
value: ::Integer
|
162
|
+
}?,
|
163
|
+
influxql_max_select_buckets: ::Integer?,
|
164
|
+
influxql_max_select_point: ::Integer?,
|
165
|
+
influxql_max_select_series: ::Integer?,
|
166
|
+
pprof_disabled: bool?,
|
167
|
+
query_initial_memory_bytes: ::Integer?,
|
168
|
+
query_max_memory_bytes: ::Integer?,
|
169
|
+
query_memory_bytes: ::Integer?,
|
170
|
+
session_length: ::Integer?,
|
171
|
+
session_renew_disabled: bool?,
|
172
|
+
storage_cache_max_memory_size: ::Integer?,
|
173
|
+
storage_cache_snapshot_memory_size: ::Integer?,
|
174
|
+
storage_cache_snapshot_write_cold_duration: {
|
175
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
176
|
+
value: ::Integer
|
177
|
+
}?,
|
178
|
+
storage_compact_full_write_cold_duration: {
|
179
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
180
|
+
value: ::Integer
|
181
|
+
}?,
|
182
|
+
storage_compact_throughput_burst: ::Integer?,
|
183
|
+
storage_max_concurrent_compactions: ::Integer?,
|
184
|
+
storage_max_index_log_file_size: ::Integer?,
|
185
|
+
storage_no_validate_field_size: bool?,
|
186
|
+
storage_retention_check_interval: {
|
187
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
188
|
+
value: ::Integer
|
189
|
+
}?,
|
190
|
+
storage_series_file_max_concurrent_snapshot_compactions: ::Integer?,
|
191
|
+
storage_series_id_set_cache_size: ::Integer?,
|
192
|
+
storage_wal_max_concurrent_writes: ::Integer?,
|
193
|
+
storage_wal_max_write_delay: {
|
194
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
195
|
+
value: ::Integer
|
196
|
+
}?,
|
197
|
+
ui_disabled: bool?
|
145
198
|
}?
|
146
199
|
},
|
147
200
|
?tags: Hash[::String, ::String]
|
@@ -155,6 +208,7 @@ module Aws
|
|
155
208
|
def arn: () -> ::String
|
156
209
|
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
157
210
|
def endpoint: () -> ::String
|
211
|
+
def port: () -> ::Integer
|
158
212
|
def db_instance_type: () -> ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
159
213
|
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
160
214
|
def allocated_storage: () -> ::Integer
|
@@ -181,6 +235,7 @@ module Aws
|
|
181
235
|
def arn: () -> ::String
|
182
236
|
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
183
237
|
def endpoint: () -> ::String
|
238
|
+
def port: () -> ::Integer
|
184
239
|
def db_instance_type: () -> ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
185
240
|
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
186
241
|
def allocated_storage: () -> ::Integer
|
@@ -269,6 +324,7 @@ module Aws
|
|
269
324
|
def arn: () -> ::String
|
270
325
|
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
271
326
|
def endpoint: () -> ::String
|
327
|
+
def port: () -> ::Integer
|
272
328
|
def db_instance_type: () -> ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
273
329
|
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
274
330
|
def allocated_storage: () -> ::Integer
|
@@ -292,6 +348,7 @@ module Aws
|
|
292
348
|
}
|
293
349
|
},
|
294
350
|
?db_parameter_group_identifier: ::String,
|
351
|
+
?port: ::Integer,
|
295
352
|
?db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge"),
|
296
353
|
?deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
297
354
|
) -> _UpdateDbInstanceResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -36,6 +36,7 @@ module Aws::TimestreamInfluxDB
|
|
36
36
|
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
37
37
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
38
38
|
attr_accessor tags: ::Hash[::String, ::String]
|
39
|
+
attr_accessor port: ::Integer
|
39
40
|
SENSITIVE: [:username, :password]
|
40
41
|
end
|
41
42
|
|
@@ -45,6 +46,7 @@ module Aws::TimestreamInfluxDB
|
|
45
46
|
attr_accessor arn: ::String
|
46
47
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
47
48
|
attr_accessor endpoint: ::String
|
49
|
+
attr_accessor port: ::Integer
|
48
50
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
49
51
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
50
52
|
attr_accessor allocated_storage: ::Integer
|
@@ -83,6 +85,7 @@ module Aws::TimestreamInfluxDB
|
|
83
85
|
attr_accessor arn: ::String
|
84
86
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
85
87
|
attr_accessor endpoint: ::String
|
88
|
+
attr_accessor port: ::Integer
|
86
89
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
87
90
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
88
91
|
attr_accessor allocated_storage: ::Integer
|
@@ -109,6 +112,7 @@ module Aws::TimestreamInfluxDB
|
|
109
112
|
attr_accessor arn: ::String
|
110
113
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
111
114
|
attr_accessor endpoint: ::String
|
115
|
+
attr_accessor port: ::Integer
|
112
116
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
113
117
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
114
118
|
attr_accessor allocated_storage: ::Integer
|
@@ -124,6 +128,12 @@ module Aws::TimestreamInfluxDB
|
|
124
128
|
SENSITIVE: []
|
125
129
|
end
|
126
130
|
|
131
|
+
class Duration
|
132
|
+
attr_accessor duration_type: ("hours" | "minutes" | "seconds" | "milliseconds")
|
133
|
+
attr_accessor value: ::Integer
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
127
137
|
class GetDbInstanceInput
|
128
138
|
attr_accessor identifier: ::String
|
129
139
|
SENSITIVE: []
|
@@ -135,6 +145,7 @@ module Aws::TimestreamInfluxDB
|
|
135
145
|
attr_accessor arn: ::String
|
136
146
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
137
147
|
attr_accessor endpoint: ::String
|
148
|
+
attr_accessor port: ::Integer
|
138
149
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
139
150
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
140
151
|
attr_accessor allocated_storage: ::Integer
|
@@ -172,6 +183,33 @@ module Aws::TimestreamInfluxDB
|
|
172
183
|
attr_accessor query_queue_size: ::Integer
|
173
184
|
attr_accessor tracing_type: ("log" | "jaeger")
|
174
185
|
attr_accessor metrics_disabled: bool
|
186
|
+
attr_accessor http_idle_timeout: Types::Duration
|
187
|
+
attr_accessor http_read_header_timeout: Types::Duration
|
188
|
+
attr_accessor http_read_timeout: Types::Duration
|
189
|
+
attr_accessor http_write_timeout: Types::Duration
|
190
|
+
attr_accessor influxql_max_select_buckets: ::Integer
|
191
|
+
attr_accessor influxql_max_select_point: ::Integer
|
192
|
+
attr_accessor influxql_max_select_series: ::Integer
|
193
|
+
attr_accessor pprof_disabled: bool
|
194
|
+
attr_accessor query_initial_memory_bytes: ::Integer
|
195
|
+
attr_accessor query_max_memory_bytes: ::Integer
|
196
|
+
attr_accessor query_memory_bytes: ::Integer
|
197
|
+
attr_accessor session_length: ::Integer
|
198
|
+
attr_accessor session_renew_disabled: bool
|
199
|
+
attr_accessor storage_cache_max_memory_size: ::Integer
|
200
|
+
attr_accessor storage_cache_snapshot_memory_size: ::Integer
|
201
|
+
attr_accessor storage_cache_snapshot_write_cold_duration: Types::Duration
|
202
|
+
attr_accessor storage_compact_full_write_cold_duration: Types::Duration
|
203
|
+
attr_accessor storage_compact_throughput_burst: ::Integer
|
204
|
+
attr_accessor storage_max_concurrent_compactions: ::Integer
|
205
|
+
attr_accessor storage_max_index_log_file_size: ::Integer
|
206
|
+
attr_accessor storage_no_validate_field_size: bool
|
207
|
+
attr_accessor storage_retention_check_interval: Types::Duration
|
208
|
+
attr_accessor storage_series_file_max_concurrent_snapshot_compactions: ::Integer
|
209
|
+
attr_accessor storage_series_id_set_cache_size: ::Integer
|
210
|
+
attr_accessor storage_wal_max_concurrent_writes: ::Integer
|
211
|
+
attr_accessor storage_wal_max_write_delay: Types::Duration
|
212
|
+
attr_accessor ui_disabled: bool
|
175
213
|
SENSITIVE: []
|
176
214
|
end
|
177
215
|
|
@@ -270,6 +308,7 @@ module Aws::TimestreamInfluxDB
|
|
270
308
|
attr_accessor identifier: ::String
|
271
309
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
272
310
|
attr_accessor db_parameter_group_identifier: ::String
|
311
|
+
attr_accessor port: ::Integer
|
273
312
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
274
313
|
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
275
314
|
SENSITIVE: []
|
@@ -281,6 +320,7 @@ module Aws::TimestreamInfluxDB
|
|
281
320
|
attr_accessor arn: ::String
|
282
321
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
283
322
|
attr_accessor endpoint: ::String
|
323
|
+
attr_accessor port: ::Integer
|
284
324
|
attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
285
325
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
286
326
|
attr_accessor allocated_storage: ::Integer
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-timestreaminfluxdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|