aws-sdk-neptunegraph 1.25.0 → 1.27.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptunegraph/client.rb +31 -4
- data/lib/aws-sdk-neptunegraph/client_api.rb +1 -0
- data/lib/aws-sdk-neptunegraph/types.rb +8 -3
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 712fe23b05564c63f41335fa43e4c827c24b4970d7eef0f9e1a49f22e5ed9fd9
|
4
|
+
data.tar.gz: e787fcad1851c9a974846e588a28280fae435fdb3c11259167ca8d0341d7de21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0880fe311f78eee7af2c956086c8042b18c5621b5ed4c94d33a2b3ea7a222fa89900cb84bf2f4f0d623eee80831b223c54f21fc14e72313c752a57b866b5014
|
7
|
+
data.tar.gz: ab4cd1beba0c60d197d99f02cb52da3cb6c790af72a0d7e62f8fef5211bd94ee0210c0b2e62cf09db925605c76f32a01931c90d16487faf9b4d434ac9bc4cf75
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2025-02-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added argument to `list-export` to filter by graph ID
|
8
|
+
|
9
|
+
1.26.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.25.0 (2024-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -257,11 +257,34 @@ module Aws::NeptuneGraph
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -779,9 +802,9 @@ module Aws::NeptuneGraph
|
|
779
802
|
# (m-NCUs) to use for the graph. Default: 1024, or the approved upper
|
780
803
|
# limit for your account.
|
781
804
|
#
|
782
|
-
# If both the minimum and maximum values are specified, the
|
783
|
-
# `
|
784
|
-
#
|
805
|
+
# If both the minimum and maximum values are specified, the final
|
806
|
+
# `provisioned-memory` will be chosen per the actual size of your
|
807
|
+
# imported data. If neither value is specified, 128 m-NCUs are used.
|
785
808
|
#
|
786
809
|
# @option params [Integer] :min_provisioned_memory
|
787
810
|
# The minimum provisioned memory-optimized Neptune Capacity Units
|
@@ -1558,6 +1581,9 @@ module Aws::NeptuneGraph
|
|
1558
1581
|
|
1559
1582
|
# Retrieves a list of export tasks.
|
1560
1583
|
#
|
1584
|
+
# @option params [String] :graph_identifier
|
1585
|
+
# The unique identifier of the Neptune Analytics graph.
|
1586
|
+
#
|
1561
1587
|
# @option params [String] :next_token
|
1562
1588
|
# Pagination token used to paginate input.
|
1563
1589
|
#
|
@@ -1574,6 +1600,7 @@ module Aws::NeptuneGraph
|
|
1574
1600
|
# @example Request syntax with placeholder values
|
1575
1601
|
#
|
1576
1602
|
# resp = client.list_export_tasks({
|
1603
|
+
# graph_identifier: "GraphIdentifier",
|
1577
1604
|
# next_token: "PaginationToken",
|
1578
1605
|
# max_results: 1,
|
1579
1606
|
# })
|
@@ -2421,7 +2448,7 @@ module Aws::NeptuneGraph
|
|
2421
2448
|
tracer: tracer
|
2422
2449
|
)
|
2423
2450
|
context[:gem_name] = 'aws-sdk-neptunegraph'
|
2424
|
-
context[:gem_version] = '1.
|
2451
|
+
context[:gem_version] = '1.27.0'
|
2425
2452
|
Seahorse::Client::Request.new(handlers, context)
|
2426
2453
|
end
|
2427
2454
|
|
@@ -576,6 +576,7 @@ module Aws::NeptuneGraph
|
|
576
576
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
577
577
|
InternalServerException.struct_class = Types::InternalServerException
|
578
578
|
|
579
|
+
ListExportTasksInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, location: "querystring", location_name: "graphIdentifier"))
|
579
580
|
ListExportTasksInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
580
581
|
ListExportTasksInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
581
582
|
ListExportTasksInput.struct_class = Types::ListExportTasksInput
|
@@ -484,9 +484,9 @@ module Aws::NeptuneGraph
|
|
484
484
|
# (m-NCUs) to use for the graph. Default: 1024, or the approved upper
|
485
485
|
# limit for your account.
|
486
486
|
#
|
487
|
-
# If both the minimum and maximum values are specified, the
|
488
|
-
# `
|
489
|
-
#
|
487
|
+
# If both the minimum and maximum values are specified, the final
|
488
|
+
# `provisioned-memory` will be chosen per the actual size of your
|
489
|
+
# imported data. If neither value is specified, 128 m-NCUs are used.
|
490
490
|
# @return [Integer]
|
491
491
|
#
|
492
492
|
# @!attribute [rw] min_provisioned_memory
|
@@ -1953,6 +1953,10 @@ module Aws::NeptuneGraph
|
|
1953
1953
|
include Aws::Structure
|
1954
1954
|
end
|
1955
1955
|
|
1956
|
+
# @!attribute [rw] graph_identifier
|
1957
|
+
# The unique identifier of the Neptune Analytics graph.
|
1958
|
+
# @return [String]
|
1959
|
+
#
|
1956
1960
|
# @!attribute [rw] next_token
|
1957
1961
|
# Pagination token used to paginate input.
|
1958
1962
|
# @return [String]
|
@@ -1964,6 +1968,7 @@ module Aws::NeptuneGraph
|
|
1964
1968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/ListExportTasksInput AWS API Documentation
|
1965
1969
|
#
|
1966
1970
|
class ListExportTasksInput < Struct.new(
|
1971
|
+
:graph_identifier,
|
1967
1972
|
:next_token,
|
1968
1973
|
:max_results)
|
1969
1974
|
SENSITIVE = []
|
data/lib/aws-sdk-neptunegraph.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -425,6 +427,7 @@ module Aws
|
|
425
427
|
end
|
426
428
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Client.html#list_export_tasks-instance_method
|
427
429
|
def list_export_tasks: (
|
430
|
+
?graph_identifier: ::String,
|
428
431
|
?next_token: ::String,
|
429
432
|
?max_results: ::Integer
|
430
433
|
) -> _ListExportTasksResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
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.27.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:
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|