aws-sdk-neptune 1.91.0 → 1.93.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune/client.rb +30 -4
- data/lib/aws-sdk-neptune/client_api.rb +3 -3
- data/lib/aws-sdk-neptune/types.rb +42 -4
- data/lib/aws-sdk-neptune.rb +1 -1
- 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: 699cd7a53e60565bace39dad2947db4a4deb969b13d5984c8003ba8e3a5db095
|
4
|
+
data.tar.gz: 5da2395071b8b78052d9a0d52849d0bdfea8a0c836f82b33ef1b176549fe7921
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41ab4eb71060e48b1602df81b1aa2d1909726790f2519b47b00ddb695d2e7de6e5451d6f65fcfe68f47661b7d4a6967b5786f43de6f44f63cf546b9673d54c62
|
7
|
+
data.tar.gz: cbc606e5f0385b2433d165b5ab5a4699c38429d09516d2e4a19b8f04656bf619b5eabd89daeaf5bb3ec1a356384657d6f8d860817630045b0c975eb0bea37c3a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.93.0 (2025-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc-only update to address customer use.
|
8
|
+
|
9
|
+
1.92.0 (2025-09-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Removed the deprecated marker from publiclyAccessible parameter from DbInstance, CreateDbInstance and ModifyDbInstance and added relevant usage information for the parameter.
|
13
|
+
|
4
14
|
1.91.0 (2025-08-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.0
|
@@ -762,7 +762,9 @@ module Aws::Neptune
|
|
762
762
|
#
|
763
763
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
764
764
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
765
|
-
# not case-sensitive.
|
765
|
+
# not case-sensitive. If the source DB cluster snapshot is in a
|
766
|
+
# different region or owned by another account, specify the snapshot
|
767
|
+
# ARN.
|
766
768
|
#
|
767
769
|
# Constraints:
|
768
770
|
#
|
@@ -1739,7 +1741,19 @@ module Aws::Neptune
|
|
1739
1741
|
# *(Not supported by Neptune)*
|
1740
1742
|
#
|
1741
1743
|
# @option params [Boolean] :publicly_accessible
|
1742
|
-
#
|
1744
|
+
# Indicates whether the DB instance is publicly accessible.
|
1745
|
+
#
|
1746
|
+
# When the DB instance is publicly accessible and you connect from
|
1747
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
1748
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1749
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
1750
|
+
# resolves to the private IP address. Access to the DB instance is
|
1751
|
+
# ultimately controlled by the security group it uses. That public
|
1752
|
+
# access isn't permitted if the security group assigned to the DB
|
1753
|
+
# cluster doesn't permit it.
|
1754
|
+
#
|
1755
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
1756
|
+
# instance with a DNS name that resolves to a private IP address.
|
1743
1757
|
#
|
1744
1758
|
# @option params [Array<Types::Tag>] :tags
|
1745
1759
|
# The tags to assign to the new instance.
|
@@ -5853,7 +5867,19 @@ module Aws::Neptune
|
|
5853
5867
|
# Default: `8182`
|
5854
5868
|
#
|
5855
5869
|
# @option params [Boolean] :publicly_accessible
|
5856
|
-
#
|
5870
|
+
# Indicates whether the DB instance is publicly accessible.
|
5871
|
+
#
|
5872
|
+
# When the DB instance is publicly accessible and you connect from
|
5873
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
5874
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
5875
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
5876
|
+
# resolves to the private IP address. Access to the DB instance is
|
5877
|
+
# ultimately controlled by the security group it uses. That public
|
5878
|
+
# access isn't permitted if the security group assigned to the DB
|
5879
|
+
# cluster doesn't permit it.
|
5880
|
+
#
|
5881
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
5882
|
+
# instance with a DNS name that resolves to a private IP address.
|
5857
5883
|
#
|
5858
5884
|
# @option params [String] :monitoring_role_arn
|
5859
5885
|
# The ARN for the IAM role that permits Neptune to send enhanced
|
@@ -7757,7 +7783,7 @@ module Aws::Neptune
|
|
7757
7783
|
tracer: tracer
|
7758
7784
|
)
|
7759
7785
|
context[:gem_name] = 'aws-sdk-neptune'
|
7760
|
-
context[:gem_version] = '1.
|
7786
|
+
context[:gem_version] = '1.93.0'
|
7761
7787
|
Seahorse::Client::Request.new(handlers, context)
|
7762
7788
|
end
|
7763
7789
|
|
@@ -505,7 +505,7 @@ module Aws::Neptune
|
|
505
505
|
CreateDBInstanceMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
506
506
|
CreateDBInstanceMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
507
507
|
CreateDBInstanceMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
508
|
-
CreateDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional,
|
508
|
+
CreateDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
509
509
|
CreateDBInstanceMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
510
510
|
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
511
511
|
CreateDBInstanceMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
@@ -796,7 +796,7 @@ module Aws::Neptune
|
|
796
796
|
DBInstance.add_member(:option_group_memberships, Shapes::ShapeRef.new(shape: OptionGroupMembershipList, location_name: "OptionGroupMemberships"))
|
797
797
|
DBInstance.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
798
798
|
DBInstance.add_member(:secondary_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SecondaryAvailabilityZone"))
|
799
|
-
DBInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean,
|
799
|
+
DBInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAccessible"))
|
800
800
|
DBInstance.add_member(:status_infos, Shapes::ShapeRef.new(shape: DBInstanceStatusInfoList, location_name: "StatusInfos"))
|
801
801
|
DBInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
802
802
|
DBInstance.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
@@ -1374,7 +1374,7 @@ module Aws::Neptune
|
|
1374
1374
|
ModifyDBInstanceMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1375
1375
|
ModifyDBInstanceMessage.add_member(:monitoring_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MonitoringInterval"))
|
1376
1376
|
ModifyDBInstanceMessage.add_member(:db_port_number, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "DBPortNumber"))
|
1377
|
-
ModifyDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional,
|
1377
|
+
ModifyDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
1378
1378
|
ModifyDBInstanceMessage.add_member(:monitoring_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "MonitoringRoleArn"))
|
1379
1379
|
ModifyDBInstanceMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
1380
1380
|
ModifyDBInstanceMessage.add_member(:promotion_tier, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PromotionTier"))
|
@@ -389,7 +389,9 @@ module Aws::Neptune
|
|
389
389
|
|
390
390
|
# @!attribute [rw] source_db_cluster_snapshot_identifier
|
391
391
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
392
|
-
# not case-sensitive.
|
392
|
+
# not case-sensitive. If the source DB cluster snapshot is in a
|
393
|
+
# different region or owned by another account, specify the snapshot
|
394
|
+
# ARN.
|
393
395
|
#
|
394
396
|
# Constraints:
|
395
397
|
#
|
@@ -1296,7 +1298,19 @@ module Aws::Neptune
|
|
1296
1298
|
# @return [String]
|
1297
1299
|
#
|
1298
1300
|
# @!attribute [rw] publicly_accessible
|
1299
|
-
#
|
1301
|
+
# Indicates whether the DB instance is publicly accessible.
|
1302
|
+
#
|
1303
|
+
# When the DB instance is publicly accessible and you connect from
|
1304
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
1305
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
1306
|
+
# When you connect from within the same VPC as the DB instance, the
|
1307
|
+
# endpoint resolves to the private IP address. Access to the DB
|
1308
|
+
# instance is ultimately controlled by the security group it uses.
|
1309
|
+
# That public access isn't permitted if the security group assigned
|
1310
|
+
# to the DB cluster doesn't permit it.
|
1311
|
+
#
|
1312
|
+
# When the DB instance isn't publicly accessible, it is an internal
|
1313
|
+
# DB instance with a DNS name that resolves to a private IP address.
|
1300
1314
|
# @return [Boolean]
|
1301
1315
|
#
|
1302
1316
|
# @!attribute [rw] tags
|
@@ -2931,7 +2945,19 @@ module Aws::Neptune
|
|
2931
2945
|
# @return [String]
|
2932
2946
|
#
|
2933
2947
|
# @!attribute [rw] publicly_accessible
|
2934
|
-
#
|
2948
|
+
# Indicates whether the DB instance is publicly accessible.
|
2949
|
+
#
|
2950
|
+
# When the DB instance is publicly accessible and you connect from
|
2951
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
2952
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
2953
|
+
# When you connect from within the same VPC as the DB instance, the
|
2954
|
+
# endpoint resolves to the private IP address. Access to the DB
|
2955
|
+
# instance is ultimately controlled by the security group it uses.
|
2956
|
+
# That public access isn't permitted if the security group assigned
|
2957
|
+
# to the DB cluster doesn't permit it.
|
2958
|
+
#
|
2959
|
+
# When the DB instance isn't publicly accessible, it is an internal
|
2960
|
+
# DB instance with a DNS name that resolves to a private IP address.
|
2935
2961
|
# @return [Boolean]
|
2936
2962
|
#
|
2937
2963
|
# @!attribute [rw] status_infos
|
@@ -6390,7 +6416,19 @@ module Aws::Neptune
|
|
6390
6416
|
# @return [Integer]
|
6391
6417
|
#
|
6392
6418
|
# @!attribute [rw] publicly_accessible
|
6393
|
-
#
|
6419
|
+
# Indicates whether the DB instance is publicly accessible.
|
6420
|
+
#
|
6421
|
+
# When the DB instance is publicly accessible and you connect from
|
6422
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
6423
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
6424
|
+
# When you connect from within the same VPC as the DB instance, the
|
6425
|
+
# endpoint resolves to the private IP address. Access to the DB
|
6426
|
+
# instance is ultimately controlled by the security group it uses.
|
6427
|
+
# That public access isn't permitted if the security group assigned
|
6428
|
+
# to the DB cluster doesn't permit it.
|
6429
|
+
#
|
6430
|
+
# When the DB instance isn't publicly accessible, it is an internal
|
6431
|
+
# DB instance with a DNS name that resolves to a private IP address.
|
6394
6432
|
# @return [Boolean]
|
6395
6433
|
#
|
6396
6434
|
# @!attribute [rw] monitoring_role_arn
|
data/lib/aws-sdk-neptune.rb
CHANGED