aws-sdk-neptunegraph 1.6.0 → 1.7.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-neptunegraph/client.rb +10 -1
- data/lib/aws-sdk-neptunegraph/types.rb +9 -0
- data/lib/aws-sdk-neptunegraph.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: 541c7375a178293b1626d5bea1ebb03746a9483d0af54b0c18394a299628f579
|
4
|
+
data.tar.gz: 4bde1051c4914491267c851fda76b0e361df953f60d96ea840c7cfbb56cb3f26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81b4fafa909c6080efd3ddad8a01ca6d9be9eba7ba7b5514b7e0f9f525b932454c4933ade13ecef0ee4a726f1c1064dac5ce2c945a5ed25d4e14d7e156818270
|
7
|
+
data.tar.gz: e8afb8e6c4258762d34e4bbf6aabf3049e83803b9e893ebd95f50d704c819e7ebd3a0abd8120d8606c4650c676ad65068bdfe8ad376b71c777b759f58b7edc51
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.0
|
@@ -482,6 +482,9 @@ module Aws::NeptuneGraph
|
|
482
482
|
# @option params [Integer] :replica_count
|
483
483
|
# The number of replicas in other AZs. Min =0, Max = 2, Default = 1.
|
484
484
|
#
|
485
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
486
|
+
# apply for each replica.
|
487
|
+
#
|
485
488
|
# @option params [Boolean] :deletion_protection
|
486
489
|
# Indicates whether or not to enable deletion protection on the graph.
|
487
490
|
# The graph can’t be deleted when deletion protection is enabled.
|
@@ -651,6 +654,9 @@ module Aws::NeptuneGraph
|
|
651
654
|
# The number of replicas in other AZs to provision on the new graph
|
652
655
|
# after import. Default = 0, Min = 0, Max = 2.
|
653
656
|
#
|
657
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
658
|
+
# apply for each replica.
|
659
|
+
#
|
654
660
|
# @option params [Boolean] :deletion_protection
|
655
661
|
# Indicates whether or not to enable deletion protection on the graph.
|
656
662
|
# The graph can’t be deleted when deletion protection is enabled.
|
@@ -1742,6 +1748,9 @@ module Aws::NeptuneGraph
|
|
1742
1748
|
# @option params [Integer] :replica_count
|
1743
1749
|
# The number of replicas in other AZs. Min =0, Max = 2, Default =1
|
1744
1750
|
#
|
1751
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
1752
|
+
# apply for each replica.
|
1753
|
+
#
|
1745
1754
|
# @option params [Boolean] :public_connectivity
|
1746
1755
|
# Specifies whether or not the graph can be reachable over the internet.
|
1747
1756
|
# All access to graphs is IAM authenticated. (`true` to enable, or
|
@@ -2041,7 +2050,7 @@ module Aws::NeptuneGraph
|
|
2041
2050
|
params: params,
|
2042
2051
|
config: config)
|
2043
2052
|
context[:gem_name] = 'aws-sdk-neptunegraph'
|
2044
|
-
context[:gem_version] = '1.
|
2053
|
+
context[:gem_version] = '1.7.0'
|
2045
2054
|
Seahorse::Client::Request.new(handlers, context)
|
2046
2055
|
end
|
2047
2056
|
|
@@ -152,6 +152,9 @@ module Aws::NeptuneGraph
|
|
152
152
|
#
|
153
153
|
# @!attribute [rw] replica_count
|
154
154
|
# The number of replicas in other AZs. Min =0, Max = 2, Default = 1.
|
155
|
+
#
|
156
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
157
|
+
# apply for each replica.
|
155
158
|
# @return [Integer]
|
156
159
|
#
|
157
160
|
# @!attribute [rw] deletion_protection
|
@@ -385,6 +388,9 @@ module Aws::NeptuneGraph
|
|
385
388
|
# @!attribute [rw] replica_count
|
386
389
|
# The number of replicas in other AZs to provision on the new graph
|
387
390
|
# after import. Default = 0, Min = 0, Max = 2.
|
391
|
+
#
|
392
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
393
|
+
# apply for each replica.
|
388
394
|
# @return [Integer]
|
389
395
|
#
|
390
396
|
# @!attribute [rw] deletion_protection
|
@@ -2145,6 +2151,9 @@ module Aws::NeptuneGraph
|
|
2145
2151
|
#
|
2146
2152
|
# @!attribute [rw] replica_count
|
2147
2153
|
# The number of replicas in other AZs. Min =0, Max = 2, Default =1
|
2154
|
+
#
|
2155
|
+
# Additional charges equivalent to the m-NCUs selected for the graph
|
2156
|
+
# apply for each replica.
|
2148
2157
|
# @return [Integer]
|
2149
2158
|
#
|
2150
2159
|
# @!attribute [rw] public_connectivity
|
data/lib/aws-sdk-neptunegraph.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-neptunegraph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|