aws-sdk-neptunegraph 1.14.0 → 1.16.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: 1c3c7efbc808f2707386a24718f180645ed515afb65125be3b1fe884651d1a61
4
- data.tar.gz: d2c0eaf2008b055fc4232e14af602317442889072e9d9f53f23314d703410b10
3
+ metadata.gz: 459ce6c2e57ec283af04ddd227a51216d810fa48a5fcc8a3c41a91990d392325
4
+ data.tar.gz: 1028b4d5bef768d4946c4854293f89957b6f815f52f11cc90de514a9648d3e6b
5
5
  SHA512:
6
- metadata.gz: 20c7cefd973117c8f39689be18e967ab98709b514259daf7090ada5258d64e840ce605cdd8925df4a95f70256657d79c57ab2590cb05791f5236986a310fe073
7
- data.tar.gz: e78cb848693d45754076eed39a3105cc332f300423920de66470831e18adac3f264f48656a6b33ee5023f628021c87a7711099f2a6f48457fd99dafc42ae4851
6
+ metadata.gz: aa7e666187290af40a141add10936b7637c6bfbc432e986b2d5fee5c606bb8396c543c668c7c1167bc1313da8a78542f53bebd92c849bc6cfbc1e544acb259ad
7
+ data.tar.gz: 9446762d6af59e2acad32fdb45e68792bbf91e33d766ff0671cab6d2187c0d0348d8bc4b63194634cf9d6218c0ba4b1165392f3248859db286d821b1e3e5abbe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.15.0 (2024-08-13)
10
+ ------------------
11
+
12
+ * Feature - Amazon Neptune Analytics provides a new option for customers to load data into a graph using the RDF (Resource Description Framework) NTRIPLES format. When loading NTRIPLES files, use the value `convertToIri` for the `blankNodeHandling` parameter.
13
+
4
14
  1.14.0 (2024-07-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::NeptuneGraph
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::NeptuneGraph::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::NeptuneGraph
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -450,7 +462,7 @@ module Aws::NeptuneGraph
450
462
  # resp.graph_id #=> String
451
463
  # resp.task_id #=> String
452
464
  # resp.source #=> String
453
- # resp.format #=> String, one of "CSV", "OPEN_CYPHER"
465
+ # resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
454
466
  # resp.role_arn #=> String
455
467
  # resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
456
468
  #
@@ -739,6 +751,16 @@ module Aws::NeptuneGraph
739
751
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-gremlin.html
740
752
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-opencypher.html
741
753
  #
754
+ # @option params [String] :blank_node_handling
755
+ # The method to handle blank nodes in the dataset. Currently, only
756
+ # `convertToIri` is supported, meaning blank nodes are converted to
757
+ # unique IRIs at load time. Must be provided when format is `ntriples`.
758
+ # For more information, see [Handling RDF values][1].
759
+ #
760
+ #
761
+ #
762
+ # [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
763
+ #
742
764
  # @option params [required, String] :role_arn
743
765
  # The ARN of the IAM role that will allow access to the data that is to
744
766
  # be imported.
@@ -779,7 +801,8 @@ module Aws::NeptuneGraph
779
801
  # min_provisioned_memory: 1,
780
802
  # fail_on_error: false,
781
803
  # source: "String", # required
782
- # format: "CSV", # accepts CSV, OPEN_CYPHER
804
+ # format: "CSV", # accepts CSV, OPEN_CYPHER, NTRIPLES
805
+ # blank_node_handling: "convertToIri", # accepts convertToIri
783
806
  # role_arn: "RoleArn", # required
784
807
  # })
785
808
  #
@@ -788,7 +811,7 @@ module Aws::NeptuneGraph
788
811
  # resp.graph_id #=> String
789
812
  # resp.task_id #=> String
790
813
  # resp.source #=> String
791
- # resp.format #=> String, one of "CSV", "OPEN_CYPHER"
814
+ # resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
792
815
  # resp.role_arn #=> String
793
816
  # resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
794
817
  # resp.import_options.neptune.s3_export_path #=> String
@@ -1276,7 +1299,7 @@ module Aws::NeptuneGraph
1276
1299
  # resp.graph_id #=> String
1277
1300
  # resp.task_id #=> String
1278
1301
  # resp.source #=> String
1279
- # resp.format #=> String, one of "CSV", "OPEN_CYPHER"
1302
+ # resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
1280
1303
  # resp.role_arn #=> String
1281
1304
  # resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
1282
1305
  # resp.import_options.neptune.s3_export_path #=> String
@@ -1551,7 +1574,7 @@ module Aws::NeptuneGraph
1551
1574
  # resp.tasks[0].graph_id #=> String
1552
1575
  # resp.tasks[0].task_id #=> String
1553
1576
  # resp.tasks[0].source #=> String
1554
- # resp.tasks[0].format #=> String, one of "CSV", "OPEN_CYPHER"
1577
+ # resp.tasks[0].format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
1555
1578
  # resp.tasks[0].role_arn #=> String
1556
1579
  # resp.tasks[0].status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
1557
1580
  # resp.next_token #=> String
@@ -1874,6 +1897,16 @@ module Aws::NeptuneGraph
1874
1897
  # are CSV, which identifies the Gremlin CSV format or OPENCYPHER, which
1875
1898
  # identies the openCypher load format.
1876
1899
  #
1900
+ # @option params [String] :blank_node_handling
1901
+ # The method to handle blank nodes in the dataset. Currently, only
1902
+ # `convertToIri` is supported, meaning blank nodes are converted to
1903
+ # unique IRIs at load time. Must be provided when format is `ntriples`.
1904
+ # For more information, see [Handling RDF values][1].
1905
+ #
1906
+ #
1907
+ #
1908
+ # [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
1909
+ #
1877
1910
  # @option params [required, String] :graph_identifier
1878
1911
  # The unique identifier of the Neptune Analytics graph.
1879
1912
  #
@@ -1904,7 +1937,8 @@ module Aws::NeptuneGraph
1904
1937
  # },
1905
1938
  # fail_on_error: false,
1906
1939
  # source: "String", # required
1907
- # format: "CSV", # accepts CSV, OPEN_CYPHER
1940
+ # format: "CSV", # accepts CSV, OPEN_CYPHER, NTRIPLES
1941
+ # blank_node_handling: "convertToIri", # accepts convertToIri
1908
1942
  # graph_identifier: "GraphIdentifier", # required
1909
1943
  # role_arn: "RoleArn", # required
1910
1944
  # })
@@ -1914,7 +1948,7 @@ module Aws::NeptuneGraph
1914
1948
  # resp.graph_id #=> String
1915
1949
  # resp.task_id #=> String
1916
1950
  # resp.source #=> String
1917
- # resp.format #=> String, one of "CSV", "OPEN_CYPHER"
1951
+ # resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
1918
1952
  # resp.role_arn #=> String
1919
1953
  # resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
1920
1954
  # resp.import_options.neptune.s3_export_path #=> String
@@ -2080,14 +2114,19 @@ module Aws::NeptuneGraph
2080
2114
  # @api private
2081
2115
  def build_request(operation_name, params = {})
2082
2116
  handlers = @handlers.for(operation_name)
2117
+ tracer = config.telemetry_provider.tracer_provider.tracer(
2118
+ Aws::Telemetry.module_to_tracer_name('Aws::NeptuneGraph')
2119
+ )
2083
2120
  context = Seahorse::Client::RequestContext.new(
2084
2121
  operation_name: operation_name,
2085
2122
  operation: config.api.operation(operation_name),
2086
2123
  client: self,
2087
2124
  params: params,
2088
- config: config)
2125
+ config: config,
2126
+ tracer: tracer
2127
+ )
2089
2128
  context[:gem_name] = 'aws-sdk-neptunegraph'
2090
- context[:gem_version] = '1.14.0'
2129
+ context[:gem_version] = '1.16.0'
2091
2130
  Seahorse::Client::Request.new(handlers, context)
2092
2131
  end
2093
2132
 
@@ -15,6 +15,7 @@ module Aws::NeptuneGraph
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
17
  Arn = Shapes::StringShape.new(name: 'Arn')
18
+ BlankNodeHandling = Shapes::StringShape.new(name: 'BlankNodeHandling')
18
19
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
20
  CancelImportTaskInput = Shapes::StructureShape.new(name: 'CancelImportTaskInput')
20
21
  CancelImportTaskOutput = Shapes::StructureShape.new(name: 'CancelImportTaskOutput')
@@ -229,6 +230,7 @@ module Aws::NeptuneGraph
229
230
  CreateGraphUsingImportTaskInput.add_member(:fail_on_error, Shapes::ShapeRef.new(shape: Boolean, location_name: "failOnError"))
230
231
  CreateGraphUsingImportTaskInput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
231
232
  CreateGraphUsingImportTaskInput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
233
+ CreateGraphUsingImportTaskInput.add_member(:blank_node_handling, Shapes::ShapeRef.new(shape: BlankNodeHandling, location_name: "blankNodeHandling"))
232
234
  CreateGraphUsingImportTaskInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
233
235
  CreateGraphUsingImportTaskInput.struct_class = Types::CreateGraphUsingImportTaskInput
234
236
 
@@ -622,6 +624,7 @@ module Aws::NeptuneGraph
622
624
  StartImportTaskInput.add_member(:fail_on_error, Shapes::ShapeRef.new(shape: Boolean, location_name: "failOnError"))
623
625
  StartImportTaskInput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
624
626
  StartImportTaskInput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
627
+ StartImportTaskInput.add_member(:blank_node_handling, Shapes::ShapeRef.new(shape: BlankNodeHandling, location_name: "blankNodeHandling"))
625
628
  StartImportTaskInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
626
629
  StartImportTaskInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
627
630
  StartImportTaskInput.struct_class = Types::StartImportTaskInput
@@ -445,6 +445,17 @@ module Aws::NeptuneGraph
445
445
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-opencypher.html
446
446
  # @return [String]
447
447
  #
448
+ # @!attribute [rw] blank_node_handling
449
+ # The method to handle blank nodes in the dataset. Currently, only
450
+ # `convertToIri` is supported, meaning blank nodes are converted to
451
+ # unique IRIs at load time. Must be provided when format is
452
+ # `ntriples`. For more information, see [Handling RDF values][1].
453
+ #
454
+ #
455
+ #
456
+ # [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
457
+ # @return [String]
458
+ #
448
459
  # @!attribute [rw] role_arn
449
460
  # The ARN of the IAM role that will allow access to the data that is
450
461
  # to be imported.
@@ -466,6 +477,7 @@ module Aws::NeptuneGraph
466
477
  :fail_on_error,
467
478
  :source,
468
479
  :format,
480
+ :blank_node_handling,
469
481
  :role_arn)
470
482
  SENSITIVE = []
471
483
  include Aws::Structure
@@ -487,13 +499,15 @@ module Aws::NeptuneGraph
487
499
  #
488
500
  # @!attribute [rw] format
489
501
  # Specifies the format of S3 data to be imported. Valid values are
490
- # `CSV`, which identifies the [Gremlin CSV format][1] or `OPENCYPHER`,
491
- # which identies the [openCypher load format][2].
502
+ # `CSV`, which identifies the [Gremlin CSV format][1], `OPENCYPHER`,
503
+ # which identifies the [openCypher load format][2], or `ntriples`,
504
+ # which identifies the [RDF n-triples][3] format.
492
505
  #
493
506
  #
494
507
  #
495
508
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-gremlin.html
496
509
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-opencypher.html
510
+ # [3]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html
497
511
  # @return [String]
498
512
  #
499
513
  # @!attribute [rw] role_arn
@@ -2315,6 +2329,17 @@ module Aws::NeptuneGraph
2315
2329
  # which identies the openCypher load format.
2316
2330
  # @return [String]
2317
2331
  #
2332
+ # @!attribute [rw] blank_node_handling
2333
+ # The method to handle blank nodes in the dataset. Currently, only
2334
+ # `convertToIri` is supported, meaning blank nodes are converted to
2335
+ # unique IRIs at load time. Must be provided when format is
2336
+ # `ntriples`. For more information, see [Handling RDF values][1].
2337
+ #
2338
+ #
2339
+ #
2340
+ # [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
2341
+ # @return [String]
2342
+ #
2318
2343
  # @!attribute [rw] graph_identifier
2319
2344
  # The unique identifier of the Neptune Analytics graph.
2320
2345
  # @return [String]
@@ -2331,6 +2356,7 @@ module Aws::NeptuneGraph
2331
2356
  :fail_on_error,
2332
2357
  :source,
2333
2358
  :format,
2359
+ :blank_node_handling,
2334
2360
  :graph_identifier,
2335
2361
  :role_arn)
2336
2362
  SENSITIVE = []
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-neptunegraph/customizations'
53
53
  # @!group service
54
54
  module Aws::NeptuneGraph
55
55
 
56
- GEM_VERSION = '1.14.0'
56
+ GEM_VERSION = '1.16.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -78,7 +79,7 @@ module Aws
78
79
  def graph_id: () -> ::String
79
80
  def task_id: () -> ::String
80
81
  def source: () -> ::String
81
- def format: () -> ("CSV" | "OPEN_CYPHER")
82
+ def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
82
83
  def role_arn: () -> ::String
83
84
  def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
84
85
  end
@@ -151,7 +152,7 @@ module Aws
151
152
  def graph_id: () -> ::String
152
153
  def task_id: () -> ::String
153
154
  def source: () -> ::String
154
- def format: () -> ("CSV" | "OPEN_CYPHER")
155
+ def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
155
156
  def role_arn: () -> ::String
156
157
  def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
157
158
  def import_options: () -> Types::ImportOptions
@@ -179,7 +180,8 @@ module Aws
179
180
  ?min_provisioned_memory: ::Integer,
180
181
  ?fail_on_error: bool,
181
182
  source: ::String,
182
- ?format: ("CSV" | "OPEN_CYPHER"),
183
+ ?format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES"),
184
+ ?blank_node_handling: ("convertToIri"),
183
185
  role_arn: ::String
184
186
  ) -> _CreateGraphUsingImportTaskResponseSuccess
185
187
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGraphUsingImportTaskResponseSuccess
@@ -330,7 +332,7 @@ module Aws
330
332
  def graph_id: () -> ::String
331
333
  def task_id: () -> ::String
332
334
  def source: () -> ::String
333
- def format: () -> ("CSV" | "OPEN_CYPHER")
335
+ def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
334
336
  def role_arn: () -> ::String
335
337
  def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
336
338
  def import_options: () -> Types::ImportOptions
@@ -505,7 +507,7 @@ module Aws
505
507
  def graph_id: () -> ::String
506
508
  def task_id: () -> ::String
507
509
  def source: () -> ::String
508
- def format: () -> ("CSV" | "OPEN_CYPHER")
510
+ def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
509
511
  def role_arn: () -> ::String
510
512
  def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
511
513
  def import_options: () -> Types::ImportOptions
@@ -522,7 +524,8 @@ module Aws
522
524
  },
523
525
  ?fail_on_error: bool,
524
526
  source: ::String,
525
- ?format: ("CSV" | "OPEN_CYPHER"),
527
+ ?format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES"),
528
+ ?blank_node_handling: ("convertToIri"),
526
529
  graph_identifier: ::String,
527
530
  role_arn: ::String
528
531
  ) -> _StartImportTaskResponseSuccess
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -22,7 +22,7 @@ module Aws::NeptuneGraph
22
22
  attr_accessor graph_id: ::String
23
23
  attr_accessor task_id: ::String
24
24
  attr_accessor source: ::String
25
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
25
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
26
26
  attr_accessor role_arn: ::String
27
27
  attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
28
28
  SENSITIVE: []
@@ -102,7 +102,8 @@ module Aws::NeptuneGraph
102
102
  attr_accessor min_provisioned_memory: ::Integer
103
103
  attr_accessor fail_on_error: bool
104
104
  attr_accessor source: ::String
105
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
105
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
106
+ attr_accessor blank_node_handling: ("convertToIri")
106
107
  attr_accessor role_arn: ::String
107
108
  SENSITIVE: []
108
109
  end
@@ -111,7 +112,7 @@ module Aws::NeptuneGraph
111
112
  attr_accessor graph_id: ::String
112
113
  attr_accessor task_id: ::String
113
114
  attr_accessor source: ::String
114
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
115
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
115
116
  attr_accessor role_arn: ::String
116
117
  attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
117
118
  attr_accessor import_options: Types::ImportOptions
@@ -273,7 +274,7 @@ module Aws::NeptuneGraph
273
274
  attr_accessor graph_id: ::String
274
275
  attr_accessor task_id: ::String
275
276
  attr_accessor source: ::String
276
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
277
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
277
278
  attr_accessor role_arn: ::String
278
279
  attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
279
280
  attr_accessor import_options: Types::ImportOptions
@@ -382,7 +383,7 @@ module Aws::NeptuneGraph
382
383
  attr_accessor graph_id: ::String
383
384
  attr_accessor task_id: ::String
384
385
  attr_accessor source: ::String
385
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
386
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
386
387
  attr_accessor role_arn: ::String
387
388
  attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
388
389
  SENSITIVE: []
@@ -570,7 +571,8 @@ module Aws::NeptuneGraph
570
571
  attr_accessor import_options: Types::ImportOptions
571
572
  attr_accessor fail_on_error: bool
572
573
  attr_accessor source: ::String
573
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
574
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
575
+ attr_accessor blank_node_handling: ("convertToIri")
574
576
  attr_accessor graph_identifier: ::String
575
577
  attr_accessor role_arn: ::String
576
578
  SENSITIVE: []
@@ -580,7 +582,7 @@ module Aws::NeptuneGraph
580
582
  attr_accessor graph_id: ::String
581
583
  attr_accessor task_id: ::String
582
584
  attr_accessor source: ::String
583
- attr_accessor format: ("CSV" | "OPEN_CYPHER")
585
+ attr_accessor format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
584
586
  attr_accessor role_arn: ::String
585
587
  attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
586
588
  attr_accessor import_options: Types::ImportOptions
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.14.0
4
+ version: 1.16.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-07-22 00:00:00.000000000 Z
11
+ date: 2024-09-03 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.201.0
22
+ version: 3.203.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.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement