aws-sdk-neptunegraph 1.48.0 → 1.49.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88820e20dfea1c56b9cb6c8e3c200c2022d4b69657bd08abfe9af12aab570b82
4
- data.tar.gz: a3a6c5b63ec778a5b530d47195d604e04b11c53acffdba4f54e181fdb51aaed5
3
+ metadata.gz: 6e21c04fb4a67cd6a4106d5fcd427482ff811c935a9a180e20e7040d508c3b7a
4
+ data.tar.gz: a539aa2888fd0a0e8713bf0af34b8f3c11af713b584db9a1c66a33dbd5397bb9
5
5
  SHA512:
6
- metadata.gz: 4105f4e109efeb9108261361d069a5a34a341cd39833879206598374c76461f1aa300049914286f0c1060fbc42f4c6e1a3ad40c408900a4bea849aae90fda56b
7
- data.tar.gz: 5b66826f4c0d069b20cb23e9c7bd363a2b54a7f342a1a26dba56d3ba03434572913a12bcd652a68278f45bd25f107b54eaff15751826c6d2cba998d39c3daec8
6
+ metadata.gz: 8082b7a6adb92c14c5f3794caad1fb1d4c4557e42924e082a60ec175f72ba8b559b015f03ffc45c9f6b7ba2b97edfad5c00e9be06c880e926c12f7ea361d5fe1
7
+ data.tar.gz: 2891029951704e4f58db7a69d18fb6f980fbad9db1453ac3fcd3f85f58b32b350bea4275a47deca645197379694ee05a826a6372683bb92a716dd4752d351bb8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.48.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
@@ -2567,7 +2567,7 @@ module Aws::NeptuneGraph
2567
2567
  tracer: tracer
2568
2568
  )
2569
2569
  context[:gem_name] = 'aws-sdk-neptunegraph'
2570
- context[:gem_version] = '1.48.0'
2570
+ context[:gem_version] = '1.49.0'
2571
2571
  Seahorse::Client::Request.new(handlers, context)
2572
2572
  end
2573
2573
 
@@ -55,7 +55,7 @@ module Aws::NeptuneGraph
55
55
  autoload :EndpointProvider, 'aws-sdk-neptunegraph/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-neptunegraph/endpoints'
57
57
 
58
- GEM_VERSION = '1.48.0'
58
+ GEM_VERSION = '1.49.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -192,14 +192,7 @@ module Aws
192
192
  },
193
193
  ?replica_count: ::Integer,
194
194
  ?deletion_protection: bool,
195
- ?import_options: {
196
- neptune: {
197
- s3_export_path: ::String,
198
- s3_export_kms_key_id: ::String,
199
- preserve_default_vertex_labels: bool?,
200
- preserve_edge_ids: bool?
201
- }?
202
- },
195
+ ?import_options: Params::import_options,
203
196
  ?max_provisioned_memory: ::Integer,
204
197
  ?min_provisioned_memory: ::Integer,
205
198
  ?fail_on_error: bool,
@@ -639,14 +632,7 @@ module Aws
639
632
  end
640
633
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Client.html#start_import_task-instance_method
641
634
  def start_import_task: (
642
- ?import_options: {
643
- neptune: {
644
- s3_export_path: ::String,
645
- s3_export_kms_key_id: ::String,
646
- preserve_default_vertex_labels: bool?,
647
- preserve_edge_ids: bool?
648
- }?
649
- },
635
+ ?import_options: Params::import_options,
650
636
  ?fail_on_error: bool,
651
637
  source: ::String,
652
638
  ?format: ("CSV" | "OPEN_CYPHER" | "PARQUET" | "NTRIPLES"),
data/sig/params.rbs ADDED
@@ -0,0 +1,22 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module NeptuneGraph
10
+ module Params
11
+ type import_options = {
12
+ neptune: {
13
+ s3_export_path: ::String,
14
+ s3_export_kms_key_id: ::String,
15
+ preserve_default_vertex_labels: bool?,
16
+ preserve_edge_ids: bool?
17
+ }?
18
+ }
19
+
20
+ end
21
+ end
22
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptunegraph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-neptunegraph/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs