aws-sdk-neptunegraph 1.31.0 → 1.33.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-neptunegraph/client.rb +2 -3
- data/lib/aws-sdk-neptunegraph/client_api.rb +5 -5
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2faf352da8ac567cb7b00cbb31bc38702183963a65a7d82b07016416933bb0db
|
4
|
+
data.tar.gz: a64c03d19736d44ac6d14940e35e5586ca3b43031bfa9b5901431e50ac5a9afa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8124e31d8218417d9de8b99ca4313008f8f999a3dbd2d936315ef37fd6bf41ea326c7bda6e21022c16aff986388891e2d6502d597b1befb0bab256ff0c39f7b2
|
7
|
+
data.tar.gz: be0812f345f4e7908a190c8bdea6eb585083d8a5fa6325a33770292d47459fb7c451d17fc44b1b07382f95492c96971cb107fd791405d2eee48507927d91fc40
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.33.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.32.0 (2025-05-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.31.0 (2025-03-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.33.0
|
@@ -200,8 +200,7 @@ module Aws::NeptuneGraph
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -2448,7 +2447,7 @@ module Aws::NeptuneGraph
|
|
2448
2447
|
tracer: tracer
|
2449
2448
|
)
|
2450
2449
|
context[:gem_name] = 'aws-sdk-neptunegraph'
|
2451
|
-
context[:gem_version] = '1.
|
2450
|
+
context[:gem_version] = '1.33.0'
|
2452
2451
|
Seahorse::Client::Request.new(handlers, context)
|
2453
2452
|
end
|
2454
2453
|
|
@@ -214,7 +214,7 @@ module Aws::NeptuneGraph
|
|
214
214
|
CancelImportTaskOutput.add_member(:status, Shapes::ShapeRef.new(shape: ImportTaskStatus, required: true, location_name: "status"))
|
215
215
|
CancelImportTaskOutput.struct_class = Types::CancelImportTaskOutput
|
216
216
|
|
217
|
-
CancelQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
|
217
|
+
CancelQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel" => true, "hostLabelName" => "graphIdentifier"}))
|
218
218
|
CancelQueryInput.add_member(:query_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "queryId"))
|
219
219
|
CancelQueryInput.struct_class = Types::CancelQueryInput
|
220
220
|
|
@@ -359,7 +359,7 @@ module Aws::NeptuneGraph
|
|
359
359
|
|
360
360
|
EdgeStructures.member = Shapes::ShapeRef.new(shape: EdgeStructure)
|
361
361
|
|
362
|
-
ExecuteQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
|
362
|
+
ExecuteQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel" => true, "hostLabelName" => "graphIdentifier"}))
|
363
363
|
ExecuteQueryInput.add_member(:query_string, Shapes::ShapeRef.new(shape: String, required: true, location_name: "query"))
|
364
364
|
ExecuteQueryInput.add_member(:language, Shapes::ShapeRef.new(shape: QueryLanguage, required: true, location_name: "language"))
|
365
365
|
ExecuteQueryInput.add_member(:parameters, Shapes::ShapeRef.new(shape: DocumentValuedMap, location_name: "parameters"))
|
@@ -459,7 +459,7 @@ module Aws::NeptuneGraph
|
|
459
459
|
GetGraphSnapshotOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
460
460
|
GetGraphSnapshotOutput.struct_class = Types::GetGraphSnapshotOutput
|
461
461
|
|
462
|
-
GetGraphSummaryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
|
462
|
+
GetGraphSummaryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel" => true, "hostLabelName" => "graphIdentifier"}))
|
463
463
|
GetGraphSummaryInput.add_member(:mode, Shapes::ShapeRef.new(shape: GraphSummaryMode, location: "querystring", location_name: "mode"))
|
464
464
|
GetGraphSummaryInput.struct_class = Types::GetGraphSummaryInput
|
465
465
|
|
@@ -494,7 +494,7 @@ module Aws::NeptuneGraph
|
|
494
494
|
GetPrivateGraphEndpointOutput.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
|
495
495
|
GetPrivateGraphEndpointOutput.struct_class = Types::GetPrivateGraphEndpointOutput
|
496
496
|
|
497
|
-
GetQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
|
497
|
+
GetQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel" => true, "hostLabelName" => "graphIdentifier"}))
|
498
498
|
GetQueryInput.add_member(:query_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "queryId"))
|
499
499
|
GetQueryInput.struct_class = Types::GetQueryInput
|
500
500
|
|
@@ -619,7 +619,7 @@ module Aws::NeptuneGraph
|
|
619
619
|
ListPrivateGraphEndpointsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
620
620
|
ListPrivateGraphEndpointsOutput.struct_class = Types::ListPrivateGraphEndpointsOutput
|
621
621
|
|
622
|
-
ListQueriesInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
|
622
|
+
ListQueriesInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel" => true, "hostLabelName" => "graphIdentifier"}))
|
623
623
|
ListQueriesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, required: true, location: "querystring", location_name: "maxResults"))
|
624
624
|
ListQueriesInput.add_member(:state, Shapes::ShapeRef.new(shape: QueryStateInput, location: "querystring", location_name: "state"))
|
625
625
|
ListQueriesInput.struct_class = Types::ListQueriesInput
|
data/lib/aws-sdk-neptunegraph.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -78,7 +77,6 @@ licenses:
|
|
78
77
|
metadata:
|
79
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-neptunegraph
|
80
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-neptunegraph/CHANGELOG.md
|
81
|
-
post_install_message:
|
82
80
|
rdoc_options: []
|
83
81
|
require_paths:
|
84
82
|
- lib
|
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
91
|
- !ruby/object:Gem::Version
|
94
92
|
version: '0'
|
95
93
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.7
|
98
95
|
specification_version: 4
|
99
96
|
summary: AWS SDK for Ruby - Neptune Graph
|
100
97
|
test_files: []
|