aws-sdk-neptunedata 1.4.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71f98fb6c9100b795cee57ef8ea9f18ce6ee3d76abfb9dabbb605b954642588d
4
- data.tar.gz: adb55f0246e90296ad37809cbdab7adc889b390ceaba561c4cd55ef183787dc8
3
+ metadata.gz: 004eaa03e4cb6c2a207a0fc6c180f0bc009657731e725eb6fd4fa0de74ed7223
4
+ data.tar.gz: 8bd8c7c97a0889b0568195bd545c089a0e0017165a43f3ab9a1fd493e4152d54
5
5
  SHA512:
6
- metadata.gz: 6a70a2f231c527dd45fa7a78f157c3b373af68c2477257a886f0b8e3e004fd92ca8e9a84acde5463df2b484f2f661ef1d52d7ae2f5501e31ffc95b8f97ae37ca
7
- data.tar.gz: 2540809b64a56dbd5f304d3361733590d456d0bae710fc4cf46e0da13163031a4197aaf11e3f8424eeb72f7d1f88ad99e606e788f9500258f1a349ebc5ba65c5
6
+ metadata.gz: 36de6db2993df3292b3cf29dd00d63d33894a0e9442972e3454bc4076a8992165f9b103f207b62539990641adfa62bca090e23456a1eaaa4dd444ec395110a3e
7
+ data.tar.gz: cf048c69c94a4d355b68f499da17168d2d7552f811375a33f7c45a8e742877946a5ddc105d8bb8fb80107369aa7904dc05d6c6271ae8b2a3480ba50222f10c8e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2023-10-31)
5
+ ------------------
6
+
7
+ * Feature - Minor change to not retry CancelledByUserException
8
+
4
9
  1.4.0 (2023-10-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -1159,7 +1159,7 @@ module Aws::Neptunedata
1159
1159
  # have a policy attached that allows the
1160
1160
  # [neptune-db:ReadDataViaQuery][2] IAM action in that cluster.
1161
1161
  #
1162
- # Note that the [neptune-db:QueryLanguage:Opencypher][3] IAM condition
1162
+ # Note that the [neptune-db:QueryLanguage:OpenCypher][3] IAM condition
1163
1163
  # key can be used in the policy document to restrict the use of
1164
1164
  # openCypher queries (see [Condition keys available in Neptune IAM
1165
1165
  # data-access policy statements][4]).
@@ -1230,7 +1230,7 @@ module Aws::Neptunedata
1230
1230
  #
1231
1231
  # * [neptune-db:DeleteDataViaQuery][5]
1232
1232
  #
1233
- # Note also that the [neptune-db:QueryLanguage:Opencypher][6] IAM
1233
+ # Note also that the [neptune-db:QueryLanguage:OpenCypher][6] IAM
1234
1234
  # condition key can be used in the policy document to restrict the use
1235
1235
  # of openCypher queries (see [Condition keys available in Neptune IAM
1236
1236
  # data-access policy statements][7]).
@@ -1709,7 +1709,7 @@ module Aws::Neptunedata
1709
1709
  # have a policy attached that allows the [neptune-db:GetQueryStatus][1]
1710
1710
  # IAM action in that cluster.
1711
1711
  #
1712
- # Note that the [neptune-db:QueryLanguage:Opencypher][2] IAM condition
1712
+ # Note that the [neptune-db:QueryLanguage:OpenCypher][2] IAM condition
1713
1713
  # key can be used in the policy document to restrict the use of
1714
1714
  # openCypher queries (see [Condition keys available in Neptune IAM
1715
1715
  # data-access policy statements][3]).
@@ -1818,7 +1818,7 @@ module Aws::Neptunedata
1818
1818
  #
1819
1819
  # * [neptune-db:QueryLanguage:Gremlin][4]
1820
1820
  #
1821
- # * [neptune-db:QueryLanguage:Opencypher][4]
1821
+ # * [neptune-db:QueryLanguage:OpenCypher][4]
1822
1822
  #
1823
1823
  # See [Condition keys available in Neptune IAM data-access policy
1824
1824
  # statements][5]).
@@ -2483,7 +2483,7 @@ module Aws::Neptunedata
2483
2483
  # have a policy attached that allows the [neptune-db:GetQueryStatus][2]
2484
2484
  # IAM action in that cluster.
2485
2485
  #
2486
- # Note that the [neptune-db:QueryLanguage:Opencypher][3] IAM condition
2486
+ # Note that the [neptune-db:QueryLanguage:OpenCypher][3] IAM condition
2487
2487
  # key can be used in the policy document to restrict the use of
2488
2488
  # openCypher queries (see [Condition keys available in Neptune IAM
2489
2489
  # data-access policy statements][4]).
@@ -2834,7 +2834,8 @@ module Aws::Neptunedata
2834
2834
  # You don't have to wait for one load job to complete before issuing
2835
2835
  # the next one, because Neptune can queue up as many as 64 jobs at a
2836
2836
  # time, provided that their `queueRequest` parameters are all set to
2837
- # `"TRUE"`.
2837
+ # `"TRUE"`. The queue order of the jobs will be first-in-first-out
2838
+ # (FIFO).
2838
2839
  #
2839
2840
  # If the `queueRequest` parameter is omitted or set to `"FALSE"`, the
2840
2841
  # load request will fail if another load job is already running.
@@ -3333,7 +3334,7 @@ module Aws::Neptunedata
3333
3334
  params: params,
3334
3335
  config: config)
3335
3336
  context[:gem_name] = 'aws-sdk-neptunedata'
3336
- context[:gem_version] = '1.4.0'
3337
+ context[:gem_version] = '1.5.0'
3337
3338
  Seahorse::Client::Request.new(handlers, context)
3338
3339
  end
3339
3340
 
@@ -170,10 +170,6 @@ module Aws::Neptunedata
170
170
  def code
171
171
  @code || @data[:code]
172
172
  end
173
-
174
- def retryable?
175
- true
176
- end
177
173
  end
178
174
 
179
175
  class ClientTimeoutException < ServiceError
@@ -3248,7 +3248,8 @@ module Aws::Neptunedata
3248
3248
  # You don't have to wait for one load job to complete before issuing
3249
3249
  # the next one, because Neptune can queue up as many as 64 jobs at a
3250
3250
  # time, provided that their `queueRequest` parameters are all set to
3251
- # `"TRUE"`.
3251
+ # `"TRUE"`. The queue order of the jobs will be first-in-first-out
3252
+ # (FIFO).
3252
3253
  #
3253
3254
  # If the `queueRequest` parameter is omitted or set to `"FALSE"`, the
3254
3255
  # load request will fail if another load job is already running.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-neptunedata/customizations'
52
52
  # @!group service
53
53
  module Aws::Neptunedata
54
54
 
55
- GEM_VERSION = '1.4.0'
55
+ GEM_VERSION = '1.5.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptunedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.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: 2023-10-19 00:00:00.000000000 Z
11
+ date: 2023-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core