aws-sdk-neptunegraph 1.13.0 → 1.15.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 +30 -8
- data/lib/aws-sdk-neptunegraph/client_api.rb +5 -1
- data/lib/aws-sdk-neptunegraph/types.rb +28 -2
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +8 -6
- data/sig/types.rbs +9 -7
- 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: 64e9534cce5872e2482d34046072dddf00de1ea2f5d55634dcdb45288d5a0abf
|
4
|
+
data.tar.gz: d9c6c715301fcc3ccd63efe7551fa46262c72a7c2e22c8bac0ef72b758432b29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f4149bdb7b906027d964f7a571a2573f322beea4e90033fcda03bd1ece6cb36006e536a44251f05528a654592c6c68048e2f00aa8eab9d66bff7714a5221da4
|
7
|
+
data.tar.gz: 8aaf7dfcd97c003170149fb2ebdc78e8d4525db0723d9eab0ca616a7caa4bd9a19debfe1fa081f019b95d0855be4fb29acb9f188c888d6c0be3791275df6b760
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2024-08-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
9
|
+
1.14.0 (2024-07-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon Neptune Analytics provides new options for customers to start with smaller graphs at a lower cost. CreateGraph, CreaateGraphImportTask, UpdateGraph and StartImportTask APIs will now allow 32 and 64 for `provisioned-memory`
|
13
|
+
|
4
14
|
1.13.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -450,7 +450,7 @@ module Aws::NeptuneGraph
|
|
450
450
|
# resp.graph_id #=> String
|
451
451
|
# resp.task_id #=> String
|
452
452
|
# resp.source #=> String
|
453
|
-
# resp.format #=> String, one of "CSV", "OPEN_CYPHER"
|
453
|
+
# resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
|
454
454
|
# resp.role_arn #=> String
|
455
455
|
# resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
|
456
456
|
#
|
@@ -739,6 +739,16 @@ module Aws::NeptuneGraph
|
|
739
739
|
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-gremlin.html
|
740
740
|
# [2]: https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-opencypher.html
|
741
741
|
#
|
742
|
+
# @option params [String] :blank_node_handling
|
743
|
+
# The method to handle blank nodes in the dataset. Currently, only
|
744
|
+
# `convertToIri` is supported, meaning blank nodes are converted to
|
745
|
+
# unique IRIs at load time. Must be provided when format is `ntriples`.
|
746
|
+
# For more information, see [Handling RDF values][1].
|
747
|
+
#
|
748
|
+
#
|
749
|
+
#
|
750
|
+
# [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
|
751
|
+
#
|
742
752
|
# @option params [required, String] :role_arn
|
743
753
|
# The ARN of the IAM role that will allow access to the data that is to
|
744
754
|
# be imported.
|
@@ -779,7 +789,8 @@ module Aws::NeptuneGraph
|
|
779
789
|
# min_provisioned_memory: 1,
|
780
790
|
# fail_on_error: false,
|
781
791
|
# source: "String", # required
|
782
|
-
# format: "CSV", # accepts CSV, OPEN_CYPHER
|
792
|
+
# format: "CSV", # accepts CSV, OPEN_CYPHER, NTRIPLES
|
793
|
+
# blank_node_handling: "convertToIri", # accepts convertToIri
|
783
794
|
# role_arn: "RoleArn", # required
|
784
795
|
# })
|
785
796
|
#
|
@@ -788,7 +799,7 @@ module Aws::NeptuneGraph
|
|
788
799
|
# resp.graph_id #=> String
|
789
800
|
# resp.task_id #=> String
|
790
801
|
# resp.source #=> String
|
791
|
-
# resp.format #=> String, one of "CSV", "OPEN_CYPHER"
|
802
|
+
# resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
|
792
803
|
# resp.role_arn #=> String
|
793
804
|
# resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
|
794
805
|
# resp.import_options.neptune.s3_export_path #=> String
|
@@ -1276,7 +1287,7 @@ module Aws::NeptuneGraph
|
|
1276
1287
|
# resp.graph_id #=> String
|
1277
1288
|
# resp.task_id #=> String
|
1278
1289
|
# resp.source #=> String
|
1279
|
-
# resp.format #=> String, one of "CSV", "OPEN_CYPHER"
|
1290
|
+
# resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
|
1280
1291
|
# resp.role_arn #=> String
|
1281
1292
|
# resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
|
1282
1293
|
# resp.import_options.neptune.s3_export_path #=> String
|
@@ -1551,7 +1562,7 @@ module Aws::NeptuneGraph
|
|
1551
1562
|
# resp.tasks[0].graph_id #=> String
|
1552
1563
|
# resp.tasks[0].task_id #=> String
|
1553
1564
|
# resp.tasks[0].source #=> String
|
1554
|
-
# resp.tasks[0].format #=> String, one of "CSV", "OPEN_CYPHER"
|
1565
|
+
# resp.tasks[0].format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
|
1555
1566
|
# resp.tasks[0].role_arn #=> String
|
1556
1567
|
# resp.tasks[0].status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
|
1557
1568
|
# resp.next_token #=> String
|
@@ -1874,6 +1885,16 @@ module Aws::NeptuneGraph
|
|
1874
1885
|
# are CSV, which identifies the Gremlin CSV format or OPENCYPHER, which
|
1875
1886
|
# identies the openCypher load format.
|
1876
1887
|
#
|
1888
|
+
# @option params [String] :blank_node_handling
|
1889
|
+
# The method to handle blank nodes in the dataset. Currently, only
|
1890
|
+
# `convertToIri` is supported, meaning blank nodes are converted to
|
1891
|
+
# unique IRIs at load time. Must be provided when format is `ntriples`.
|
1892
|
+
# For more information, see [Handling RDF values][1].
|
1893
|
+
#
|
1894
|
+
#
|
1895
|
+
#
|
1896
|
+
# [1]: https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling
|
1897
|
+
#
|
1877
1898
|
# @option params [required, String] :graph_identifier
|
1878
1899
|
# The unique identifier of the Neptune Analytics graph.
|
1879
1900
|
#
|
@@ -1904,7 +1925,8 @@ module Aws::NeptuneGraph
|
|
1904
1925
|
# },
|
1905
1926
|
# fail_on_error: false,
|
1906
1927
|
# source: "String", # required
|
1907
|
-
# format: "CSV", # accepts CSV, OPEN_CYPHER
|
1928
|
+
# format: "CSV", # accepts CSV, OPEN_CYPHER, NTRIPLES
|
1929
|
+
# blank_node_handling: "convertToIri", # accepts convertToIri
|
1908
1930
|
# graph_identifier: "GraphIdentifier", # required
|
1909
1931
|
# role_arn: "RoleArn", # required
|
1910
1932
|
# })
|
@@ -1914,7 +1936,7 @@ module Aws::NeptuneGraph
|
|
1914
1936
|
# resp.graph_id #=> String
|
1915
1937
|
# resp.task_id #=> String
|
1916
1938
|
# resp.source #=> String
|
1917
|
-
# resp.format #=> String, one of "CSV", "OPEN_CYPHER"
|
1939
|
+
# resp.format #=> String, one of "CSV", "OPEN_CYPHER", "NTRIPLES"
|
1918
1940
|
# resp.role_arn #=> String
|
1919
1941
|
# resp.status #=> String, one of "INITIALIZING", "EXPORTING", "ANALYZING_DATA", "IMPORTING", "REPROVISIONING", "ROLLING_BACK", "SUCCEEDED", "FAILED", "CANCELLING", "CANCELLED"
|
1920
1942
|
# resp.import_options.neptune.s3_export_path #=> String
|
@@ -2087,7 +2109,7 @@ module Aws::NeptuneGraph
|
|
2087
2109
|
params: params,
|
2088
2110
|
config: config)
|
2089
2111
|
context[:gem_name] = 'aws-sdk-neptunegraph'
|
2090
|
-
context[:gem_version] = '1.
|
2112
|
+
context[:gem_version] = '1.15.0'
|
2091
2113
|
Seahorse::Client::Request.new(handlers, context)
|
2092
2114
|
end
|
2093
2115
|
|
@@ -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
|
@@ -699,9 +702,10 @@ module Aws::NeptuneGraph
|
|
699
702
|
|
700
703
|
api.metadata = {
|
701
704
|
"apiVersion" => "2023-11-29",
|
705
|
+
"auth" => ["aws.auth#sigv4"],
|
702
706
|
"endpointPrefix" => "neptune-graph",
|
703
|
-
"jsonVersion" => "1.1",
|
704
707
|
"protocol" => "rest-json",
|
708
|
+
"protocols" => ["rest-json"],
|
705
709
|
"serviceAbbreviation" => "Neptune Graph",
|
706
710
|
"serviceFullName" => "Amazon Neptune Graph",
|
707
711
|
"serviceId" => "Neptune Graph",
|
@@ -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]
|
491
|
-
# which
|
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 = []
|
data/lib/aws-sdk-neptunegraph.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -78,7 +78,7 @@ module Aws
|
|
78
78
|
def graph_id: () -> ::String
|
79
79
|
def task_id: () -> ::String
|
80
80
|
def source: () -> ::String
|
81
|
-
def format: () -> ("CSV" | "OPEN_CYPHER")
|
81
|
+
def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
|
82
82
|
def role_arn: () -> ::String
|
83
83
|
def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
84
84
|
end
|
@@ -151,7 +151,7 @@ module Aws
|
|
151
151
|
def graph_id: () -> ::String
|
152
152
|
def task_id: () -> ::String
|
153
153
|
def source: () -> ::String
|
154
|
-
def format: () -> ("CSV" | "OPEN_CYPHER")
|
154
|
+
def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
|
155
155
|
def role_arn: () -> ::String
|
156
156
|
def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
157
157
|
def import_options: () -> Types::ImportOptions
|
@@ -179,7 +179,8 @@ module Aws
|
|
179
179
|
?min_provisioned_memory: ::Integer,
|
180
180
|
?fail_on_error: bool,
|
181
181
|
source: ::String,
|
182
|
-
?format: ("CSV" | "OPEN_CYPHER"),
|
182
|
+
?format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES"),
|
183
|
+
?blank_node_handling: ("convertToIri"),
|
183
184
|
role_arn: ::String
|
184
185
|
) -> _CreateGraphUsingImportTaskResponseSuccess
|
185
186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGraphUsingImportTaskResponseSuccess
|
@@ -330,7 +331,7 @@ module Aws
|
|
330
331
|
def graph_id: () -> ::String
|
331
332
|
def task_id: () -> ::String
|
332
333
|
def source: () -> ::String
|
333
|
-
def format: () -> ("CSV" | "OPEN_CYPHER")
|
334
|
+
def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
|
334
335
|
def role_arn: () -> ::String
|
335
336
|
def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
336
337
|
def import_options: () -> Types::ImportOptions
|
@@ -505,7 +506,7 @@ module Aws
|
|
505
506
|
def graph_id: () -> ::String
|
506
507
|
def task_id: () -> ::String
|
507
508
|
def source: () -> ::String
|
508
|
-
def format: () -> ("CSV" | "OPEN_CYPHER")
|
509
|
+
def format: () -> ("CSV" | "OPEN_CYPHER" | "NTRIPLES")
|
509
510
|
def role_arn: () -> ::String
|
510
511
|
def status: () -> ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
511
512
|
def import_options: () -> Types::ImportOptions
|
@@ -522,7 +523,8 @@ module Aws
|
|
522
523
|
},
|
523
524
|
?fail_on_error: bool,
|
524
525
|
source: ::String,
|
525
|
-
?format: ("CSV" | "OPEN_CYPHER"),
|
526
|
+
?format: ("CSV" | "OPEN_CYPHER" | "NTRIPLES"),
|
527
|
+
?blank_node_handling: ("convertToIri"),
|
526
528
|
graph_identifier: ::String,
|
527
529
|
role_arn: ::String
|
528
530
|
) -> _StartImportTaskResponseSuccess
|
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.
|
4
|
+
version: 1.15.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-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Neptune Graph (Neptune Graph). This
|
48
48
|
gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|