aws-sdk-neptune 1.106.0 → 1.107.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 +106 -11
- data/lib/aws-sdk-neptune/client_api.rb +16 -0
- data/lib/aws-sdk-neptune/errors.rb +14 -0
- data/lib/aws-sdk-neptune/types.rb +122 -18
- data/lib/aws-sdk-neptune.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38f1968efaa7f7eda56e4b141f5e95b55b3c5f9b75408a29b3060053d94a01be
|
|
4
|
+
data.tar.gz: 9055029e162dacd0149d4acff8c05bd317ad87f47fa89e763722e56ae2efac95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5422b3fcf8b5c1470dcfe085f309b159fa447615adc7ad5ebb1a9eaa534b5fd23b6df0d7d9f1a76248a57c7d37312296309562fe5b4262b336409c60daa58c4
|
|
7
|
+
data.tar.gz: 93d864196ab6ddd6b1243d1f1ade45d5954a05092ccd09ac2eb9b6ee1de7b80edc658a1dc97f0cc411607f9b82c4b20cec8eafa52f6f7ea4022e719400931dc4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.107.0 (2026-06-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Neptune now supports IPv6 dual-stack networking. You can create and manage Neptune DB clusters accessible over both IPv4 and IPv6 by specifying NetworkType as DUAL in CreateDBCluster, ModifyDBCluster, RestoreDBClusterFromSnapshot, and RestoreDBClusterToPointInTime API operations
|
|
8
|
+
|
|
4
9
|
1.106.0 (2026-06-02)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.107.0
|
|
@@ -684,14 +684,12 @@ module Aws::Neptune
|
|
|
684
684
|
#
|
|
685
685
|
# * Must specify a valid DB cluster parameter group.
|
|
686
686
|
#
|
|
687
|
-
# *
|
|
688
|
-
#
|
|
689
|
-
# for example `my-db-cluster-param-group`, or a valid ARN.
|
|
687
|
+
# * Must specify a valid DB cluster parameter group identifier, for
|
|
688
|
+
# example `my-db-cluster-param-group`, or a valid ARN.
|
|
690
689
|
#
|
|
691
|
-
# *
|
|
692
|
-
#
|
|
693
|
-
#
|
|
694
|
-
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
|
690
|
+
# * The source DB cluster parameter group must be in the same Amazon
|
|
691
|
+
# Region as the copy. Neptune does not support cross-Region copying of
|
|
692
|
+
# parameter groups.
|
|
695
693
|
#
|
|
696
694
|
#
|
|
697
695
|
#
|
|
@@ -891,6 +889,10 @@ module Aws::Neptune
|
|
|
891
889
|
# * Must specify a valid DB parameter group identifier, for example
|
|
892
890
|
# `my-db-param-group`, or a valid ARN.
|
|
893
891
|
#
|
|
892
|
+
# * The source DB parameter group must be in the same Amazon Region as
|
|
893
|
+
# the copy. Neptune does not support cross-Region copying of parameter
|
|
894
|
+
# groups.
|
|
895
|
+
#
|
|
894
896
|
#
|
|
895
897
|
#
|
|
896
898
|
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
|
@@ -986,9 +988,7 @@ module Aws::Neptune
|
|
|
986
988
|
# that is created.*
|
|
987
989
|
#
|
|
988
990
|
# @option params [String] :database_name
|
|
989
|
-
#
|
|
990
|
-
# you do not provide a name, Amazon Neptune will not create a database
|
|
991
|
-
# in the DB cluster you are creating.
|
|
991
|
+
# Not supported by Neptune.
|
|
992
992
|
#
|
|
993
993
|
# @option params [required, String] :db_cluster_identifier
|
|
994
994
|
# The DB cluster identifier. This parameter is stored as a lowercase
|
|
@@ -1195,6 +1195,18 @@ module Aws::Neptune
|
|
|
1195
1195
|
#
|
|
1196
1196
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/storage-types.html#provisioned-iops-storage
|
|
1197
1197
|
#
|
|
1198
|
+
# @option params [String] :network_type
|
|
1199
|
+
# The network type of the DB cluster.
|
|
1200
|
+
#
|
|
1201
|
+
# Valid Values:
|
|
1202
|
+
#
|
|
1203
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
1204
|
+
# uses only IPv4 addresses for communication.
|
|
1205
|
+
#
|
|
1206
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
1207
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
1208
|
+
# with the cluster must support IPv6.
|
|
1209
|
+
#
|
|
1198
1210
|
# @option params [String] :source_region
|
|
1199
1211
|
# The source region of the snapshot. This is only needed when the
|
|
1200
1212
|
# shapshot is encrypted and in a different region.
|
|
@@ -1242,6 +1254,7 @@ module Aws::Neptune
|
|
|
1242
1254
|
# },
|
|
1243
1255
|
# global_cluster_identifier: "GlobalClusterIdentifier",
|
|
1244
1256
|
# storage_type: "String",
|
|
1257
|
+
# network_type: "String",
|
|
1245
1258
|
# source_region: "String",
|
|
1246
1259
|
# })
|
|
1247
1260
|
#
|
|
@@ -1309,6 +1322,7 @@ module Aws::Neptune
|
|
|
1309
1322
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
1310
1323
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
1311
1324
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
1325
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
1312
1326
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
1313
1327
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
1314
1328
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -1317,6 +1331,7 @@ module Aws::Neptune
|
|
|
1317
1331
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
1318
1332
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
1319
1333
|
# resp.db_cluster.storage_type #=> String
|
|
1334
|
+
# resp.db_cluster.network_type #=> String
|
|
1320
1335
|
#
|
|
1321
1336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBCluster AWS API Documentation
|
|
1322
1337
|
#
|
|
@@ -1959,6 +1974,8 @@ module Aws::Neptune
|
|
|
1959
1974
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
1960
1975
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
1961
1976
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
1977
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
1978
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
1962
1979
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
1963
1980
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
1964
1981
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -2025,6 +2042,7 @@ module Aws::Neptune
|
|
|
2025
2042
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
|
2026
2043
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
|
2027
2044
|
# resp.db_instance.deletion_protection #=> Boolean
|
|
2045
|
+
# resp.db_instance.network_type #=> String
|
|
2028
2046
|
#
|
|
2029
2047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBInstance AWS API Documentation
|
|
2030
2048
|
#
|
|
@@ -2170,6 +2188,8 @@ module Aws::Neptune
|
|
|
2170
2188
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
2171
2189
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
|
2172
2190
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
|
2191
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
|
2192
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
|
2173
2193
|
#
|
|
2174
2194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBSubnetGroup AWS API Documentation
|
|
2175
2195
|
#
|
|
@@ -2523,6 +2543,7 @@ module Aws::Neptune
|
|
|
2523
2543
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
2524
2544
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
2525
2545
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
2546
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
2526
2547
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
2527
2548
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
2528
2549
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -2531,6 +2552,7 @@ module Aws::Neptune
|
|
|
2531
2552
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
2532
2553
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
2533
2554
|
# resp.db_cluster.storage_type #=> String
|
|
2555
|
+
# resp.db_cluster.network_type #=> String
|
|
2534
2556
|
#
|
|
2535
2557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
2536
2558
|
#
|
|
@@ -2795,6 +2817,8 @@ module Aws::Neptune
|
|
|
2795
2817
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
2796
2818
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
2797
2819
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
2820
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
2821
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
2798
2822
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
2799
2823
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
2800
2824
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -2861,6 +2885,7 @@ module Aws::Neptune
|
|
|
2861
2885
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
|
2862
2886
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
|
2863
2887
|
# resp.db_instance.deletion_protection #=> Boolean
|
|
2888
|
+
# resp.db_instance.network_type #=> String
|
|
2864
2889
|
#
|
|
2865
2890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
2866
2891
|
#
|
|
@@ -3614,6 +3639,7 @@ module Aws::Neptune
|
|
|
3614
3639
|
# resp.db_clusters[0].pending_modified_values.storage_type #=> String
|
|
3615
3640
|
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
|
3616
3641
|
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
|
3642
|
+
# resp.db_clusters[0].pending_modified_values.network_type #=> String
|
|
3617
3643
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
|
3618
3644
|
# resp.db_clusters[0].cross_account_clone #=> Boolean
|
|
3619
3645
|
# resp.db_clusters[0].automatic_restart_time #=> Time
|
|
@@ -3622,6 +3648,7 @@ module Aws::Neptune
|
|
|
3622
3648
|
# resp.db_clusters[0].global_cluster_identifier #=> String
|
|
3623
3649
|
# resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
|
|
3624
3650
|
# resp.db_clusters[0].storage_type #=> String
|
|
3651
|
+
# resp.db_clusters[0].network_type #=> String
|
|
3625
3652
|
#
|
|
3626
3653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusters AWS API Documentation
|
|
3627
3654
|
#
|
|
@@ -3857,6 +3884,8 @@ module Aws::Neptune
|
|
|
3857
3884
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
3858
3885
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
|
3859
3886
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
|
3887
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
|
3888
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
|
3860
3889
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
|
3861
3890
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
|
3862
3891
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
|
@@ -3923,6 +3952,7 @@ module Aws::Neptune
|
|
|
3923
3952
|
# resp.db_instances[0].enabled_cloudwatch_logs_exports #=> Array
|
|
3924
3953
|
# resp.db_instances[0].enabled_cloudwatch_logs_exports[0] #=> String
|
|
3925
3954
|
# resp.db_instances[0].deletion_protection #=> Boolean
|
|
3955
|
+
# resp.db_instances[0].network_type #=> String
|
|
3926
3956
|
#
|
|
3927
3957
|
#
|
|
3928
3958
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4161,6 +4191,8 @@ module Aws::Neptune
|
|
|
4161
4191
|
# resp.db_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
|
4162
4192
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
|
4163
4193
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
|
4194
|
+
# resp.db_subnet_groups[0].supported_network_types #=> Array
|
|
4195
|
+
# resp.db_subnet_groups[0].supported_network_types[0] #=> String
|
|
4164
4196
|
#
|
|
4165
4197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBSubnetGroups AWS API Documentation
|
|
4166
4198
|
#
|
|
@@ -4726,6 +4758,8 @@ module Aws::Neptune
|
|
|
4726
4758
|
# resp.orderable_db_instance_options[0].min_iops_per_gib #=> Float
|
|
4727
4759
|
# resp.orderable_db_instance_options[0].max_iops_per_gib #=> Float
|
|
4728
4760
|
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
|
4761
|
+
# resp.orderable_db_instance_options[0].supported_network_types #=> Array
|
|
4762
|
+
# resp.orderable_db_instance_options[0].supported_network_types[0] #=> String
|
|
4729
4763
|
# resp.marker #=> String
|
|
4730
4764
|
#
|
|
4731
4765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -4963,6 +4997,7 @@ module Aws::Neptune
|
|
|
4963
4997
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
4964
4998
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
4965
4999
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
5000
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
4966
5001
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
4967
5002
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
4968
5003
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -4971,6 +5006,7 @@ module Aws::Neptune
|
|
|
4971
5006
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
4972
5007
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
4973
5008
|
# resp.db_cluster.storage_type #=> String
|
|
5009
|
+
# resp.db_cluster.network_type #=> String
|
|
4974
5010
|
#
|
|
4975
5011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
4976
5012
|
#
|
|
@@ -5321,6 +5357,18 @@ module Aws::Neptune
|
|
|
5321
5357
|
#
|
|
5322
5358
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/storage-types.html#provisioned-iops-storage
|
|
5323
5359
|
#
|
|
5360
|
+
# @option params [String] :network_type
|
|
5361
|
+
# The network type of the DB cluster.
|
|
5362
|
+
#
|
|
5363
|
+
# Valid Values:
|
|
5364
|
+
#
|
|
5365
|
+
# * <b> <code>IPV4</code> </b> – The DB cluster uses only IPv4
|
|
5366
|
+
# addresses for communication.
|
|
5367
|
+
#
|
|
5368
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
5369
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
5370
|
+
# with the cluster must support IPv6.
|
|
5371
|
+
#
|
|
5324
5372
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5325
5373
|
#
|
|
5326
5374
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -5354,6 +5402,7 @@ module Aws::Neptune
|
|
|
5354
5402
|
# max_capacity: 1.0,
|
|
5355
5403
|
# },
|
|
5356
5404
|
# storage_type: "String",
|
|
5405
|
+
# network_type: "String",
|
|
5357
5406
|
# })
|
|
5358
5407
|
#
|
|
5359
5408
|
# @example Response structure
|
|
@@ -5420,6 +5469,7 @@ module Aws::Neptune
|
|
|
5420
5469
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
5421
5470
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
5422
5471
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
5472
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
5423
5473
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5424
5474
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
5425
5475
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -5428,6 +5478,7 @@ module Aws::Neptune
|
|
|
5428
5478
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
5429
5479
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5430
5480
|
# resp.db_cluster.storage_type #=> String
|
|
5481
|
+
# resp.db_cluster.network_type #=> String
|
|
5431
5482
|
#
|
|
5432
5483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
5433
5484
|
#
|
|
@@ -6044,6 +6095,8 @@ module Aws::Neptune
|
|
|
6044
6095
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
6045
6096
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
6046
6097
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
6098
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
6099
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
6047
6100
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
6048
6101
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
6049
6102
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -6110,6 +6163,7 @@ module Aws::Neptune
|
|
|
6110
6163
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
|
6111
6164
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
|
6112
6165
|
# resp.db_instance.deletion_protection #=> Boolean
|
|
6166
|
+
# resp.db_instance.network_type #=> String
|
|
6113
6167
|
#
|
|
6114
6168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
6115
6169
|
#
|
|
@@ -6246,6 +6300,8 @@ module Aws::Neptune
|
|
|
6246
6300
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
6247
6301
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
|
6248
6302
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
|
6303
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
|
6304
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
|
6249
6305
|
#
|
|
6250
6306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBSubnetGroup AWS API Documentation
|
|
6251
6307
|
#
|
|
@@ -6505,6 +6561,7 @@ module Aws::Neptune
|
|
|
6505
6561
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
6506
6562
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
6507
6563
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
6564
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
6508
6565
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
6509
6566
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
6510
6567
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -6513,6 +6570,7 @@ module Aws::Neptune
|
|
|
6513
6570
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
6514
6571
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
6515
6572
|
# resp.db_cluster.storage_type #=> String
|
|
6573
|
+
# resp.db_cluster.network_type #=> String
|
|
6516
6574
|
#
|
|
6517
6575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
|
6518
6576
|
#
|
|
@@ -6593,6 +6651,8 @@ module Aws::Neptune
|
|
|
6593
6651
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
6594
6652
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
6595
6653
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
6654
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
6655
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
6596
6656
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
6597
6657
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
6598
6658
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -6659,6 +6719,7 @@ module Aws::Neptune
|
|
|
6659
6719
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
|
6660
6720
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
|
6661
6721
|
# resp.db_instance.deletion_protection #=> Boolean
|
|
6722
|
+
# resp.db_instance.network_type #=> String
|
|
6662
6723
|
#
|
|
6663
6724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RebootDBInstance AWS API Documentation
|
|
6664
6725
|
#
|
|
@@ -7122,6 +7183,18 @@ module Aws::Neptune
|
|
|
7122
7183
|
#
|
|
7123
7184
|
# Default: `standard`
|
|
7124
7185
|
#
|
|
7186
|
+
# @option params [String] :network_type
|
|
7187
|
+
# The network type of the DB cluster.
|
|
7188
|
+
#
|
|
7189
|
+
# Valid Values:
|
|
7190
|
+
#
|
|
7191
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
7192
|
+
# uses only IPv4 addresses for communication.
|
|
7193
|
+
#
|
|
7194
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
7195
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
7196
|
+
# with the cluster must support IPv6.
|
|
7197
|
+
#
|
|
7125
7198
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7126
7199
|
#
|
|
7127
7200
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -7156,6 +7229,7 @@ module Aws::Neptune
|
|
|
7156
7229
|
# max_capacity: 1.0,
|
|
7157
7230
|
# },
|
|
7158
7231
|
# storage_type: "String",
|
|
7232
|
+
# network_type: "String",
|
|
7159
7233
|
# })
|
|
7160
7234
|
#
|
|
7161
7235
|
# @example Response structure
|
|
@@ -7222,6 +7296,7 @@ module Aws::Neptune
|
|
|
7222
7296
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7223
7297
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7224
7298
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7299
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
7225
7300
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
7226
7301
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
7227
7302
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -7230,6 +7305,7 @@ module Aws::Neptune
|
|
|
7230
7305
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7231
7306
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7232
7307
|
# resp.db_cluster.storage_type #=> String
|
|
7308
|
+
# resp.db_cluster.network_type #=> String
|
|
7233
7309
|
#
|
|
7234
7310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
7235
7311
|
#
|
|
@@ -7412,6 +7488,18 @@ module Aws::Neptune
|
|
|
7412
7488
|
#
|
|
7413
7489
|
# Default: `standard`
|
|
7414
7490
|
#
|
|
7491
|
+
# @option params [String] :network_type
|
|
7492
|
+
# The network type of the DB cluster.
|
|
7493
|
+
#
|
|
7494
|
+
# Valid Values:
|
|
7495
|
+
#
|
|
7496
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
7497
|
+
# uses only IPv4 addresses for communication.
|
|
7498
|
+
#
|
|
7499
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
7500
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
7501
|
+
# with the cluster must support IPv6.
|
|
7502
|
+
#
|
|
7415
7503
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7416
7504
|
#
|
|
7417
7505
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -7444,6 +7532,7 @@ module Aws::Neptune
|
|
|
7444
7532
|
# max_capacity: 1.0,
|
|
7445
7533
|
# },
|
|
7446
7534
|
# storage_type: "String",
|
|
7535
|
+
# network_type: "String",
|
|
7447
7536
|
# })
|
|
7448
7537
|
#
|
|
7449
7538
|
# @example Response structure
|
|
@@ -7510,6 +7599,7 @@ module Aws::Neptune
|
|
|
7510
7599
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7511
7600
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7512
7601
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7602
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
7513
7603
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
7514
7604
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
7515
7605
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -7518,6 +7608,7 @@ module Aws::Neptune
|
|
|
7518
7608
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7519
7609
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7520
7610
|
# resp.db_cluster.storage_type #=> String
|
|
7611
|
+
# resp.db_cluster.network_type #=> String
|
|
7521
7612
|
#
|
|
7522
7613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
7523
7614
|
#
|
|
@@ -7610,6 +7701,7 @@ module Aws::Neptune
|
|
|
7610
7701
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7611
7702
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7612
7703
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7704
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
7613
7705
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
7614
7706
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
7615
7707
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -7618,6 +7710,7 @@ module Aws::Neptune
|
|
|
7618
7710
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7619
7711
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7620
7712
|
# resp.db_cluster.storage_type #=> String
|
|
7713
|
+
# resp.db_cluster.network_type #=> String
|
|
7621
7714
|
#
|
|
7622
7715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBCluster AWS API Documentation
|
|
7623
7716
|
#
|
|
@@ -7713,6 +7806,7 @@ module Aws::Neptune
|
|
|
7713
7806
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
|
7714
7807
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
|
7715
7808
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
|
7809
|
+
# resp.db_cluster.pending_modified_values.network_type #=> String
|
|
7716
7810
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
7717
7811
|
# resp.db_cluster.cross_account_clone #=> Boolean
|
|
7718
7812
|
# resp.db_cluster.automatic_restart_time #=> Time
|
|
@@ -7721,6 +7815,7 @@ module Aws::Neptune
|
|
|
7721
7815
|
# resp.db_cluster.global_cluster_identifier #=> String
|
|
7722
7816
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
7723
7817
|
# resp.db_cluster.storage_type #=> String
|
|
7818
|
+
# resp.db_cluster.network_type #=> String
|
|
7724
7819
|
#
|
|
7725
7820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBCluster AWS API Documentation
|
|
7726
7821
|
#
|
|
@@ -7823,7 +7918,7 @@ module Aws::Neptune
|
|
|
7823
7918
|
tracer: tracer
|
|
7824
7919
|
)
|
|
7825
7920
|
context[:gem_name] = 'aws-sdk-neptune'
|
|
7826
|
-
context[:gem_version] = '1.
|
|
7921
|
+
context[:gem_version] = '1.107.0'
|
|
7827
7922
|
Seahorse::Client::Request.new(handlers, context)
|
|
7828
7923
|
end
|
|
7829
7924
|
|
|
@@ -243,6 +243,7 @@ module Aws::Neptune
|
|
|
243
243
|
ModifyEventSubscriptionResult = Shapes::StructureShape.new(name: 'ModifyEventSubscriptionResult')
|
|
244
244
|
ModifyGlobalClusterMessage = Shapes::StructureShape.new(name: 'ModifyGlobalClusterMessage')
|
|
245
245
|
ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
|
|
246
|
+
NetworkTypeNotSupportedFault = Shapes::StructureShape.new(name: 'NetworkTypeNotSupportedFault', error: {"code" => "NetworkTypeNotSupported", "httpStatusCode" => 400, "senderFault" => true})
|
|
246
247
|
OptionGroupMembership = Shapes::StructureShape.new(name: 'OptionGroupMembership')
|
|
247
248
|
OptionGroupMembershipList = Shapes::ListShape.new(name: 'OptionGroupMembershipList')
|
|
248
249
|
OptionGroupNotFoundFault = Shapes::StructureShape.new(name: 'OptionGroupNotFoundFault', error: {"code" => "OptionGroupNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
|
|
@@ -379,6 +380,7 @@ module Aws::Neptune
|
|
|
379
380
|
ClusterPendingModifiedValues.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
380
381
|
ClusterPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
|
381
382
|
ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
383
|
+
ClusterPendingModifiedValues.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
382
384
|
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
|
383
385
|
|
|
384
386
|
CopyDBClusterParameterGroupMessage.add_member(:source_db_cluster_parameter_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBClusterParameterGroupIdentifier"))
|
|
@@ -459,6 +461,7 @@ module Aws::Neptune
|
|
|
459
461
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
460
462
|
CreateDBClusterMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
|
461
463
|
CreateDBClusterMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
464
|
+
CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
462
465
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
463
466
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
464
467
|
|
|
@@ -618,6 +621,7 @@ module Aws::Neptune
|
|
|
618
621
|
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
|
619
622
|
DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
|
|
620
623
|
DBCluster.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
624
|
+
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
621
625
|
DBCluster.struct_class = Types::DBCluster
|
|
622
626
|
|
|
623
627
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
|
@@ -821,6 +825,7 @@ module Aws::Neptune
|
|
|
821
825
|
DBInstance.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
822
826
|
DBInstance.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
|
|
823
827
|
DBInstance.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
828
|
+
DBInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
824
829
|
DBInstance.struct_class = Types::DBInstance
|
|
825
830
|
|
|
826
831
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
|
@@ -892,6 +897,7 @@ module Aws::Neptune
|
|
|
892
897
|
DBSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
|
|
893
898
|
DBSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
|
894
899
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
|
900
|
+
DBSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
|
895
901
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
|
896
902
|
|
|
897
903
|
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
|
@@ -1332,6 +1338,7 @@ module Aws::Neptune
|
|
|
1332
1338
|
ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
|
1333
1339
|
ModifyDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1334
1340
|
ModifyDBClusterMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1341
|
+
ModifyDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1335
1342
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
|
1336
1343
|
|
|
1337
1344
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
|
@@ -1424,6 +1431,8 @@ module Aws::Neptune
|
|
|
1424
1431
|
ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
|
1425
1432
|
ModifyGlobalClusterResult.struct_class = Types::ModifyGlobalClusterResult
|
|
1426
1433
|
|
|
1434
|
+
NetworkTypeNotSupportedFault.struct_class = Types::NetworkTypeNotSupportedFault
|
|
1435
|
+
|
|
1427
1436
|
OptionGroupMembership.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
|
1428
1437
|
OptionGroupMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
|
1429
1438
|
OptionGroupMembership.struct_class = Types::OptionGroupMembership
|
|
@@ -1453,6 +1462,7 @@ module Aws::Neptune
|
|
|
1453
1462
|
OrderableDBInstanceOption.add_member(:min_iops_per_gib, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinIopsPerGib"))
|
|
1454
1463
|
OrderableDBInstanceOption.add_member(:max_iops_per_gib, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxIopsPerGib"))
|
|
1455
1464
|
OrderableDBInstanceOption.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
|
1465
|
+
OrderableDBInstanceOption.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
|
1456
1466
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
|
1457
1467
|
|
|
1458
1468
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
|
@@ -1599,6 +1609,7 @@ module Aws::Neptune
|
|
|
1599
1609
|
RestoreDBClusterFromSnapshotMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
|
1600
1610
|
RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1601
1611
|
RestoreDBClusterFromSnapshotMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1612
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1602
1613
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
1603
1614
|
|
|
1604
1615
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -1621,6 +1632,7 @@ module Aws::Neptune
|
|
|
1621
1632
|
RestoreDBClusterToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
1622
1633
|
RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1623
1634
|
RestoreDBClusterToPointInTimeMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1635
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1624
1636
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
1625
1637
|
|
|
1626
1638
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -1857,6 +1869,7 @@ module Aws::Neptune
|
|
|
1857
1869
|
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupDoesNotCoverEnoughAZs)
|
|
1858
1870
|
o.errors << Shapes::ShapeRef.new(shape: GlobalClusterNotFoundFault)
|
|
1859
1871
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
|
|
1872
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupportedFault)
|
|
1860
1873
|
end)
|
|
1861
1874
|
|
|
1862
1875
|
api.add_operation(:create_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2393,6 +2406,7 @@ module Aws::Neptune
|
|
|
2393
2406
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
2394
2407
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
|
|
2395
2408
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
|
2409
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupportedFault)
|
|
2396
2410
|
end)
|
|
2397
2411
|
|
|
2398
2412
|
api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2610,6 +2624,7 @@ module Aws::Neptune
|
|
|
2610
2624
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
|
2611
2625
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
2612
2626
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
|
|
2627
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupportedFault)
|
|
2613
2628
|
end)
|
|
2614
2629
|
|
|
2615
2630
|
api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2635,6 +2650,7 @@ module Aws::Neptune
|
|
|
2635
2650
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
|
2636
2651
|
o.errors << Shapes::ShapeRef.new(shape: StorageQuotaExceededFault)
|
|
2637
2652
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
|
|
2653
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupportedFault)
|
|
2638
2654
|
end)
|
|
2639
2655
|
|
|
2640
2656
|
api.add_operation(:start_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -105,6 +105,8 @@ module Aws::Neptune
|
|
|
105
105
|
# * {InvalidSubnet}
|
|
106
106
|
# * {InvalidVPCNetworkStateFault}
|
|
107
107
|
# * {KMSKeyNotAccessibleFault}
|
|
108
|
+
# * {NetworkTypeNotSupportedFault}
|
|
109
|
+
# * This error class is not used. `NetworkTypeNotSupported` is used during parsing instead.
|
|
108
110
|
# * {OptionGroupNotFoundFault}
|
|
109
111
|
# * {ProvisionedIopsNotAvailableInAZFault}
|
|
110
112
|
# * {ResourceNotFoundFault}
|
|
@@ -710,6 +712,18 @@ module Aws::Neptune
|
|
|
710
712
|
end
|
|
711
713
|
end
|
|
712
714
|
|
|
715
|
+
# @deprecated This error class is not used during parsing.
|
|
716
|
+
# Please use `NetworkTypeNotSupported` instead.
|
|
717
|
+
class NetworkTypeNotSupportedFault < ServiceError
|
|
718
|
+
|
|
719
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
720
|
+
# @param [String] message
|
|
721
|
+
# @param [Aws::Neptune::Types::NetworkTypeNotSupportedFault] data
|
|
722
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
723
|
+
super(context, message, data)
|
|
724
|
+
end
|
|
725
|
+
end
|
|
726
|
+
|
|
713
727
|
class OptionGroupNotFoundFault < ServiceError
|
|
714
728
|
|
|
715
729
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -298,6 +298,12 @@ module Aws::Neptune
|
|
|
298
298
|
# is only for Multi-AZ DB clusters.
|
|
299
299
|
# @return [Integer]
|
|
300
300
|
#
|
|
301
|
+
# @!attribute [rw] network_type
|
|
302
|
+
# The pending change in network type for the DB cluster.
|
|
303
|
+
#
|
|
304
|
+
# Valid Values: `IPV4`, `DUAL`
|
|
305
|
+
# @return [String]
|
|
306
|
+
#
|
|
301
307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
|
|
302
308
|
#
|
|
303
309
|
class ClusterPendingModifiedValues < Struct.new(
|
|
@@ -308,7 +314,8 @@ module Aws::Neptune
|
|
|
308
314
|
:backup_retention_period,
|
|
309
315
|
:storage_type,
|
|
310
316
|
:allocated_storage,
|
|
311
|
-
:iops
|
|
317
|
+
:iops,
|
|
318
|
+
:network_type)
|
|
312
319
|
SENSITIVE = []
|
|
313
320
|
include Aws::Structure
|
|
314
321
|
end
|
|
@@ -322,14 +329,12 @@ module Aws::Neptune
|
|
|
322
329
|
#
|
|
323
330
|
# * Must specify a valid DB cluster parameter group.
|
|
324
331
|
#
|
|
325
|
-
# *
|
|
326
|
-
#
|
|
327
|
-
# for example `my-db-cluster-param-group`, or a valid ARN.
|
|
332
|
+
# * Must specify a valid DB cluster parameter group identifier, for
|
|
333
|
+
# example `my-db-cluster-param-group`, or a valid ARN.
|
|
328
334
|
#
|
|
329
|
-
# *
|
|
330
|
-
#
|
|
331
|
-
#
|
|
332
|
-
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
|
335
|
+
# * The source DB cluster parameter group must be in the same Amazon
|
|
336
|
+
# Region as the copy. Neptune does not support cross-Region copying
|
|
337
|
+
# of parameter groups.
|
|
333
338
|
#
|
|
334
339
|
#
|
|
335
340
|
#
|
|
@@ -501,6 +506,10 @@ module Aws::Neptune
|
|
|
501
506
|
# * Must specify a valid DB parameter group identifier, for example
|
|
502
507
|
# `my-db-param-group`, or a valid ARN.
|
|
503
508
|
#
|
|
509
|
+
# * The source DB parameter group must be in the same Amazon Region as
|
|
510
|
+
# the copy. Neptune does not support cross-Region copying of
|
|
511
|
+
# parameter groups.
|
|
512
|
+
#
|
|
504
513
|
#
|
|
505
514
|
#
|
|
506
515
|
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
|
@@ -711,9 +720,7 @@ module Aws::Neptune
|
|
|
711
720
|
# @return [Boolean]
|
|
712
721
|
#
|
|
713
722
|
# @!attribute [rw] database_name
|
|
714
|
-
#
|
|
715
|
-
# you do not provide a name, Amazon Neptune will not create a database
|
|
716
|
-
# in the DB cluster you are creating.
|
|
723
|
+
# Not supported by Neptune.
|
|
717
724
|
# @return [String]
|
|
718
725
|
#
|
|
719
726
|
# @!attribute [rw] db_cluster_identifier
|
|
@@ -945,6 +952,19 @@ module Aws::Neptune
|
|
|
945
952
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/storage-types.html#provisioned-iops-storage
|
|
946
953
|
# @return [String]
|
|
947
954
|
#
|
|
955
|
+
# @!attribute [rw] network_type
|
|
956
|
+
# The network type of the DB cluster.
|
|
957
|
+
#
|
|
958
|
+
# Valid Values:
|
|
959
|
+
#
|
|
960
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
961
|
+
# uses only IPv4 addresses for communication.
|
|
962
|
+
#
|
|
963
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
964
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
965
|
+
# with the cluster must support IPv6.
|
|
966
|
+
# @return [String]
|
|
967
|
+
#
|
|
948
968
|
# @!attribute [rw] source_region
|
|
949
969
|
# The source region of the snapshot. This is only needed when the
|
|
950
970
|
# shapshot is encrypted and in a different region.
|
|
@@ -981,6 +1001,7 @@ module Aws::Neptune
|
|
|
981
1001
|
:serverless_v2_scaling_configuration,
|
|
982
1002
|
:global_cluster_identifier,
|
|
983
1003
|
:storage_type,
|
|
1004
|
+
:network_type,
|
|
984
1005
|
:source_region)
|
|
985
1006
|
SENSITIVE = []
|
|
986
1007
|
include Aws::Structure
|
|
@@ -2043,6 +2064,18 @@ module Aws::Neptune
|
|
|
2043
2064
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/storage-types.html#provisioned-iops-storage
|
|
2044
2065
|
# @return [String]
|
|
2045
2066
|
#
|
|
2067
|
+
# @!attribute [rw] network_type
|
|
2068
|
+
# The network type of the DB cluster.
|
|
2069
|
+
#
|
|
2070
|
+
# Valid Values:
|
|
2071
|
+
#
|
|
2072
|
+
# * <b> <code>IPV4</code> </b> – The DB cluster uses only IPv4
|
|
2073
|
+
# addresses for communication.
|
|
2074
|
+
#
|
|
2075
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
2076
|
+
# IPv6 addresses for communication.
|
|
2077
|
+
# @return [String]
|
|
2078
|
+
#
|
|
2046
2079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
|
2047
2080
|
#
|
|
2048
2081
|
class DBCluster < Struct.new(
|
|
@@ -2090,7 +2123,8 @@ module Aws::Neptune
|
|
|
2090
2123
|
:serverless_v2_scaling_configuration,
|
|
2091
2124
|
:global_cluster_identifier,
|
|
2092
2125
|
:io_optimized_next_allowed_modification_time,
|
|
2093
|
-
:storage_type
|
|
2126
|
+
:storage_type,
|
|
2127
|
+
:network_type)
|
|
2094
2128
|
SENSITIVE = []
|
|
2095
2129
|
include Aws::Structure
|
|
2096
2130
|
end
|
|
@@ -3083,6 +3117,12 @@ module Aws::Neptune
|
|
|
3083
3117
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html
|
|
3084
3118
|
# @return [Boolean]
|
|
3085
3119
|
#
|
|
3120
|
+
# @!attribute [rw] network_type
|
|
3121
|
+
# The network type of the DB instance. Inherited from the DB cluster.
|
|
3122
|
+
#
|
|
3123
|
+
# Valid Values: `IPV4`, `DUAL`
|
|
3124
|
+
# @return [String]
|
|
3125
|
+
#
|
|
3086
3126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstance AWS API Documentation
|
|
3087
3127
|
#
|
|
3088
3128
|
class DBInstance < Struct.new(
|
|
@@ -3138,7 +3178,8 @@ module Aws::Neptune
|
|
|
3138
3178
|
:performance_insights_enabled,
|
|
3139
3179
|
:performance_insights_kms_key_id,
|
|
3140
3180
|
:enabled_cloudwatch_logs_exports,
|
|
3141
|
-
:deletion_protection
|
|
3181
|
+
:deletion_protection,
|
|
3182
|
+
:network_type)
|
|
3142
3183
|
SENSITIVE = []
|
|
3143
3184
|
include Aws::Structure
|
|
3144
3185
|
end
|
|
@@ -3405,6 +3446,14 @@ module Aws::Neptune
|
|
|
3405
3446
|
# The Amazon Resource Name (ARN) for the DB subnet group.
|
|
3406
3447
|
# @return [String]
|
|
3407
3448
|
#
|
|
3449
|
+
# @!attribute [rw] supported_network_types
|
|
3450
|
+
# The network types supported by the DB subnet group.
|
|
3451
|
+
#
|
|
3452
|
+
# Valid network types include `IPV4` and `DUAL`. A DB subnet group
|
|
3453
|
+
# supports `DUAL` if all subnets in the group have both IPv4 and IPv6
|
|
3454
|
+
# CIDRs.
|
|
3455
|
+
# @return [Array<String>]
|
|
3456
|
+
#
|
|
3408
3457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroup AWS API Documentation
|
|
3409
3458
|
#
|
|
3410
3459
|
class DBSubnetGroup < Struct.new(
|
|
@@ -3413,7 +3462,8 @@ module Aws::Neptune
|
|
|
3413
3462
|
:vpc_id,
|
|
3414
3463
|
:subnet_group_status,
|
|
3415
3464
|
:subnets,
|
|
3416
|
-
:db_subnet_group_arn
|
|
3465
|
+
:db_subnet_group_arn,
|
|
3466
|
+
:supported_network_types)
|
|
3417
3467
|
SENSITIVE = []
|
|
3418
3468
|
include Aws::Structure
|
|
3419
3469
|
end
|
|
@@ -6043,6 +6093,19 @@ module Aws::Neptune
|
|
|
6043
6093
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/storage-types.html#provisioned-iops-storage
|
|
6044
6094
|
# @return [String]
|
|
6045
6095
|
#
|
|
6096
|
+
# @!attribute [rw] network_type
|
|
6097
|
+
# The network type of the DB cluster.
|
|
6098
|
+
#
|
|
6099
|
+
# Valid Values:
|
|
6100
|
+
#
|
|
6101
|
+
# * <b> <code>IPV4</code> </b> – The DB cluster uses only IPv4
|
|
6102
|
+
# addresses for communication.
|
|
6103
|
+
#
|
|
6104
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
6105
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
6106
|
+
# with the cluster must support IPv6.
|
|
6107
|
+
# @return [String]
|
|
6108
|
+
#
|
|
6046
6109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
6047
6110
|
#
|
|
6048
6111
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -6065,7 +6128,8 @@ module Aws::Neptune
|
|
|
6065
6128
|
:deletion_protection,
|
|
6066
6129
|
:copy_tags_to_snapshot,
|
|
6067
6130
|
:serverless_v2_scaling_configuration,
|
|
6068
|
-
:storage_type
|
|
6131
|
+
:storage_type,
|
|
6132
|
+
:network_type)
|
|
6069
6133
|
SENSITIVE = []
|
|
6070
6134
|
include Aws::Structure
|
|
6071
6135
|
end
|
|
@@ -6787,6 +6851,13 @@ module Aws::Neptune
|
|
|
6787
6851
|
include Aws::Structure
|
|
6788
6852
|
end
|
|
6789
6853
|
|
|
6854
|
+
# The specified *NetworkType* is not supported for the DB cluster, DB
|
|
6855
|
+
# subnet group, or orderable DB instance option.
|
|
6856
|
+
#
|
|
6857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/NetworkTypeNotSupportedFault AWS API Documentation
|
|
6858
|
+
#
|
|
6859
|
+
class NetworkTypeNotSupportedFault < Aws::EmptyStructure; end
|
|
6860
|
+
|
|
6790
6861
|
# Not supported by Neptune.
|
|
6791
6862
|
#
|
|
6792
6863
|
# @!attribute [rw] option_group_name
|
|
@@ -6905,6 +6976,10 @@ module Aws::Neptune
|
|
|
6905
6976
|
# with a specific combination of other DB engine attributes.
|
|
6906
6977
|
# @return [Boolean]
|
|
6907
6978
|
#
|
|
6979
|
+
# @!attribute [rw] supported_network_types
|
|
6980
|
+
# The network types supported by the orderable DB instance option.
|
|
6981
|
+
# @return [Array<String>]
|
|
6982
|
+
#
|
|
6908
6983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
|
6909
6984
|
#
|
|
6910
6985
|
class OrderableDBInstanceOption < Struct.new(
|
|
@@ -6928,7 +7003,8 @@ module Aws::Neptune
|
|
|
6928
7003
|
:max_iops_per_db_instance,
|
|
6929
7004
|
:min_iops_per_gib,
|
|
6930
7005
|
:max_iops_per_gib,
|
|
6931
|
-
:supports_global_databases
|
|
7006
|
+
:supports_global_databases,
|
|
7007
|
+
:supported_network_types)
|
|
6932
7008
|
SENSITIVE = []
|
|
6933
7009
|
include Aws::Structure
|
|
6934
7010
|
end
|
|
@@ -7678,6 +7754,19 @@ module Aws::Neptune
|
|
|
7678
7754
|
# Default: `standard`
|
|
7679
7755
|
# @return [String]
|
|
7680
7756
|
#
|
|
7757
|
+
# @!attribute [rw] network_type
|
|
7758
|
+
# The network type of the DB cluster.
|
|
7759
|
+
#
|
|
7760
|
+
# Valid Values:
|
|
7761
|
+
#
|
|
7762
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
7763
|
+
# uses only IPv4 addresses for communication.
|
|
7764
|
+
#
|
|
7765
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
7766
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
7767
|
+
# with the cluster must support IPv6.
|
|
7768
|
+
# @return [String]
|
|
7769
|
+
#
|
|
7681
7770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
7682
7771
|
#
|
|
7683
7772
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -7699,7 +7788,8 @@ module Aws::Neptune
|
|
|
7699
7788
|
:deletion_protection,
|
|
7700
7789
|
:copy_tags_to_snapshot,
|
|
7701
7790
|
:serverless_v2_scaling_configuration,
|
|
7702
|
-
:storage_type
|
|
7791
|
+
:storage_type,
|
|
7792
|
+
:network_type)
|
|
7703
7793
|
SENSITIVE = []
|
|
7704
7794
|
include Aws::Structure
|
|
7705
7795
|
end
|
|
@@ -7893,6 +7983,19 @@ module Aws::Neptune
|
|
|
7893
7983
|
# Default: `standard`
|
|
7894
7984
|
# @return [String]
|
|
7895
7985
|
#
|
|
7986
|
+
# @!attribute [rw] network_type
|
|
7987
|
+
# The network type of the DB cluster.
|
|
7988
|
+
#
|
|
7989
|
+
# Valid Values:
|
|
7990
|
+
#
|
|
7991
|
+
# * <b> <code>IPV4</code> </b> – ( *the default* ) The DB cluster
|
|
7992
|
+
# uses only IPv4 addresses for communication.
|
|
7993
|
+
#
|
|
7994
|
+
# * <b> <code>DUAL</code> </b> – The DB cluster uses both IPv4 and
|
|
7995
|
+
# IPv6 addresses for communication. The DB subnet group associated
|
|
7996
|
+
# with the cluster must support IPv6.
|
|
7997
|
+
# @return [String]
|
|
7998
|
+
#
|
|
7896
7999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
7897
8000
|
#
|
|
7898
8001
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -7912,7 +8015,8 @@ module Aws::Neptune
|
|
|
7912
8015
|
:db_cluster_parameter_group_name,
|
|
7913
8016
|
:deletion_protection,
|
|
7914
8017
|
:serverless_v2_scaling_configuration,
|
|
7915
|
-
:storage_type
|
|
8018
|
+
:storage_type,
|
|
8019
|
+
:network_type)
|
|
7916
8020
|
SENSITIVE = []
|
|
7917
8021
|
include Aws::Structure
|
|
7918
8022
|
end
|
data/lib/aws-sdk-neptune.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -220,6 +220,7 @@ module Aws
|
|
|
220
220
|
},
|
|
221
221
|
?global_cluster_identifier: ::String,
|
|
222
222
|
?storage_type: ::String,
|
|
223
|
+
?network_type: ::String,
|
|
223
224
|
?source_region: ::String
|
|
224
225
|
) -> _CreateDBClusterResponseSuccess
|
|
225
226
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
|
@@ -958,7 +959,8 @@ module Aws
|
|
|
958
959
|
min_capacity: ::Float?,
|
|
959
960
|
max_capacity: ::Float?
|
|
960
961
|
},
|
|
961
|
-
?storage_type: ::String
|
|
962
|
+
?storage_type: ::String,
|
|
963
|
+
?network_type: ::String
|
|
962
964
|
) -> _ModifyDBClusterResponseSuccess
|
|
963
965
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
|
964
966
|
|
|
@@ -1230,7 +1232,8 @@ module Aws
|
|
|
1230
1232
|
min_capacity: ::Float?,
|
|
1231
1233
|
max_capacity: ::Float?
|
|
1232
1234
|
},
|
|
1233
|
-
?storage_type: ::String
|
|
1235
|
+
?storage_type: ::String,
|
|
1236
|
+
?network_type: ::String
|
|
1234
1237
|
) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
1235
1238
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
1236
1239
|
|
|
@@ -1264,7 +1267,8 @@ module Aws
|
|
|
1264
1267
|
min_capacity: ::Float?,
|
|
1265
1268
|
max_capacity: ::Float?
|
|
1266
1269
|
},
|
|
1267
|
-
?storage_type: ::String
|
|
1270
|
+
?storage_type: ::String,
|
|
1271
|
+
?network_type: ::String
|
|
1268
1272
|
) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
1269
1273
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
1270
1274
|
|
data/sig/errors.rbs
CHANGED
|
@@ -115,6 +115,8 @@ module Aws
|
|
|
115
115
|
end
|
|
116
116
|
class KMSKeyNotAccessibleFault < ::Aws::Errors::ServiceError
|
|
117
117
|
end
|
|
118
|
+
class NetworkTypeNotSupportedFault < ::Aws::Errors::ServiceError
|
|
119
|
+
end
|
|
118
120
|
class OptionGroupNotFoundFault < ::Aws::Errors::ServiceError
|
|
119
121
|
end
|
|
120
122
|
class ProvisionedIopsNotAvailableInAZFault < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
|
@@ -76,6 +76,7 @@ module Aws::Neptune
|
|
|
76
76
|
attr_accessor storage_type: ::String
|
|
77
77
|
attr_accessor allocated_storage: ::Integer
|
|
78
78
|
attr_accessor iops: ::Integer
|
|
79
|
+
attr_accessor network_type: ::String
|
|
79
80
|
SENSITIVE: []
|
|
80
81
|
end
|
|
81
82
|
|
|
@@ -174,6 +175,7 @@ module Aws::Neptune
|
|
|
174
175
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
175
176
|
attr_accessor global_cluster_identifier: ::String
|
|
176
177
|
attr_accessor storage_type: ::String
|
|
178
|
+
attr_accessor network_type: ::String
|
|
177
179
|
attr_accessor source_region: ::String
|
|
178
180
|
SENSITIVE: []
|
|
179
181
|
end
|
|
@@ -365,6 +367,7 @@ module Aws::Neptune
|
|
|
365
367
|
attr_accessor global_cluster_identifier: ::String
|
|
366
368
|
attr_accessor io_optimized_next_allowed_modification_time: ::Time
|
|
367
369
|
attr_accessor storage_type: ::String
|
|
370
|
+
attr_accessor network_type: ::String
|
|
368
371
|
SENSITIVE: []
|
|
369
372
|
end
|
|
370
373
|
|
|
@@ -596,6 +599,7 @@ module Aws::Neptune
|
|
|
596
599
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
597
600
|
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
|
598
601
|
attr_accessor deletion_protection: bool
|
|
602
|
+
attr_accessor network_type: ::String
|
|
599
603
|
SENSITIVE: []
|
|
600
604
|
end
|
|
601
605
|
|
|
@@ -681,6 +685,7 @@ module Aws::Neptune
|
|
|
681
685
|
attr_accessor subnet_group_status: ::String
|
|
682
686
|
attr_accessor subnets: ::Array[Types::Subnet]
|
|
683
687
|
attr_accessor db_subnet_group_arn: ::String
|
|
688
|
+
attr_accessor supported_network_types: ::Array[::String]
|
|
684
689
|
SENSITIVE: []
|
|
685
690
|
end
|
|
686
691
|
|
|
@@ -1251,6 +1256,7 @@ module Aws::Neptune
|
|
|
1251
1256
|
attr_accessor copy_tags_to_snapshot: bool
|
|
1252
1257
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
1253
1258
|
attr_accessor storage_type: ::String
|
|
1259
|
+
attr_accessor network_type: ::String
|
|
1254
1260
|
SENSITIVE: []
|
|
1255
1261
|
end
|
|
1256
1262
|
|
|
@@ -1370,6 +1376,9 @@ module Aws::Neptune
|
|
|
1370
1376
|
SENSITIVE: []
|
|
1371
1377
|
end
|
|
1372
1378
|
|
|
1379
|
+
class NetworkTypeNotSupportedFault < Aws::EmptyStructure
|
|
1380
|
+
end
|
|
1381
|
+
|
|
1373
1382
|
class OptionGroupMembership
|
|
1374
1383
|
attr_accessor option_group_name: ::String
|
|
1375
1384
|
attr_accessor status: ::String
|
|
@@ -1401,6 +1410,7 @@ module Aws::Neptune
|
|
|
1401
1410
|
attr_accessor min_iops_per_gib: ::Float
|
|
1402
1411
|
attr_accessor max_iops_per_gib: ::Float
|
|
1403
1412
|
attr_accessor supports_global_databases: bool
|
|
1413
|
+
attr_accessor supported_network_types: ::Array[::String]
|
|
1404
1414
|
SENSITIVE: []
|
|
1405
1415
|
end
|
|
1406
1416
|
|
|
@@ -1573,6 +1583,7 @@ module Aws::Neptune
|
|
|
1573
1583
|
attr_accessor copy_tags_to_snapshot: bool
|
|
1574
1584
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
1575
1585
|
attr_accessor storage_type: ::String
|
|
1586
|
+
attr_accessor network_type: ::String
|
|
1576
1587
|
SENSITIVE: []
|
|
1577
1588
|
end
|
|
1578
1589
|
|
|
@@ -1599,6 +1610,7 @@ module Aws::Neptune
|
|
|
1599
1610
|
attr_accessor deletion_protection: bool
|
|
1600
1611
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
1601
1612
|
attr_accessor storage_type: ::String
|
|
1613
|
+
attr_accessor network_type: ::String
|
|
1602
1614
|
SENSITIVE: []
|
|
1603
1615
|
end
|
|
1604
1616
|
|