aws-sdk-neptunedata 1.40.0 → 1.41.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptunedata/client.rb +42 -42
- data/lib/aws-sdk-neptunedata/types.rb +45 -45
- data/lib/aws-sdk-neptunedata.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49eaf8d323a83be2c055680545394be0f38dd19a6d98feacb0e2eb612524de28
|
|
4
|
+
data.tar.gz: 1c292e7d60483ec1d4a864d167bf946ceca0d5247fbb65b920d732948cb763bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5368df8d20c1cc47dc122fc34d7b7d586f7b9ce4e1bd74652e566f37072577952fbd7c8f25a3e2b26fba647e13b318533e91fb3d573bb4d9fd88674aecf6236
|
|
7
|
+
data.tar.gz: aadea568d38ece1e6ede54189b737bdf48b192d95b1b370186a6774ce786cb3c1fc67a73a6bdd1b2bac2223b8891eaa32436f4ed3f0ef2aa23f99e2dbc8ac389
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.41.0
|
|
@@ -982,12 +982,12 @@ module Aws::Neptunedata
|
|
|
982
982
|
# @option params [required, String] :action
|
|
983
983
|
# The fast reset action. One of the following values:
|
|
984
984
|
#
|
|
985
|
-
# * <b> <code>initiateDatabaseReset</code> </b>
|
|
986
|
-
#
|
|
985
|
+
# * <b> <code>initiateDatabaseReset</code> </b> - This action generates
|
|
986
|
+
# a unique token needed to actually perform the fast reset.
|
|
987
987
|
#
|
|
988
|
-
# * <b> <code>performDatabaseReset</code> </b>
|
|
989
|
-
#
|
|
990
|
-
#
|
|
988
|
+
# * <b> <code>performDatabaseReset</code> </b> - This action uses the
|
|
989
|
+
# token generated by the `initiateDatabaseReset` action to actually
|
|
990
|
+
# perform the fast reset.
|
|
991
991
|
#
|
|
992
992
|
# @option params [String] :token
|
|
993
993
|
# The fast-reset token to initiate the reset.
|
|
@@ -1931,20 +1931,20 @@ module Aws::Neptunedata
|
|
|
1931
1931
|
# @option params [String] :iterator_type
|
|
1932
1932
|
# Can be one of:
|
|
1933
1933
|
#
|
|
1934
|
-
# * `AT_SEQUENCE_NUMBER`
|
|
1935
|
-
#
|
|
1934
|
+
# * `AT_SEQUENCE_NUMBER` - Indicates that reading should start from the
|
|
1935
|
+
# event sequence number specified jointly by the `commitNum` and
|
|
1936
1936
|
# `opNum` parameters.
|
|
1937
1937
|
#
|
|
1938
|
-
# * `AFTER_SEQUENCE_NUMBER`
|
|
1939
|
-
#
|
|
1940
|
-
#
|
|
1938
|
+
# * `AFTER_SEQUENCE_NUMBER` - Indicates that reading should start right
|
|
1939
|
+
# after the event sequence number specified jointly by the `commitNum`
|
|
1940
|
+
# and `opNum` parameters.
|
|
1941
1941
|
#
|
|
1942
|
-
# * `TRIM_HORIZON`
|
|
1942
|
+
# * `TRIM_HORIZON` - Indicates that reading should start at the last
|
|
1943
1943
|
# untrimmed record in the system, which is the oldest unexpired (not
|
|
1944
1944
|
# yet deleted) record in the change-log stream.
|
|
1945
1945
|
#
|
|
1946
|
-
# * `LATEST`
|
|
1947
|
-
#
|
|
1946
|
+
# * `LATEST` - Indicates that reading should start at the most recent
|
|
1947
|
+
# record in the system, which is the latest unexpired (not yet
|
|
1948
1948
|
# deleted) record in the change-log stream.
|
|
1949
1949
|
#
|
|
1950
1950
|
# @option params [Integer] :commit_num
|
|
@@ -2200,20 +2200,20 @@ module Aws::Neptunedata
|
|
|
2200
2200
|
# @option params [String] :iterator_type
|
|
2201
2201
|
# Can be one of:
|
|
2202
2202
|
#
|
|
2203
|
-
# * `AT_SEQUENCE_NUMBER`
|
|
2204
|
-
#
|
|
2203
|
+
# * `AT_SEQUENCE_NUMBER` - Indicates that reading should start from the
|
|
2204
|
+
# event sequence number specified jointly by the `commitNum` and
|
|
2205
2205
|
# `opNum` parameters.
|
|
2206
2206
|
#
|
|
2207
|
-
# * `AFTER_SEQUENCE_NUMBER`
|
|
2208
|
-
#
|
|
2209
|
-
#
|
|
2207
|
+
# * `AFTER_SEQUENCE_NUMBER` - Indicates that reading should start right
|
|
2208
|
+
# after the event sequence number specified jointly by the `commitNum`
|
|
2209
|
+
# and `opNum` parameters.
|
|
2210
2210
|
#
|
|
2211
|
-
# * `TRIM_HORIZON`
|
|
2211
|
+
# * `TRIM_HORIZON` - Indicates that reading should start at the last
|
|
2212
2212
|
# untrimmed record in the system, which is the oldest unexpired (not
|
|
2213
2213
|
# yet deleted) record in the change-log stream.
|
|
2214
2214
|
#
|
|
2215
|
-
# * `LATEST`
|
|
2216
|
-
#
|
|
2215
|
+
# * `LATEST` - Indicates that reading should start at the most recent
|
|
2216
|
+
# record in the system, which is the latest unexpired (not yet
|
|
2217
2217
|
# deleted) record in the change-log stream.
|
|
2218
2218
|
#
|
|
2219
2219
|
# @option params [Integer] :commit_num
|
|
@@ -2796,8 +2796,8 @@ module Aws::Neptunedata
|
|
|
2796
2796
|
#
|
|
2797
2797
|
# ****
|
|
2798
2798
|
#
|
|
2799
|
-
# * `RESUME`
|
|
2800
|
-
#
|
|
2799
|
+
# * `RESUME` - In RESUME mode, the loader looks for a previous load from
|
|
2800
|
+
# this source, and if it finds one, resumes that load job. If no
|
|
2801
2801
|
# previous load job is found, the loader stops.
|
|
2802
2802
|
#
|
|
2803
2803
|
# The loader avoids reloading files that were successfully loaded in a
|
|
@@ -2807,21 +2807,21 @@ module Aws::Neptunedata
|
|
|
2807
2807
|
# the same source successfully, nothing is reloaded, and the loader
|
|
2808
2808
|
# returns success.
|
|
2809
2809
|
#
|
|
2810
|
-
# * `NEW`
|
|
2811
|
-
#
|
|
2810
|
+
# * `NEW` - In NEW mode, the creates a new load request regardless of
|
|
2811
|
+
# any previous loads. You can use this mode to reload all the data
|
|
2812
2812
|
# from a source after dropping previously loaded data from your
|
|
2813
2813
|
# Neptune cluster, or to load new data available at the same source.
|
|
2814
2814
|
#
|
|
2815
|
-
# * `AUTO`
|
|
2816
|
-
#
|
|
2817
|
-
#
|
|
2815
|
+
# * `AUTO` - In AUTO mode, the loader looks for a previous load job from
|
|
2816
|
+
# the same source, and if it finds one, resumes that job, just as in
|
|
2817
|
+
# `RESUME` mode.
|
|
2818
2818
|
#
|
|
2819
2819
|
# If the loader doesn't find a previous load job from the same
|
|
2820
2820
|
# source, it loads all data from the source, just as in `NEW` mode.
|
|
2821
2821
|
#
|
|
2822
2822
|
# @option params [Boolean] :fail_on_error
|
|
2823
|
-
# <b> <code>failOnError</code> </b>
|
|
2824
|
-
#
|
|
2823
|
+
# <b> <code>failOnError</code> </b> - A flag to toggle a complete stop
|
|
2824
|
+
# on an error.
|
|
2825
2825
|
#
|
|
2826
2826
|
# *Allowed values*: `"TRUE"`, `"FALSE"`.
|
|
2827
2827
|
#
|
|
@@ -2872,23 +2872,23 @@ module Aws::Neptunedata
|
|
|
2872
2872
|
#
|
|
2873
2873
|
# ****
|
|
2874
2874
|
#
|
|
2875
|
-
# * <b> <code>namedGraphUri</code> </b>
|
|
2876
|
-
#
|
|
2877
|
-
#
|
|
2875
|
+
# * <b> <code>namedGraphUri</code> </b> - The default graph for all RDF
|
|
2876
|
+
# formats when no graph is specified (for non-quads formats and NQUAD
|
|
2877
|
+
# entries with no graph).
|
|
2878
2878
|
#
|
|
2879
2879
|
# The default is
|
|
2880
2880
|
# `https://aws.amazon.com/neptune/vocab/v01/DefaultNamedGraph`.
|
|
2881
2881
|
#
|
|
2882
|
-
# * <b> <code>baseUri</code> </b>
|
|
2883
|
-
#
|
|
2882
|
+
# * <b> <code>baseUri</code> </b> - The base URI for RDF/XML and Turtle
|
|
2883
|
+
# formats.
|
|
2884
2884
|
#
|
|
2885
2885
|
# The default is `https://aws.amazon.com/neptune/default`.
|
|
2886
2886
|
#
|
|
2887
|
-
# * <b> <code>allowEmptyStrings</code> </b>
|
|
2888
|
-
#
|
|
2889
|
-
#
|
|
2890
|
-
#
|
|
2891
|
-
#
|
|
2887
|
+
# * <b> <code>allowEmptyStrings</code> </b> - Gremlin users need to be
|
|
2888
|
+
# able to pass empty string values("") as node and edge properties
|
|
2889
|
+
# when loading CSV data. If `allowEmptyStrings` is set to `false` (the
|
|
2890
|
+
# default), such empty strings are treated as nulls and are not
|
|
2891
|
+
# loaded.
|
|
2892
2892
|
#
|
|
2893
2893
|
# If `allowEmptyStrings` is set to `true`, the loader treats empty
|
|
2894
2894
|
# strings as valid property values and loads them accordingly.
|
|
@@ -2983,7 +2983,7 @@ module Aws::Neptunedata
|
|
|
2983
2983
|
# be corrected, and must instead reload all the relationships.
|
|
2984
2984
|
#
|
|
2985
2985
|
# @option params [Boolean] :edge_only_load
|
|
2986
|
-
# <b> <code>edgeOnlyLoad</code> </b>
|
|
2986
|
+
# <b> <code>edgeOnlyLoad</code> </b> - A flag that controls file
|
|
2987
2987
|
# processing order during bulk loading.
|
|
2988
2988
|
#
|
|
2989
2989
|
# *Allowed values*: `"TRUE"`, `"FALSE"`.
|
|
@@ -3443,7 +3443,7 @@ module Aws::Neptunedata
|
|
|
3443
3443
|
tracer: tracer
|
|
3444
3444
|
)
|
|
3445
3445
|
context[:gem_name] = 'aws-sdk-neptunedata'
|
|
3446
|
-
context[:gem_version] = '1.
|
|
3446
|
+
context[:gem_version] = '1.41.0'
|
|
3447
3447
|
Seahorse::Client::Request.new(handlers, context)
|
|
3448
3448
|
end
|
|
3449
3449
|
|
|
@@ -662,13 +662,13 @@ module Aws::Neptunedata
|
|
|
662
662
|
# @!attribute [rw] action
|
|
663
663
|
# The fast reset action. One of the following values:
|
|
664
664
|
#
|
|
665
|
-
# * <b> <code>initiateDatabaseReset</code> </b>
|
|
665
|
+
# * <b> <code>initiateDatabaseReset</code> </b> - This action
|
|
666
666
|
# generates a unique token needed to actually perform the fast
|
|
667
667
|
# reset.
|
|
668
668
|
#
|
|
669
|
-
# * <b> <code>performDatabaseReset</code> </b>
|
|
670
|
-
#
|
|
671
|
-
#
|
|
669
|
+
# * <b> <code>performDatabaseReset</code> </b> - This action uses the
|
|
670
|
+
# token generated by the `initiateDatabaseReset` action to actually
|
|
671
|
+
# perform the fast reset.
|
|
672
672
|
# @return [String]
|
|
673
673
|
#
|
|
674
674
|
# @!attribute [rw] token
|
|
@@ -1437,21 +1437,21 @@ module Aws::Neptunedata
|
|
|
1437
1437
|
# @!attribute [rw] iterator_type
|
|
1438
1438
|
# Can be one of:
|
|
1439
1439
|
#
|
|
1440
|
-
# * `AT_SEQUENCE_NUMBER`
|
|
1441
|
-
#
|
|
1442
|
-
# `
|
|
1440
|
+
# * `AT_SEQUENCE_NUMBER` - Indicates that reading should start from
|
|
1441
|
+
# the event sequence number specified jointly by the `commitNum` and
|
|
1442
|
+
# `opNum` parameters.
|
|
1443
1443
|
#
|
|
1444
|
-
# * `AFTER_SEQUENCE_NUMBER`
|
|
1444
|
+
# * `AFTER_SEQUENCE_NUMBER` - Indicates that reading should start
|
|
1445
1445
|
# right after the event sequence number specified jointly by the
|
|
1446
1446
|
# `commitNum` and `opNum` parameters.
|
|
1447
1447
|
#
|
|
1448
|
-
# * `TRIM_HORIZON`
|
|
1449
|
-
#
|
|
1450
|
-
# (not yet deleted) record in the change-log stream.
|
|
1451
|
-
#
|
|
1452
|
-
# * `LATEST` – Indicates that reading should start at the most
|
|
1453
|
-
# recent record in the system, which is the latest unexpired (not
|
|
1448
|
+
# * `TRIM_HORIZON` - Indicates that reading should start at the last
|
|
1449
|
+
# untrimmed record in the system, which is the oldest unexpired (not
|
|
1454
1450
|
# yet deleted) record in the change-log stream.
|
|
1451
|
+
#
|
|
1452
|
+
# * `LATEST` - Indicates that reading should start at the most recent
|
|
1453
|
+
# record in the system, which is the latest unexpired (not yet
|
|
1454
|
+
# deleted) record in the change-log stream.
|
|
1455
1455
|
# @return [String]
|
|
1456
1456
|
#
|
|
1457
1457
|
# @!attribute [rw] commit_num
|
|
@@ -1625,21 +1625,21 @@ module Aws::Neptunedata
|
|
|
1625
1625
|
# @!attribute [rw] iterator_type
|
|
1626
1626
|
# Can be one of:
|
|
1627
1627
|
#
|
|
1628
|
-
# * `AT_SEQUENCE_NUMBER`
|
|
1629
|
-
#
|
|
1630
|
-
# `
|
|
1628
|
+
# * `AT_SEQUENCE_NUMBER` - Indicates that reading should start from
|
|
1629
|
+
# the event sequence number specified jointly by the `commitNum` and
|
|
1630
|
+
# `opNum` parameters.
|
|
1631
1631
|
#
|
|
1632
|
-
# * `AFTER_SEQUENCE_NUMBER`
|
|
1632
|
+
# * `AFTER_SEQUENCE_NUMBER` - Indicates that reading should start
|
|
1633
1633
|
# right after the event sequence number specified jointly by the
|
|
1634
1634
|
# `commitNum` and `opNum` parameters.
|
|
1635
1635
|
#
|
|
1636
|
-
# * `TRIM_HORIZON`
|
|
1637
|
-
#
|
|
1638
|
-
# (not yet deleted) record in the change-log stream.
|
|
1639
|
-
#
|
|
1640
|
-
# * `LATEST` – Indicates that reading should start at the most
|
|
1641
|
-
# recent record in the system, which is the latest unexpired (not
|
|
1636
|
+
# * `TRIM_HORIZON` - Indicates that reading should start at the last
|
|
1637
|
+
# untrimmed record in the system, which is the oldest unexpired (not
|
|
1642
1638
|
# yet deleted) record in the change-log stream.
|
|
1639
|
+
#
|
|
1640
|
+
# * `LATEST` - Indicates that reading should start at the most recent
|
|
1641
|
+
# record in the system, which is the latest unexpired (not yet
|
|
1642
|
+
# deleted) record in the change-log stream.
|
|
1643
1643
|
# @return [String]
|
|
1644
1644
|
#
|
|
1645
1645
|
# @!attribute [rw] commit_num
|
|
@@ -3116,9 +3116,9 @@ module Aws::Neptunedata
|
|
|
3116
3116
|
#
|
|
3117
3117
|
# ****
|
|
3118
3118
|
#
|
|
3119
|
-
# * `RESUME`
|
|
3120
|
-
#
|
|
3121
|
-
#
|
|
3119
|
+
# * `RESUME` - In RESUME mode, the loader looks for a previous load
|
|
3120
|
+
# from this source, and if it finds one, resumes that load job. If
|
|
3121
|
+
# no previous load job is found, the loader stops.
|
|
3122
3122
|
#
|
|
3123
3123
|
# The loader avoids reloading files that were successfully loaded in
|
|
3124
3124
|
# a previous job. It only tries to process failed files. If you
|
|
@@ -3127,22 +3127,22 @@ module Aws::Neptunedata
|
|
|
3127
3127
|
# all files from the same source successfully, nothing is reloaded,
|
|
3128
3128
|
# and the loader returns success.
|
|
3129
3129
|
#
|
|
3130
|
-
# * `NEW`
|
|
3131
|
-
#
|
|
3132
|
-
#
|
|
3130
|
+
# * `NEW` - In NEW mode, the creates a new load request regardless of
|
|
3131
|
+
# any previous loads. You can use this mode to reload all the data
|
|
3132
|
+
# from a source after dropping previously loaded data from your
|
|
3133
3133
|
# Neptune cluster, or to load new data available at the same source.
|
|
3134
3134
|
#
|
|
3135
|
-
# * `AUTO`
|
|
3136
|
-
#
|
|
3137
|
-
#
|
|
3135
|
+
# * `AUTO` - In AUTO mode, the loader looks for a previous load job
|
|
3136
|
+
# from the same source, and if it finds one, resumes that job, just
|
|
3137
|
+
# as in `RESUME` mode.
|
|
3138
3138
|
#
|
|
3139
3139
|
# If the loader doesn't find a previous load job from the same
|
|
3140
3140
|
# source, it loads all data from the source, just as in `NEW` mode.
|
|
3141
3141
|
# @return [String]
|
|
3142
3142
|
#
|
|
3143
3143
|
# @!attribute [rw] fail_on_error
|
|
3144
|
-
# <b> <code>failOnError</code> </b>
|
|
3145
|
-
#
|
|
3144
|
+
# <b> <code>failOnError</code> </b> - A flag to toggle a complete stop
|
|
3145
|
+
# on an error.
|
|
3146
3146
|
#
|
|
3147
3147
|
# *Allowed values*: `"TRUE"`, `"FALSE"`.
|
|
3148
3148
|
#
|
|
@@ -3196,23 +3196,23 @@ module Aws::Neptunedata
|
|
|
3196
3196
|
#
|
|
3197
3197
|
# ****
|
|
3198
3198
|
#
|
|
3199
|
-
# * <b> <code>namedGraphUri</code> </b>
|
|
3200
|
-
#
|
|
3201
|
-
#
|
|
3199
|
+
# * <b> <code>namedGraphUri</code> </b> - The default graph for all
|
|
3200
|
+
# RDF formats when no graph is specified (for non-quads formats and
|
|
3201
|
+
# NQUAD entries with no graph).
|
|
3202
3202
|
#
|
|
3203
3203
|
# The default is
|
|
3204
3204
|
# `https://aws.amazon.com/neptune/vocab/v01/DefaultNamedGraph`.
|
|
3205
3205
|
#
|
|
3206
|
-
# * <b> <code>baseUri</code> </b>
|
|
3206
|
+
# * <b> <code>baseUri</code> </b> - The base URI for RDF/XML and
|
|
3207
3207
|
# Turtle formats.
|
|
3208
3208
|
#
|
|
3209
3209
|
# The default is `https://aws.amazon.com/neptune/default`.
|
|
3210
3210
|
#
|
|
3211
|
-
# * <b> <code>allowEmptyStrings</code> </b>
|
|
3212
|
-
#
|
|
3213
|
-
#
|
|
3214
|
-
#
|
|
3215
|
-
#
|
|
3211
|
+
# * <b> <code>allowEmptyStrings</code> </b> - Gremlin users need to be
|
|
3212
|
+
# able to pass empty string values("") as node and edge properties
|
|
3213
|
+
# when loading CSV data. If `allowEmptyStrings` is set to `false`
|
|
3214
|
+
# (the default), such empty strings are treated as nulls and are not
|
|
3215
|
+
# loaded.
|
|
3216
3216
|
#
|
|
3217
3217
|
# If `allowEmptyStrings` is set to `true`, the loader treats empty
|
|
3218
3218
|
# strings as valid property values and loads them accordingly.
|
|
@@ -3314,7 +3314,7 @@ module Aws::Neptunedata
|
|
|
3314
3314
|
# @return [Boolean]
|
|
3315
3315
|
#
|
|
3316
3316
|
# @!attribute [rw] edge_only_load
|
|
3317
|
-
# <b> <code>edgeOnlyLoad</code> </b>
|
|
3317
|
+
# <b> <code>edgeOnlyLoad</code> </b> - A flag that controls file
|
|
3318
3318
|
# processing order during bulk loading.
|
|
3319
3319
|
#
|
|
3320
3320
|
# *Allowed values*: `"TRUE"`, `"FALSE"`.
|
data/lib/aws-sdk-neptunedata.rb
CHANGED