aws-sdk-neptune 1.60.0 → 1.61.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-neptune/client.rb +103 -4
- data/lib/aws-sdk-neptune/client_api.rb +9 -0
- data/lib/aws-sdk-neptune/types.rb +123 -10
- data/lib/aws-sdk-neptune.rb +1 -1
- 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: 3d61578e02a858131c5ebc10957dfadceea2c5459d9271b7b34019e453bc2e50
|
|
4
|
+
data.tar.gz: b86da1d9321b49db6ee1883dd440ef915cb91bc4d91b5362b7dceb708d1cb3e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8558e2a63bf6fd55572d730d20b4927f4d70accd3b450ba9aaa4ac27154da3b1fc31caffba4d2bda05da8fb07f27f9f40e0514ea45bc18cf7f044841f894f62e
|
|
7
|
+
data.tar.gz: ab8be60cce0726d45b8d8ac7018041555147eddaad96cf45ad0533afccbded03780fd3157783b009714395c48ab9590087646d5b1f3219131a19efc06b2f05a8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.61.0 (2023-12-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds a new parameter configuration setting to the Neptune cluster related APIs that can be leveraged to switch between the underlying supported storage modes.
|
|
8
|
+
|
|
4
9
|
1.60.0 (2023-11-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.61.0
|
|
@@ -778,6 +778,7 @@ module Aws::Neptune
|
|
|
778
778
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
|
779
779
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
|
780
780
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
|
781
|
+
# resp.db_cluster_snapshot.storage_type #=> String
|
|
781
782
|
#
|
|
782
783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
|
|
783
784
|
#
|
|
@@ -1056,8 +1057,14 @@ module Aws::Neptune
|
|
|
1056
1057
|
# Default: `false`.
|
|
1057
1058
|
#
|
|
1058
1059
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
|
1059
|
-
#
|
|
1060
|
-
# CloudWatch Logs.
|
|
1060
|
+
# A list of the log types that this DB cluster should export to
|
|
1061
|
+
# CloudWatch Logs. Valid log types are: `audit` (to publish audit logs)
|
|
1062
|
+
# and `slowquery` (to publish slow-query logs). See [Publishing Neptune
|
|
1063
|
+
# logs to Amazon CloudWatch logs][1].
|
|
1064
|
+
#
|
|
1065
|
+
#
|
|
1066
|
+
#
|
|
1067
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
|
|
1061
1068
|
#
|
|
1062
1069
|
# @option params [Boolean] :deletion_protection
|
|
1063
1070
|
# A value that indicates whether the DB cluster has deletion protection
|
|
@@ -1078,6 +1085,27 @@ module Aws::Neptune
|
|
|
1078
1085
|
# The ID of the Neptune global database to which this new DB cluster
|
|
1079
1086
|
# should be added.
|
|
1080
1087
|
#
|
|
1088
|
+
# @option params [String] :storage_type
|
|
1089
|
+
# The storage type to associate with the DB cluster.
|
|
1090
|
+
#
|
|
1091
|
+
# Valid Values:
|
|
1092
|
+
#
|
|
1093
|
+
# * `standard | iopt1`
|
|
1094
|
+
#
|
|
1095
|
+
# ^
|
|
1096
|
+
#
|
|
1097
|
+
# Default:
|
|
1098
|
+
#
|
|
1099
|
+
# * `standard`
|
|
1100
|
+
#
|
|
1101
|
+
# ^
|
|
1102
|
+
#
|
|
1103
|
+
# <note markdown="1"> When you create a Neptune cluster with the storage type set to
|
|
1104
|
+
# `iopt1`, the storage type is returned in the response. The storage
|
|
1105
|
+
# type isn't returned when you set it to `standard`.
|
|
1106
|
+
#
|
|
1107
|
+
# </note>
|
|
1108
|
+
#
|
|
1081
1109
|
# @option params [String] :source_region
|
|
1082
1110
|
# The source region of the snapshot. This is only needed when the
|
|
1083
1111
|
# shapshot is encrypted and in a different region.
|
|
@@ -1124,6 +1152,7 @@ module Aws::Neptune
|
|
|
1124
1152
|
# max_capacity: 1.0,
|
|
1125
1153
|
# },
|
|
1126
1154
|
# global_cluster_identifier: "GlobalClusterIdentifier",
|
|
1155
|
+
# storage_type: "String",
|
|
1127
1156
|
# source_region: "String",
|
|
1128
1157
|
# })
|
|
1129
1158
|
#
|
|
@@ -1188,6 +1217,7 @@ module Aws::Neptune
|
|
|
1188
1217
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
1189
1218
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
1190
1219
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
1220
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
1191
1221
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
1192
1222
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
1193
1223
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -1196,6 +1226,8 @@ module Aws::Neptune
|
|
|
1196
1226
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
1197
1227
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
1198
1228
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
1229
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
1230
|
+
# resp.db_cluster.storage_type #=> String
|
|
1199
1231
|
#
|
|
1200
1232
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBCluster AWS API Documentation
|
|
1201
1233
|
#
|
|
@@ -1449,6 +1481,7 @@ module Aws::Neptune
|
|
|
1449
1481
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
|
1450
1482
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
|
1451
1483
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
|
1484
|
+
# resp.db_cluster_snapshot.storage_type #=> String
|
|
1452
1485
|
#
|
|
1453
1486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
|
1454
1487
|
#
|
|
@@ -2365,6 +2398,7 @@ module Aws::Neptune
|
|
|
2365
2398
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
2366
2399
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
2367
2400
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
2401
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
2368
2402
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
2369
2403
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
2370
2404
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -2373,6 +2407,8 @@ module Aws::Neptune
|
|
|
2373
2407
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
2374
2408
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
2375
2409
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
2410
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
2411
|
+
# resp.db_cluster.storage_type #=> String
|
|
2376
2412
|
#
|
|
2377
2413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
2378
2414
|
#
|
|
@@ -2512,6 +2548,7 @@ module Aws::Neptune
|
|
|
2512
2548
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
|
2513
2549
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
|
2514
2550
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
|
2551
|
+
# resp.db_cluster_snapshot.storage_type #=> String
|
|
2515
2552
|
#
|
|
2516
2553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
|
2517
2554
|
#
|
|
@@ -3299,6 +3336,7 @@ module Aws::Neptune
|
|
|
3299
3336
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
|
3300
3337
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
|
3301
3338
|
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
|
3339
|
+
# resp.db_cluster_snapshots[0].storage_type #=> String
|
|
3302
3340
|
#
|
|
3303
3341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusterSnapshots AWS API Documentation
|
|
3304
3342
|
#
|
|
@@ -3443,6 +3481,7 @@ module Aws::Neptune
|
|
|
3443
3481
|
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
3444
3482
|
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
|
3445
3483
|
# resp.db_clusters[0].pending_modified_values.backup_retention_period #=> Integer
|
|
3484
|
+
# resp.db_clusters[0].pending_modified_values.storage_type #=> String
|
|
3446
3485
|
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
|
3447
3486
|
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
|
3448
3487
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
|
@@ -3451,6 +3490,8 @@ module Aws::Neptune
|
|
|
3451
3490
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
3452
3491
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
3453
3492
|
# resp.db_clusters[0].global_cluster_identifier #=> String
|
|
3493
|
+
# resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
|
|
3494
|
+
# resp.db_clusters[0].storage_type #=> String
|
|
3454
3495
|
#
|
|
3455
3496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusters AWS API Documentation
|
|
3456
3497
|
#
|
|
@@ -4781,6 +4822,7 @@ module Aws::Neptune
|
|
|
4781
4822
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
4782
4823
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
4783
4824
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
4825
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
4784
4826
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
4785
4827
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
4786
4828
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -4789,6 +4831,8 @@ module Aws::Neptune
|
|
|
4789
4831
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
4790
4832
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
4791
4833
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
4834
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
4835
|
+
# resp.db_cluster.storage_type #=> String
|
|
4792
4836
|
#
|
|
4793
4837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
4794
4838
|
#
|
|
@@ -5025,7 +5069,12 @@ module Aws::Neptune
|
|
|
5025
5069
|
#
|
|
5026
5070
|
# @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
|
5027
5071
|
# The configuration setting for the log types to be enabled for export
|
|
5028
|
-
# to CloudWatch Logs for a specific DB cluster.
|
|
5072
|
+
# to CloudWatch Logs for a specific DB cluster. See [Using the CLI to
|
|
5073
|
+
# publish Neptune audit logs to CloudWatch Logs][1].
|
|
5074
|
+
#
|
|
5075
|
+
#
|
|
5076
|
+
#
|
|
5077
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html#cloudwatch-logs-cli
|
|
5029
5078
|
#
|
|
5030
5079
|
# @option params [String] :engine_version
|
|
5031
5080
|
# The version number of the database engine to which you want to
|
|
@@ -5087,6 +5136,21 @@ module Aws::Neptune
|
|
|
5087
5136
|
#
|
|
5088
5137
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
5089
5138
|
#
|
|
5139
|
+
# @option params [String] :storage_type
|
|
5140
|
+
# The storage type to associate with the DB cluster.
|
|
5141
|
+
#
|
|
5142
|
+
# Valid Values:
|
|
5143
|
+
#
|
|
5144
|
+
# * `standard | iopt1`
|
|
5145
|
+
#
|
|
5146
|
+
# ^
|
|
5147
|
+
#
|
|
5148
|
+
# Default:
|
|
5149
|
+
#
|
|
5150
|
+
# * `standard`
|
|
5151
|
+
#
|
|
5152
|
+
# ^
|
|
5153
|
+
#
|
|
5090
5154
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5091
5155
|
#
|
|
5092
5156
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -5119,6 +5183,7 @@ module Aws::Neptune
|
|
|
5119
5183
|
# min_capacity: 1.0,
|
|
5120
5184
|
# max_capacity: 1.0,
|
|
5121
5185
|
# },
|
|
5186
|
+
# storage_type: "String",
|
|
5122
5187
|
# })
|
|
5123
5188
|
#
|
|
5124
5189
|
# @example Response structure
|
|
@@ -5182,6 +5247,7 @@ module Aws::Neptune
|
|
|
5182
5247
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
5183
5248
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
5184
5249
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
5250
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
5185
5251
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
5186
5252
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
5187
5253
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -5190,6 +5256,8 @@ module Aws::Neptune
|
|
|
5190
5256
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
5191
5257
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
5192
5258
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
5259
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5260
|
+
# resp.db_cluster.storage_type #=> String
|
|
5193
5261
|
#
|
|
5194
5262
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
5195
5263
|
#
|
|
@@ -6243,6 +6311,7 @@ module Aws::Neptune
|
|
|
6243
6311
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6244
6312
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
6245
6313
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
6314
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
6246
6315
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
6247
6316
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
6248
6317
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -6251,6 +6320,8 @@ module Aws::Neptune
|
|
|
6251
6320
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
6252
6321
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
6253
6322
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
6323
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
6324
|
+
# resp.db_cluster.storage_type #=> String
|
|
6254
6325
|
#
|
|
6255
6326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
|
6256
6327
|
#
|
|
@@ -6845,6 +6916,13 @@ module Aws::Neptune
|
|
|
6845
6916
|
#
|
|
6846
6917
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
6847
6918
|
#
|
|
6919
|
+
# @option params [String] :storage_type
|
|
6920
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
6921
|
+
#
|
|
6922
|
+
# Valid values: `standard`, `iopt1`
|
|
6923
|
+
#
|
|
6924
|
+
# Default: `standard`
|
|
6925
|
+
#
|
|
6848
6926
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6849
6927
|
#
|
|
6850
6928
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -6878,6 +6956,7 @@ module Aws::Neptune
|
|
|
6878
6956
|
# min_capacity: 1.0,
|
|
6879
6957
|
# max_capacity: 1.0,
|
|
6880
6958
|
# },
|
|
6959
|
+
# storage_type: "String",
|
|
6881
6960
|
# })
|
|
6882
6961
|
#
|
|
6883
6962
|
# @example Response structure
|
|
@@ -6941,6 +7020,7 @@ module Aws::Neptune
|
|
|
6941
7020
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6942
7021
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
6943
7022
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
7023
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
6944
7024
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
6945
7025
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
6946
7026
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -6949,6 +7029,8 @@ module Aws::Neptune
|
|
|
6949
7029
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
6950
7030
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
6951
7031
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7032
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7033
|
+
# resp.db_cluster.storage_type #=> String
|
|
6952
7034
|
#
|
|
6953
7035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
6954
7036
|
#
|
|
@@ -7124,6 +7206,13 @@ module Aws::Neptune
|
|
|
7124
7206
|
#
|
|
7125
7207
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
7126
7208
|
#
|
|
7209
|
+
# @option params [String] :storage_type
|
|
7210
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
7211
|
+
#
|
|
7212
|
+
# Valid values: `standard`, `iopt1`
|
|
7213
|
+
#
|
|
7214
|
+
# Default: `standard`
|
|
7215
|
+
#
|
|
7127
7216
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7128
7217
|
#
|
|
7129
7218
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -7155,6 +7244,7 @@ module Aws::Neptune
|
|
|
7155
7244
|
# min_capacity: 1.0,
|
|
7156
7245
|
# max_capacity: 1.0,
|
|
7157
7246
|
# },
|
|
7247
|
+
# storage_type: "String",
|
|
7158
7248
|
# })
|
|
7159
7249
|
#
|
|
7160
7250
|
# @example Response structure
|
|
@@ -7218,6 +7308,7 @@ module Aws::Neptune
|
|
|
7218
7308
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7219
7309
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
7220
7310
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
7311
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7221
7312
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7222
7313
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7223
7314
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -7226,6 +7317,8 @@ module Aws::Neptune
|
|
|
7226
7317
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
7227
7318
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
7228
7319
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7320
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7321
|
+
# resp.db_cluster.storage_type #=> String
|
|
7229
7322
|
#
|
|
7230
7323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
7231
7324
|
#
|
|
@@ -7315,6 +7408,7 @@ module Aws::Neptune
|
|
|
7315
7408
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7316
7409
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
7317
7410
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
7411
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7318
7412
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7319
7413
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7320
7414
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -7323,6 +7417,8 @@ module Aws::Neptune
|
|
|
7323
7417
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
7324
7418
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
7325
7419
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7420
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7421
|
+
# resp.db_cluster.storage_type #=> String
|
|
7326
7422
|
#
|
|
7327
7423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBCluster AWS API Documentation
|
|
7328
7424
|
#
|
|
@@ -7415,6 +7511,7 @@ module Aws::Neptune
|
|
|
7415
7511
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7416
7512
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
7417
7513
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
|
7514
|
+
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7418
7515
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7419
7516
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7420
7517
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
@@ -7423,6 +7520,8 @@ module Aws::Neptune
|
|
|
7423
7520
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
7424
7521
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
7425
7522
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7523
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7524
|
+
# resp.db_cluster.storage_type #=> String
|
|
7426
7525
|
#
|
|
7427
7526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBCluster AWS API Documentation
|
|
7428
7527
|
#
|
|
@@ -7446,7 +7545,7 @@ module Aws::Neptune
|
|
|
7446
7545
|
params: params,
|
|
7447
7546
|
config: config)
|
|
7448
7547
|
context[:gem_name] = 'aws-sdk-neptune'
|
|
7449
|
-
context[:gem_version] = '1.
|
|
7548
|
+
context[:gem_version] = '1.61.0'
|
|
7450
7549
|
Seahorse::Client::Request.new(handlers, context)
|
|
7451
7550
|
end
|
|
7452
7551
|
|
|
@@ -371,6 +371,7 @@ module Aws::Neptune
|
|
|
371
371
|
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
372
372
|
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
373
373
|
ClusterPendingModifiedValues.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
374
|
+
ClusterPendingModifiedValues.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
374
375
|
ClusterPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
|
375
376
|
ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
376
377
|
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
|
@@ -452,6 +453,7 @@ module Aws::Neptune
|
|
|
452
453
|
CreateDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
453
454
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
454
455
|
CreateDBClusterMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
|
456
|
+
CreateDBClusterMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
455
457
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
456
458
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
457
459
|
|
|
@@ -607,6 +609,8 @@ module Aws::Neptune
|
|
|
607
609
|
DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
|
608
610
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
|
609
611
|
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
|
612
|
+
DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
|
|
613
|
+
DBCluster.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
610
614
|
DBCluster.struct_class = Types::DBCluster
|
|
611
615
|
|
|
612
616
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
|
@@ -713,6 +717,7 @@ module Aws::Neptune
|
|
|
713
717
|
DBClusterSnapshot.add_member(:db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotArn"))
|
|
714
718
|
DBClusterSnapshot.add_member(:source_db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterSnapshotArn"))
|
|
715
719
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
720
|
+
DBClusterSnapshot.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
716
721
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
|
717
722
|
|
|
718
723
|
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
|
@@ -1308,6 +1313,7 @@ module Aws::Neptune
|
|
|
1308
1313
|
ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
1309
1314
|
ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
|
1310
1315
|
ModifyDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1316
|
+
ModifyDBClusterMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1311
1317
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
|
1312
1318
|
|
|
1313
1319
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
|
@@ -1574,6 +1580,7 @@ module Aws::Neptune
|
|
|
1574
1580
|
RestoreDBClusterFromSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
1575
1581
|
RestoreDBClusterFromSnapshotMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
|
1576
1582
|
RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1583
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1577
1584
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
1578
1585
|
|
|
1579
1586
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -1595,6 +1602,7 @@ module Aws::Neptune
|
|
|
1595
1602
|
RestoreDBClusterToPointInTimeMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
|
1596
1603
|
RestoreDBClusterToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
1597
1604
|
RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1605
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1598
1606
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
1599
1607
|
|
|
1600
1608
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -2357,6 +2365,7 @@ module Aws::Neptune
|
|
|
2357
2365
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBSecurityGroupStateFault)
|
|
2358
2366
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
2359
2367
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
|
|
2368
|
+
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
|
2360
2369
|
end)
|
|
2361
2370
|
|
|
2362
2371
|
api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -213,6 +213,14 @@ module Aws::Neptune
|
|
|
213
213
|
# The `EnableLogTypes` and `DisableLogTypes` arrays determine which logs
|
|
214
214
|
# will be exported (or not exported) to CloudWatch Logs.
|
|
215
215
|
#
|
|
216
|
+
# Valid log types are: `audit` (to publish audit logs) and `slowquery`
|
|
217
|
+
# (to publish slow-query logs). See [Publishing Neptune logs to Amazon
|
|
218
|
+
# CloudWatch logs][1].
|
|
219
|
+
#
|
|
220
|
+
#
|
|
221
|
+
#
|
|
222
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
|
|
223
|
+
#
|
|
216
224
|
# @!attribute [rw] enable_log_types
|
|
217
225
|
# The list of log types to enable.
|
|
218
226
|
# @return [Array<String>]
|
|
@@ -257,6 +265,10 @@ module Aws::Neptune
|
|
|
257
265
|
# The number of days for which automatic DB snapshots are retained.
|
|
258
266
|
# @return [Integer]
|
|
259
267
|
#
|
|
268
|
+
# @!attribute [rw] storage_type
|
|
269
|
+
# The storage type for the DB cluster.
|
|
270
|
+
# @return [String]
|
|
271
|
+
#
|
|
260
272
|
# @!attribute [rw] allocated_storage
|
|
261
273
|
# The allocated storage size in gibibytes (GiB) for database engines.
|
|
262
274
|
# For Neptune, `AllocatedStorage` always returns 1, because Neptune DB
|
|
@@ -277,6 +289,7 @@ module Aws::Neptune
|
|
|
277
289
|
:iam_database_authentication_enabled,
|
|
278
290
|
:engine_version,
|
|
279
291
|
:backup_retention_period,
|
|
292
|
+
:storage_type,
|
|
280
293
|
:allocated_storage,
|
|
281
294
|
:iops)
|
|
282
295
|
SENSITIVE = []
|
|
@@ -857,8 +870,14 @@ module Aws::Neptune
|
|
|
857
870
|
# @return [Boolean]
|
|
858
871
|
#
|
|
859
872
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
|
860
|
-
#
|
|
861
|
-
# CloudWatch Logs.
|
|
873
|
+
# A list of the log types that this DB cluster should export to
|
|
874
|
+
# CloudWatch Logs. Valid log types are: `audit` (to publish audit
|
|
875
|
+
# logs) and `slowquery` (to publish slow-query logs). See [Publishing
|
|
876
|
+
# Neptune logs to Amazon CloudWatch logs][1].
|
|
877
|
+
#
|
|
878
|
+
#
|
|
879
|
+
#
|
|
880
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
|
|
862
881
|
# @return [Array<String>]
|
|
863
882
|
#
|
|
864
883
|
# @!attribute [rw] deletion_protection
|
|
@@ -884,6 +903,28 @@ module Aws::Neptune
|
|
|
884
903
|
# should be added.
|
|
885
904
|
# @return [String]
|
|
886
905
|
#
|
|
906
|
+
# @!attribute [rw] storage_type
|
|
907
|
+
# The storage type to associate with the DB cluster.
|
|
908
|
+
#
|
|
909
|
+
# Valid Values:
|
|
910
|
+
#
|
|
911
|
+
# * `standard | iopt1`
|
|
912
|
+
#
|
|
913
|
+
# ^
|
|
914
|
+
#
|
|
915
|
+
# Default:
|
|
916
|
+
#
|
|
917
|
+
# * `standard`
|
|
918
|
+
#
|
|
919
|
+
# ^
|
|
920
|
+
#
|
|
921
|
+
# <note markdown="1"> When you create a Neptune cluster with the storage type set to
|
|
922
|
+
# `iopt1`, the storage type is returned in the response. The storage
|
|
923
|
+
# type isn't returned when you set it to `standard`.
|
|
924
|
+
#
|
|
925
|
+
# </note>
|
|
926
|
+
# @return [String]
|
|
927
|
+
#
|
|
887
928
|
# @!attribute [rw] source_region
|
|
888
929
|
# The source region of the snapshot. This is only needed when the
|
|
889
930
|
# shapshot is encrypted and in a different region.
|
|
@@ -919,6 +960,7 @@ module Aws::Neptune
|
|
|
919
960
|
:deletion_protection,
|
|
920
961
|
:serverless_v2_scaling_configuration,
|
|
921
962
|
:global_cluster_identifier,
|
|
963
|
+
:storage_type,
|
|
922
964
|
:source_region)
|
|
923
965
|
SENSITIVE = []
|
|
924
966
|
include Aws::Structure
|
|
@@ -1885,8 +1927,15 @@ module Aws::Neptune
|
|
|
1885
1927
|
# @return [Boolean]
|
|
1886
1928
|
#
|
|
1887
1929
|
# @!attribute [rw] enabled_cloudwatch_logs_exports
|
|
1888
|
-
# A list of log types that this DB cluster is configured to export
|
|
1889
|
-
# CloudWatch Logs.
|
|
1930
|
+
# A list of the log types that this DB cluster is configured to export
|
|
1931
|
+
# to CloudWatch Logs. Valid log types are: `audit` (to publish audit
|
|
1932
|
+
# logs to CloudWatch) and slowquery (to publish slow-query logs to
|
|
1933
|
+
# CloudWatch). See [Publishing Neptune logs to Amazon CloudWatch
|
|
1934
|
+
# logs][1].
|
|
1935
|
+
#
|
|
1936
|
+
#
|
|
1937
|
+
#
|
|
1938
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
|
|
1890
1939
|
# @return [Array<String>]
|
|
1891
1940
|
#
|
|
1892
1941
|
# @!attribute [rw] pending_modified_values
|
|
@@ -1925,6 +1974,15 @@ module Aws::Neptune
|
|
|
1925
1974
|
# identifier is the unique key that identifies a global database.
|
|
1926
1975
|
# @return [String]
|
|
1927
1976
|
#
|
|
1977
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
1978
|
+
# The next time you can modify the DB cluster to use the `iopt1`
|
|
1979
|
+
# storage type.
|
|
1980
|
+
# @return [Time]
|
|
1981
|
+
#
|
|
1982
|
+
# @!attribute [rw] storage_type
|
|
1983
|
+
# The storage type associated with the DB cluster.
|
|
1984
|
+
# @return [String]
|
|
1985
|
+
#
|
|
1928
1986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
|
1929
1987
|
#
|
|
1930
1988
|
class DBCluster < Struct.new(
|
|
@@ -1970,7 +2028,9 @@ module Aws::Neptune
|
|
|
1970
2028
|
:cross_account_clone,
|
|
1971
2029
|
:automatic_restart_time,
|
|
1972
2030
|
:serverless_v2_scaling_configuration,
|
|
1973
|
-
:global_cluster_identifier
|
|
2031
|
+
:global_cluster_identifier,
|
|
2032
|
+
:io_optimized_next_allowed_modification_time,
|
|
2033
|
+
:storage_type)
|
|
1974
2034
|
SENSITIVE = []
|
|
1975
2035
|
include Aws::Structure
|
|
1976
2036
|
end
|
|
@@ -2464,6 +2524,10 @@ module Aws::Neptune
|
|
|
2464
2524
|
# accounts to database accounts is enabled, and otherwise false.
|
|
2465
2525
|
# @return [Boolean]
|
|
2466
2526
|
#
|
|
2527
|
+
# @!attribute [rw] storage_type
|
|
2528
|
+
# The storage type associated with the DB cluster snapshot.
|
|
2529
|
+
# @return [String]
|
|
2530
|
+
#
|
|
2467
2531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshot AWS API Documentation
|
|
2468
2532
|
#
|
|
2469
2533
|
class DBClusterSnapshot < Struct.new(
|
|
@@ -2486,7 +2550,8 @@ module Aws::Neptune
|
|
|
2486
2550
|
:kms_key_id,
|
|
2487
2551
|
:db_cluster_snapshot_arn,
|
|
2488
2552
|
:source_db_cluster_snapshot_arn,
|
|
2489
|
-
:iam_database_authentication_enabled
|
|
2553
|
+
:iam_database_authentication_enabled,
|
|
2554
|
+
:storage_type)
|
|
2490
2555
|
SENSITIVE = []
|
|
2491
2556
|
include Aws::Structure
|
|
2492
2557
|
end
|
|
@@ -5712,7 +5777,12 @@ module Aws::Neptune
|
|
|
5712
5777
|
#
|
|
5713
5778
|
# @!attribute [rw] cloudwatch_logs_export_configuration
|
|
5714
5779
|
# The configuration setting for the log types to be enabled for export
|
|
5715
|
-
# to CloudWatch Logs for a specific DB cluster.
|
|
5780
|
+
# to CloudWatch Logs for a specific DB cluster. See [Using the CLI to
|
|
5781
|
+
# publish Neptune audit logs to CloudWatch Logs][1].
|
|
5782
|
+
#
|
|
5783
|
+
#
|
|
5784
|
+
#
|
|
5785
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html#cloudwatch-logs-cli
|
|
5716
5786
|
# @return [Types::CloudwatchLogsExportConfiguration]
|
|
5717
5787
|
#
|
|
5718
5788
|
# @!attribute [rw] engine_version
|
|
@@ -5783,6 +5853,22 @@ module Aws::Neptune
|
|
|
5783
5853
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
5784
5854
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
5785
5855
|
#
|
|
5856
|
+
# @!attribute [rw] storage_type
|
|
5857
|
+
# The storage type to associate with the DB cluster.
|
|
5858
|
+
#
|
|
5859
|
+
# Valid Values:
|
|
5860
|
+
#
|
|
5861
|
+
# * `standard | iopt1`
|
|
5862
|
+
#
|
|
5863
|
+
# ^
|
|
5864
|
+
#
|
|
5865
|
+
# Default:
|
|
5866
|
+
#
|
|
5867
|
+
# * `standard`
|
|
5868
|
+
#
|
|
5869
|
+
# ^
|
|
5870
|
+
# @return [String]
|
|
5871
|
+
#
|
|
5786
5872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
5787
5873
|
#
|
|
5788
5874
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -5804,7 +5890,8 @@ module Aws::Neptune
|
|
|
5804
5890
|
:db_instance_parameter_group_name,
|
|
5805
5891
|
:deletion_protection,
|
|
5806
5892
|
:copy_tags_to_snapshot,
|
|
5807
|
-
:serverless_v2_scaling_configuration
|
|
5893
|
+
:serverless_v2_scaling_configuration,
|
|
5894
|
+
:storage_type)
|
|
5808
5895
|
SENSITIVE = []
|
|
5809
5896
|
include Aws::Structure
|
|
5810
5897
|
end
|
|
@@ -6744,6 +6831,14 @@ module Aws::Neptune
|
|
|
6744
6831
|
# words, these log types are in the process of being activated or
|
|
6745
6832
|
# deactivated.
|
|
6746
6833
|
#
|
|
6834
|
+
# Valid log types are: `audit` (to publish audit logs) and `slowquery`
|
|
6835
|
+
# (to publish slow-query logs). See [Publishing Neptune logs to Amazon
|
|
6836
|
+
# CloudWatch logs][1].
|
|
6837
|
+
#
|
|
6838
|
+
#
|
|
6839
|
+
#
|
|
6840
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
|
|
6841
|
+
#
|
|
6747
6842
|
# @!attribute [rw] log_types_to_enable
|
|
6748
6843
|
# Log types that are in the process of being deactivated. After they
|
|
6749
6844
|
# are deactivated, these log types aren't exported to CloudWatch
|
|
@@ -7386,6 +7481,14 @@ module Aws::Neptune
|
|
|
7386
7481
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
7387
7482
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
7388
7483
|
#
|
|
7484
|
+
# @!attribute [rw] storage_type
|
|
7485
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
7486
|
+
#
|
|
7487
|
+
# Valid values: `standard`, `iopt1`
|
|
7488
|
+
#
|
|
7489
|
+
# Default: `standard`
|
|
7490
|
+
# @return [String]
|
|
7491
|
+
#
|
|
7389
7492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
7390
7493
|
#
|
|
7391
7494
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -7406,7 +7509,8 @@ module Aws::Neptune
|
|
|
7406
7509
|
:db_cluster_parameter_group_name,
|
|
7407
7510
|
:deletion_protection,
|
|
7408
7511
|
:copy_tags_to_snapshot,
|
|
7409
|
-
:serverless_v2_scaling_configuration
|
|
7512
|
+
:serverless_v2_scaling_configuration,
|
|
7513
|
+
:storage_type)
|
|
7410
7514
|
SENSITIVE = []
|
|
7411
7515
|
include Aws::Structure
|
|
7412
7516
|
end
|
|
@@ -7592,6 +7696,14 @@ module Aws::Neptune
|
|
|
7592
7696
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
|
7593
7697
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
7594
7698
|
#
|
|
7699
|
+
# @!attribute [rw] storage_type
|
|
7700
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
7701
|
+
#
|
|
7702
|
+
# Valid values: `standard`, `iopt1`
|
|
7703
|
+
#
|
|
7704
|
+
# Default: `standard`
|
|
7705
|
+
# @return [String]
|
|
7706
|
+
#
|
|
7595
7707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
7596
7708
|
#
|
|
7597
7709
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -7610,7 +7722,8 @@ module Aws::Neptune
|
|
|
7610
7722
|
:enable_cloudwatch_logs_exports,
|
|
7611
7723
|
:db_cluster_parameter_group_name,
|
|
7612
7724
|
:deletion_protection,
|
|
7613
|
-
:serverless_v2_scaling_configuration
|
|
7725
|
+
:serverless_v2_scaling_configuration,
|
|
7726
|
+
:storage_type)
|
|
7614
7727
|
SENSITIVE = []
|
|
7615
7728
|
include Aws::Structure
|
|
7616
7729
|
end
|
data/lib/aws-sdk-neptune.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-neptune
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.61.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: 2023-11
|
|
11
|
+
date: 2023-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|