aws-sdk-neptune 1.49.0 → 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune/client.rb +114 -4
- data/lib/aws-sdk-neptune/client_api.rb +13 -1
- data/lib/aws-sdk-neptune/endpoint_provider.rb +28 -40
- data/lib/aws-sdk-neptune/types.rb +68 -2
- 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: 5483e7e018d9bc0406dbcc449bb65084e1ed6594689727c0a0eec8715bf02925
|
4
|
+
data.tar.gz: 6695f0fbbffd0a5cfad0c78684edf5c0c2db20b8687b225f0df0181824915382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22b1a7f6dfce4a7ea32c91d436272fce81ca91a331cabf600b9f67895051de5e7e9379716ed8151fcd7b4065f57a78158a04d5639af84052f36a069e07c04466
|
7
|
+
data.tar.gz: 2099426fccc1919314c2fc2e367c4df4056dd2df27230f3aa121390858447cbac686694b5653bbfa1432d648677a0e1dbea70aa4062de42d510024da4174a364
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2023-03-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release makes following few changes. db-cluster-identifier is now a required parameter of create-db-instance. describe-db-cluster will now return PendingModifiedValues and GlobalClusterIdentifier fields in the response.
|
8
|
+
|
4
9
|
1.49.0 (2023-01-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -1005,7 +1005,7 @@ module Aws::Neptune
|
|
1005
1005
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
1006
1006
|
# KMS encryption key.
|
1007
1007
|
#
|
1008
|
-
# If an encryption key is not specified in `KmsKeyId
|
1008
|
+
# If an encryption key is not specified in `KmsKeyId`:
|
1009
1009
|
#
|
1010
1010
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
1011
1011
|
# then Amazon Neptune will use the encryption key used to encrypt the
|
@@ -1160,11 +1160,22 @@ module Aws::Neptune
|
|
1160
1160
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
1161
1161
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
1162
1162
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
1163
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
1164
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
1165
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
1166
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
1167
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
1168
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
1169
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
1170
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
1171
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
1172
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
1163
1173
|
# resp.db_cluster.deletion_protection #=> Boolean
|
1164
1174
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
1165
1175
|
# resp.db_cluster.automatic_restart_time #=> Time
|
1166
1176
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
1167
1177
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
1178
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
1168
1179
|
#
|
1169
1180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBCluster AWS API Documentation
|
1170
1181
|
#
|
@@ -1591,7 +1602,7 @@ module Aws::Neptune
|
|
1591
1602
|
# @option params [Array<Types::Tag>] :tags
|
1592
1603
|
# The tags to assign to the new instance.
|
1593
1604
|
#
|
1594
|
-
# @option params [String] :db_cluster_identifier
|
1605
|
+
# @option params [required, String] :db_cluster_identifier
|
1595
1606
|
# The identifier of the DB cluster that the instance will belong to.
|
1596
1607
|
#
|
1597
1608
|
# For information on creating a DB cluster, see CreateDBCluster.
|
@@ -1741,7 +1752,7 @@ module Aws::Neptune
|
|
1741
1752
|
# value: "String",
|
1742
1753
|
# },
|
1743
1754
|
# ],
|
1744
|
-
# db_cluster_identifier: "String",
|
1755
|
+
# db_cluster_identifier: "String", # required
|
1745
1756
|
# storage_type: "String",
|
1746
1757
|
# tde_credential_arn: "String",
|
1747
1758
|
# tde_credential_password: "String",
|
@@ -2326,11 +2337,22 @@ module Aws::Neptune
|
|
2326
2337
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
2327
2338
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
2328
2339
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
2340
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
2341
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
2342
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
2343
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
2344
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
2345
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
2346
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
2347
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
2348
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
2349
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
2329
2350
|
# resp.db_cluster.deletion_protection #=> Boolean
|
2330
2351
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
2331
2352
|
# resp.db_cluster.automatic_restart_time #=> Time
|
2332
2353
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
2333
2354
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
2355
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
2334
2356
|
#
|
2335
2357
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBCluster AWS API Documentation
|
2336
2358
|
#
|
@@ -3393,11 +3415,22 @@ module Aws::Neptune
|
|
3393
3415
|
# resp.db_clusters[0].copy_tags_to_snapshot #=> Boolean
|
3394
3416
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports #=> Array
|
3395
3417
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports[0] #=> String
|
3418
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
3419
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
3420
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
3421
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
3422
|
+
# resp.db_clusters[0].pending_modified_values.db_cluster_identifier #=> String
|
3423
|
+
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
3424
|
+
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
3425
|
+
# resp.db_clusters[0].pending_modified_values.backup_retention_period #=> Integer
|
3426
|
+
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
3427
|
+
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
3396
3428
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
3397
3429
|
# resp.db_clusters[0].cross_account_clone #=> Boolean
|
3398
3430
|
# resp.db_clusters[0].automatic_restart_time #=> Time
|
3399
3431
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
3400
3432
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
3433
|
+
# resp.db_clusters[0].global_cluster_identifier #=> String
|
3401
3434
|
#
|
3402
3435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusters AWS API Documentation
|
3403
3436
|
#
|
@@ -4720,11 +4753,22 @@ module Aws::Neptune
|
|
4720
4753
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
4721
4754
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
4722
4755
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
4756
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
4757
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
4758
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
4759
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
4760
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
4761
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
4762
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
4763
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
4764
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
4765
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
4723
4766
|
# resp.db_cluster.deletion_protection #=> Boolean
|
4724
4767
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
4725
4768
|
# resp.db_cluster.automatic_restart_time #=> Time
|
4726
4769
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
4727
4770
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
4771
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
4728
4772
|
#
|
4729
4773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/FailoverDBCluster AWS API Documentation
|
4730
4774
|
#
|
@@ -5111,11 +5155,22 @@ module Aws::Neptune
|
|
5111
5155
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
5112
5156
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
5113
5157
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
5158
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
5159
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
5160
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
5161
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
5162
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
5163
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
5164
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
5165
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
5166
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
5167
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
5114
5168
|
# resp.db_cluster.deletion_protection #=> Boolean
|
5115
5169
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
5116
5170
|
# resp.db_cluster.automatic_restart_time #=> Time
|
5117
5171
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
5118
5172
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
5173
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
5119
5174
|
#
|
5120
5175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBCluster AWS API Documentation
|
5121
5176
|
#
|
@@ -6161,11 +6216,22 @@ module Aws::Neptune
|
|
6161
6216
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
6162
6217
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
6163
6218
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
6219
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
6220
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
6221
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
6222
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
6223
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
6224
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6225
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
6226
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
6227
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
6228
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
6164
6229
|
# resp.db_cluster.deletion_protection #=> Boolean
|
6165
6230
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
6166
6231
|
# resp.db_cluster.automatic_restart_time #=> Time
|
6167
6232
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6168
6233
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6234
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
6169
6235
|
#
|
6170
6236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
6171
6237
|
#
|
@@ -6852,11 +6918,22 @@ module Aws::Neptune
|
|
6852
6918
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
6853
6919
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
6854
6920
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
6921
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
6922
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
6923
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
6924
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
6925
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
6926
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6927
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
6928
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
6929
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
6930
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
6855
6931
|
# resp.db_cluster.deletion_protection #=> Boolean
|
6856
6932
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
6857
6933
|
# resp.db_cluster.automatic_restart_time #=> Time
|
6858
6934
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6859
6935
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6936
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
6860
6937
|
#
|
6861
6938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
6862
6939
|
#
|
@@ -7118,11 +7195,22 @@ module Aws::Neptune
|
|
7118
7195
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7119
7196
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7120
7197
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7198
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7199
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7200
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7201
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7202
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7203
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7204
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7205
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7206
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7207
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7121
7208
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7122
7209
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7123
7210
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7124
7211
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7125
7212
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7213
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7126
7214
|
#
|
7127
7215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
7128
7216
|
#
|
@@ -7204,11 +7292,22 @@ module Aws::Neptune
|
|
7204
7292
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7205
7293
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7206
7294
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7295
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7296
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7297
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7298
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7299
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7300
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7301
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7302
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7303
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7304
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7207
7305
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7208
7306
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7209
7307
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7210
7308
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7211
7309
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7310
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7212
7311
|
#
|
7213
7312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBCluster AWS API Documentation
|
7214
7313
|
#
|
@@ -7293,11 +7392,22 @@ module Aws::Neptune
|
|
7293
7392
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
7294
7393
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
7295
7394
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
7395
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7396
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7397
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7398
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7399
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
7400
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7401
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7402
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7403
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7404
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
7296
7405
|
# resp.db_cluster.deletion_protection #=> Boolean
|
7297
7406
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
7298
7407
|
# resp.db_cluster.automatic_restart_time #=> Time
|
7299
7408
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
7300
7409
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
7410
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
7301
7411
|
#
|
7302
7412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBCluster AWS API Documentation
|
7303
7413
|
#
|
@@ -7321,7 +7431,7 @@ module Aws::Neptune
|
|
7321
7431
|
params: params,
|
7322
7432
|
config: config)
|
7323
7433
|
context[:gem_name] = 'aws-sdk-neptune'
|
7324
|
-
context[:gem_version] = '1.
|
7434
|
+
context[:gem_version] = '1.50.0'
|
7325
7435
|
Seahorse::Client::Request.new(handlers, context)
|
7326
7436
|
end
|
7327
7437
|
|
@@ -30,6 +30,7 @@ module Aws::Neptune
|
|
30
30
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
31
31
|
CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
|
32
32
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
33
|
+
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
33
34
|
CopyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupMessage')
|
34
35
|
CopyDBClusterParameterGroupResult = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupResult')
|
35
36
|
CopyDBClusterSnapshotMessage = Shapes::StructureShape.new(name: 'CopyDBClusterSnapshotMessage')
|
@@ -364,6 +365,15 @@ module Aws::Neptune
|
|
364
365
|
CloudwatchLogsExportConfiguration.add_member(:disable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "DisableLogTypes"))
|
365
366
|
CloudwatchLogsExportConfiguration.struct_class = Types::CloudwatchLogsExportConfiguration
|
366
367
|
|
368
|
+
ClusterPendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
369
|
+
ClusterPendingModifiedValues.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
370
|
+
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
371
|
+
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
372
|
+
ClusterPendingModifiedValues.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
373
|
+
ClusterPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
374
|
+
ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
375
|
+
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
376
|
+
|
367
377
|
CopyDBClusterParameterGroupMessage.add_member(:source_db_cluster_parameter_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBClusterParameterGroupIdentifier"))
|
368
378
|
CopyDBClusterParameterGroupMessage.add_member(:target_db_cluster_parameter_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetDBClusterParameterGroupIdentifier"))
|
369
379
|
CopyDBClusterParameterGroupMessage.add_member(:target_db_cluster_parameter_group_description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetDBClusterParameterGroupDescription"))
|
@@ -489,7 +499,7 @@ module Aws::Neptune
|
|
489
499
|
CreateDBInstanceMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
490
500
|
CreateDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, deprecated: true, location_name: "PubliclyAccessible"))
|
491
501
|
CreateDBInstanceMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
492
|
-
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
502
|
+
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
493
503
|
CreateDBInstanceMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
494
504
|
CreateDBInstanceMessage.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
495
505
|
CreateDBInstanceMessage.add_member(:tde_credential_password, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialPassword"))
|
@@ -590,10 +600,12 @@ module Aws::Neptune
|
|
590
600
|
DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
591
601
|
DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
592
602
|
DBCluster.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
|
603
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
593
604
|
DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
594
605
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
595
606
|
DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
596
607
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
608
|
+
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
597
609
|
DBCluster.struct_class = Types::DBCluster
|
598
610
|
|
599
611
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -14,54 +14,42 @@ module Aws::Neptune
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.
|
19
|
-
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
26
20
|
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
28
|
-
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
32
23
|
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
if Aws::Endpoints::Matchers.
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips
|
40
|
-
end
|
41
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-east-2")
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-east-2.amazonaws.com", headers: {}, properties: {})
|
43
|
-
end
|
44
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-west-1")
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-west-1.amazonaws.com", headers: {}, properties: {})
|
46
|
-
end
|
47
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-west-2")
|
48
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-west-2.amazonaws.com", headers: {}, properties: {})
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
49
31
|
end
|
50
|
-
|
51
|
-
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
|
+
end
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
52
40
|
end
|
53
|
-
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
54
42
|
end
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
|
+
end
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
60
48
|
end
|
61
|
-
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
62
50
|
end
|
63
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
64
51
|
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
65
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
66
54
|
|
67
55
|
end
|
@@ -231,6 +231,59 @@ module Aws::Neptune
|
|
231
231
|
include Aws::Structure
|
232
232
|
end
|
233
233
|
|
234
|
+
# This data type is used as a response element in the `ModifyDBCluster`
|
235
|
+
# operation and contains changes that will be applied during the next
|
236
|
+
# maintenance window.
|
237
|
+
#
|
238
|
+
# @!attribute [rw] pending_cloudwatch_logs_exports
|
239
|
+
# This `PendingCloudwatchLogsExports` structure specifies pending
|
240
|
+
# changes to which CloudWatch logs are enabled and which are disabled.
|
241
|
+
# @return [Types::PendingCloudwatchLogsExports]
|
242
|
+
#
|
243
|
+
# @!attribute [rw] db_cluster_identifier
|
244
|
+
# The DBClusterIdentifier value for the DB cluster.
|
245
|
+
# @return [String]
|
246
|
+
#
|
247
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
248
|
+
# A value that indicates whether mapping of Amazon Web Services
|
249
|
+
# Identity and Access Management (IAM) accounts to database accounts
|
250
|
+
# is enabled.
|
251
|
+
# @return [Boolean]
|
252
|
+
#
|
253
|
+
# @!attribute [rw] engine_version
|
254
|
+
# The database engine version.
|
255
|
+
# @return [String]
|
256
|
+
#
|
257
|
+
# @!attribute [rw] backup_retention_period
|
258
|
+
# The number of days for which automatic DB snapshots are retained.
|
259
|
+
# @return [Integer]
|
260
|
+
#
|
261
|
+
# @!attribute [rw] allocated_storage
|
262
|
+
# The allocated storage size in gibibytes (GiB) for database engines.
|
263
|
+
# For Neptune, `AllocatedStorage` always returns 1, because Neptune DB
|
264
|
+
# cluster storage size isn't fixed, but instead automatically adjusts
|
265
|
+
# as needed.
|
266
|
+
# @return [Integer]
|
267
|
+
#
|
268
|
+
# @!attribute [rw] iops
|
269
|
+
# The Provisioned IOPS (I/O operations per second) value. This setting
|
270
|
+
# is only for non-Aurora Multi-AZ DB clusters.
|
271
|
+
# @return [Integer]
|
272
|
+
#
|
273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
|
274
|
+
#
|
275
|
+
class ClusterPendingModifiedValues < Struct.new(
|
276
|
+
:pending_cloudwatch_logs_exports,
|
277
|
+
:db_cluster_identifier,
|
278
|
+
:iam_database_authentication_enabled,
|
279
|
+
:engine_version,
|
280
|
+
:backup_retention_period,
|
281
|
+
:allocated_storage,
|
282
|
+
:iops)
|
283
|
+
SENSITIVE = []
|
284
|
+
include Aws::Structure
|
285
|
+
end
|
286
|
+
|
234
287
|
# @!attribute [rw] source_db_cluster_parameter_group_identifier
|
235
288
|
# The identifier or Amazon Resource Name (ARN) for the source DB
|
236
289
|
# cluster parameter group. For information about creating an ARN, see
|
@@ -771,7 +824,7 @@ module Aws::Neptune
|
|
771
824
|
# new DB cluster, then you can use the KMS key alias instead of the
|
772
825
|
# ARN for the KMS encryption key.
|
773
826
|
#
|
774
|
-
# If an encryption key is not specified in `KmsKeyId
|
827
|
+
# If an encryption key is not specified in `KmsKeyId`:
|
775
828
|
#
|
776
829
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
777
830
|
# then Amazon Neptune will use the encryption key used to encrypt
|
@@ -1837,6 +1890,12 @@ module Aws::Neptune
|
|
1837
1890
|
# CloudWatch Logs.
|
1838
1891
|
# @return [Array<String>]
|
1839
1892
|
#
|
1893
|
+
# @!attribute [rw] pending_modified_values
|
1894
|
+
# This data type is used as a response element in the
|
1895
|
+
# `ModifyDBCluster` operation and contains changes that will be
|
1896
|
+
# applied during the next maintenance window.
|
1897
|
+
# @return [Types::ClusterPendingModifiedValues]
|
1898
|
+
#
|
1840
1899
|
# @!attribute [rw] deletion_protection
|
1841
1900
|
# Indicates whether or not the DB cluster has deletion protection
|
1842
1901
|
# enabled. The database can't be deleted when deletion protection is
|
@@ -1862,6 +1921,11 @@ module Aws::Neptune
|
|
1862
1921
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
1863
1922
|
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
1864
1923
|
#
|
1924
|
+
# @!attribute [rw] global_cluster_identifier
|
1925
|
+
# Contains a user-supplied global database cluster identifier. This
|
1926
|
+
# identifier is the unique key that identifies a global database.
|
1927
|
+
# @return [String]
|
1928
|
+
#
|
1865
1929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
1866
1930
|
#
|
1867
1931
|
class DBCluster < Struct.new(
|
@@ -1902,10 +1966,12 @@ module Aws::Neptune
|
|
1902
1966
|
:cluster_create_time,
|
1903
1967
|
:copy_tags_to_snapshot,
|
1904
1968
|
:enabled_cloudwatch_logs_exports,
|
1969
|
+
:pending_modified_values,
|
1905
1970
|
:deletion_protection,
|
1906
1971
|
:cross_account_clone,
|
1907
1972
|
:automatic_restart_time,
|
1908
|
-
:serverless_v2_scaling_configuration
|
1973
|
+
:serverless_v2_scaling_configuration,
|
1974
|
+
:global_cluster_identifier)
|
1909
1975
|
SENSITIVE = []
|
1910
1976
|
include Aws::Structure
|
1911
1977
|
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.50.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
|
+
date: 2023-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|