aws-sdk-neptunegraph 1.3.0 → 1.5.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: 68c40b0b208ef29b39a1490b12aea910ce2c1eeae91bd176642e160467e9eac0
4
- data.tar.gz: 17c892aaca6ac33d8babe21aaee2a778c3b4a08fdbed5a302f9e16ae1965cd10
3
+ metadata.gz: c173103569b1b83024481a73ef00a13ed912424ce979389e16cc124f45c49ef7
4
+ data.tar.gz: 66ad2ae39150d15cf31a9e13ac51e32195f62d3cab993f46ee229d7d3c1b06e4
5
5
  SHA512:
6
- metadata.gz: 758c9f0522ecc11d875b17e89f457a054d021d35eabe387ef2cec8d9df2024246170fa8062a18284ba6b39128b056a958c6f3065781198ef4acfb3ffb104c305
7
- data.tar.gz: 6656d1a65eb40841e70ee94cd46ebf570ae44579d6f69006a18481f0b319bd9b65db6c4d6e2e5954f9103336715465b309699cb13e9dedb85b335652440f0c50
6
+ metadata.gz: cd943c9a098a39d6dbcaea2ef799a67295bae528da8a93dd174826585112ec69d698b1fa478de35694d6f1272dd7e8f188d8a41f482492f548051dd567778a07
7
+ data.tar.gz: 70579bf61632a03448b8c9a1ac085fa27dc62638896fdcc7f1fc9c8fd555fd02f7db17a1577ba565f5ba6b15c5b4e0c84fb1b4d832a88b26865447de737af7e7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2024-03-28)
5
+ ------------------
6
+
7
+ * Feature - Update ImportTaskCancelled waiter to evaluate task state correctly and minor documentation changes.
8
+
9
+ 1.4.0 (2024-02-12)
10
+ ------------------
11
+
12
+ * Feature - Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK.
13
+
4
14
  1.3.0 (2024-02-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.5.0
@@ -468,8 +468,8 @@ module Aws::NeptuneGraph
468
468
  #
469
469
  # @option params [Boolean] :public_connectivity
470
470
  # Specifies whether or not the graph can be reachable over the internet.
471
- # All access to graphs IAM authenticated. (`true` to enable, or `false`
472
- # to disable.
471
+ # All access to graphs is IAM authenticated. (`true` to enable, or
472
+ # `false` to disable.
473
473
  #
474
474
  # @option params [String] :kms_key_identifier
475
475
  # Specifies a KMS key to use to encrypt data in the new graph.
@@ -531,7 +531,7 @@ module Aws::NeptuneGraph
531
531
  # resp.id #=> String
532
532
  # resp.name #=> String
533
533
  # resp.arn #=> String
534
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
534
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
535
535
  # resp.status_reason #=> String
536
536
  # resp.create_time #=> Time
537
537
  # resp.provisioned_memory #=> Integer
@@ -635,8 +635,8 @@ module Aws::NeptuneGraph
635
635
  #
636
636
  # @option params [Boolean] :public_connectivity
637
637
  # Specifies whether or not the graph can be reachable over the internet.
638
- # All access to graphs IAM authenticated. (`true` to enable, or `false`
639
- # to disable).
638
+ # All access to graphs is IAM authenticated. (`true` to enable, or
639
+ # `false` to disable).
640
640
  #
641
641
  # @option params [String] :kms_key_identifier
642
642
  # Specifies a KMS key to use to encrypt data imported into the new
@@ -764,7 +764,11 @@ module Aws::NeptuneGraph
764
764
 
765
765
  # Create a private graph endpoint to allow private access from to the
766
766
  # graph from within a VPC. You can attach security groups to the private
767
- # graph endpoint. VPC endpoint charges apply.
767
+ # graph endpoint.
768
+ #
769
+ # <note markdown="1"> VPC endpoint charges apply.
770
+ #
771
+ # </note>
768
772
  #
769
773
  # @option params [required, String] :graph_identifier
770
774
  # The unique identifier of the Neptune Analytics graph.
@@ -853,7 +857,7 @@ module Aws::NeptuneGraph
853
857
  # resp.id #=> String
854
858
  # resp.name #=> String
855
859
  # resp.arn #=> String
856
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
860
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
857
861
  # resp.status_reason #=> String
858
862
  # resp.create_time #=> Time
859
863
  # resp.provisioned_memory #=> Integer
@@ -954,16 +958,18 @@ module Aws::NeptuneGraph
954
958
  req.send_request(options)
955
959
  end
956
960
 
957
- # Execute an openCypher query. Currently, the SDK does not support
958
- # parameterized queries. If you want to make a parameterized query call,
959
- # you can use an HTTP request.
961
+ # Execute an openCypher query.
960
962
  #
961
- # <note markdown="1"> Non-parametrized queries are not considered for plan caching. You can
962
- # force plan caching with `planCache=enabled`. The plan cache will be
963
- # reused only for the same exact query. Slight variations in the query
964
- # will not be able to reuse the query plan cache.
963
+ # When invoking this operation in a Neptune Analytics cluster, the IAM
964
+ # user or role making the request must have a policy attached that
965
+ # allows one of the following IAM actions in that cluster, depending on
966
+ # the query:
965
967
  #
966
- # </note>
968
+ # * neptune-graph:ReadDataViaQuery
969
+ #
970
+ # * neptune-graph:WriteDataViaQuery
971
+ #
972
+ # * neptune-graph:DeleteDataViaQuery
967
973
  #
968
974
  # @option params [required, String] :graph_identifier
969
975
  # The unique identifier of the Neptune Analytics graph.
@@ -975,6 +981,10 @@ module Aws::NeptuneGraph
975
981
  # The query language the query is written in. Currently only openCypher
976
982
  # is supported.
977
983
  #
984
+ # @option params [Hash<String,Hash,Array,String,Numeric,Boolean>] :parameters
985
+ # The data parameters the query can use in JSON format. For example:
986
+ # \\\{"name": "john", "age": 20\\}. (optional)
987
+ #
978
988
  # @option params [String] :plan_cache
979
989
  # Query plan cache is a feature that saves the query plan and reuses it
980
990
  # on successive executions of the same query. This reduces query
@@ -1000,6 +1010,10 @@ module Aws::NeptuneGraph
1000
1010
  # graph_identifier: "GraphIdentifier", # required
1001
1011
  # query_string: "String", # required
1002
1012
  # language: "OPEN_CYPHER", # required, accepts OPEN_CYPHER
1013
+ # parameters: {
1014
+ # "String" => {
1015
+ # },
1016
+ # },
1003
1017
  # plan_cache: "ENABLED", # accepts ENABLED, DISABLED, AUTO
1004
1018
  # explain_mode: "STATIC", # accepts STATIC, DETAILS
1005
1019
  # query_timeout_milliseconds: 1,
@@ -1052,7 +1066,7 @@ module Aws::NeptuneGraph
1052
1066
  # resp.id #=> String
1053
1067
  # resp.name #=> String
1054
1068
  # resp.arn #=> String
1055
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
1069
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
1056
1070
  # resp.status_reason #=> String
1057
1071
  # resp.create_time #=> Time
1058
1072
  # resp.provisioned_memory #=> Integer
@@ -1299,6 +1313,12 @@ module Aws::NeptuneGraph
1299
1313
 
1300
1314
  # Retrieves the status of a specified query.
1301
1315
  #
1316
+ # <note markdown="1"> When invoking this operation in a Neptune Analytics cluster, the IAM
1317
+ # user or role making the request must have the
1318
+ # `neptune-graph:GetQueryStatus` IAM action attached.
1319
+ #
1320
+ # </note>
1321
+ #
1302
1322
  # @option params [required, String] :graph_identifier
1303
1323
  # The unique identifier of the Neptune Analytics graph.
1304
1324
  #
@@ -1432,7 +1452,7 @@ module Aws::NeptuneGraph
1432
1452
  # resp.graphs[0].id #=> String
1433
1453
  # resp.graphs[0].name #=> String
1434
1454
  # resp.graphs[0].arn #=> String
1435
- # resp.graphs[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
1455
+ # resp.graphs[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
1436
1456
  # resp.graphs[0].provisioned_memory #=> Integer
1437
1457
  # resp.graphs[0].public_connectivity #=> Boolean
1438
1458
  # resp.graphs[0].endpoint #=> String
@@ -1668,7 +1688,7 @@ module Aws::NeptuneGraph
1668
1688
  # resp.id #=> String
1669
1689
  # resp.name #=> String
1670
1690
  # resp.arn #=> String
1671
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
1691
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
1672
1692
  # resp.status_reason #=> String
1673
1693
  # resp.create_time #=> Time
1674
1694
  # resp.provisioned_memory #=> Integer
@@ -1705,7 +1725,9 @@ module Aws::NeptuneGraph
1705
1725
  #
1706
1726
  # @option params [Integer] :provisioned_memory
1707
1727
  # The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to
1708
- # use for the graph. Min = 128
1728
+ # use for the graph.
1729
+ #
1730
+ # Min = 128
1709
1731
  #
1710
1732
  # @option params [Boolean] :deletion_protection
1711
1733
  # A value that indicates whether the graph has deletion protection
@@ -1722,8 +1744,8 @@ module Aws::NeptuneGraph
1722
1744
  #
1723
1745
  # @option params [Boolean] :public_connectivity
1724
1746
  # Specifies whether or not the graph can be reachable over the internet.
1725
- # All access to graphs IAM authenticated. (`true` to enable, or `false`
1726
- # to disable).
1747
+ # All access to graphs is IAM authenticated. (`true` to enable, or
1748
+ # `false` to disable).
1727
1749
  #
1728
1750
  # @return [Types::RestoreGraphFromSnapshotOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1729
1751
  #
@@ -1762,7 +1784,7 @@ module Aws::NeptuneGraph
1762
1784
  # resp.id #=> String
1763
1785
  # resp.name #=> String
1764
1786
  # resp.arn #=> String
1765
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
1787
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
1766
1788
  # resp.status_reason #=> String
1767
1789
  # resp.create_time #=> Time
1768
1790
  # resp.provisioned_memory #=> Integer
@@ -1859,12 +1881,14 @@ module Aws::NeptuneGraph
1859
1881
  #
1860
1882
  # @option params [Boolean] :public_connectivity
1861
1883
  # Specifies whether or not the graph can be reachable over the internet.
1862
- # All access to graphs IAM authenticated. (`true` to enable, or `false`
1863
- # to disable.
1884
+ # All access to graphs is IAM authenticated. (`true` to enable, or
1885
+ # `false` to disable.
1864
1886
  #
1865
1887
  # @option params [Integer] :provisioned_memory
1866
1888
  # The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to
1867
- # use for the graph. Min = 128
1889
+ # use for the graph.
1890
+ #
1891
+ # Min = 128
1868
1892
  #
1869
1893
  # @option params [Boolean] :deletion_protection
1870
1894
  # A value that indicates whether the graph has deletion protection
@@ -1903,7 +1927,7 @@ module Aws::NeptuneGraph
1903
1927
  # resp.id #=> String
1904
1928
  # resp.name #=> String
1905
1929
  # resp.arn #=> String
1906
- # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED"
1930
+ # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
1907
1931
  # resp.status_reason #=> String
1908
1932
  # resp.create_time #=> Time
1909
1933
  # resp.provisioned_memory #=> Integer
@@ -1938,7 +1962,7 @@ module Aws::NeptuneGraph
1938
1962
  params: params,
1939
1963
  config: config)
1940
1964
  context[:gem_name] = 'aws-sdk-neptunegraph'
1941
- context[:gem_version] = '1.3.0'
1965
+ context[:gem_version] = '1.5.0'
1942
1966
  Seahorse::Client::Request.new(handlers, context)
1943
1967
  end
1944
1968
 
@@ -35,6 +35,8 @@ module Aws::NeptuneGraph
35
35
  DeleteGraphSnapshotOutput = Shapes::StructureShape.new(name: 'DeleteGraphSnapshotOutput')
36
36
  DeletePrivateGraphEndpointInput = Shapes::StructureShape.new(name: 'DeletePrivateGraphEndpointInput')
37
37
  DeletePrivateGraphEndpointOutput = Shapes::StructureShape.new(name: 'DeletePrivateGraphEndpointOutput')
38
+ Document = Shapes::DocumentShape.new(name: 'Document', document: true)
39
+ DocumentValuedMap = Shapes::MapShape.new(name: 'DocumentValuedMap')
38
40
  EdgeLabels = Shapes::ListShape.new(name: 'EdgeLabels')
39
41
  EdgeProperties = Shapes::ListShape.new(name: 'EdgeProperties')
40
42
  EdgeStructure = Shapes::StructureShape.new(name: 'EdgeStructure')
@@ -292,6 +294,9 @@ module Aws::NeptuneGraph
292
294
  DeletePrivateGraphEndpointOutput.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
293
295
  DeletePrivateGraphEndpointOutput.struct_class = Types::DeletePrivateGraphEndpointOutput
294
296
 
297
+ DocumentValuedMap.key = Shapes::ShapeRef.new(shape: String)
298
+ DocumentValuedMap.value = Shapes::ShapeRef.new(shape: Document)
299
+
295
300
  EdgeLabels.member = Shapes::ShapeRef.new(shape: String)
296
301
 
297
302
  EdgeProperties.member = Shapes::ShapeRef.new(shape: String)
@@ -305,6 +310,7 @@ module Aws::NeptuneGraph
305
310
  ExecuteQueryInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "header", location_name: "graphIdentifier", metadata: {"hostLabel"=>true, "hostLabelName"=>"graphIdentifier"}))
306
311
  ExecuteQueryInput.add_member(:query_string, Shapes::ShapeRef.new(shape: String, required: true, location_name: "query"))
307
312
  ExecuteQueryInput.add_member(:language, Shapes::ShapeRef.new(shape: QueryLanguage, required: true, location_name: "language"))
313
+ ExecuteQueryInput.add_member(:parameters, Shapes::ShapeRef.new(shape: DocumentValuedMap, location_name: "parameters"))
308
314
  ExecuteQueryInput.add_member(:plan_cache, Shapes::ShapeRef.new(shape: PlanCacheType, location_name: "planCache"))
309
315
  ExecuteQueryInput.add_member(:explain_mode, Shapes::ShapeRef.new(shape: ExplainMode, location_name: "explain"))
310
316
  ExecuteQueryInput.add_member(:query_timeout_milliseconds, Shapes::ShapeRef.new(shape: Integer, location_name: "queryTimeoutMilliseconds"))
@@ -136,8 +136,8 @@ module Aws::NeptuneGraph
136
136
  #
137
137
  # @!attribute [rw] public_connectivity
138
138
  # Specifies whether or not the graph can be reachable over the
139
- # internet. All access to graphs IAM authenticated. (`true` to enable,
140
- # or `false` to disable.
139
+ # internet. All access to graphs is IAM authenticated. (`true` to
140
+ # enable, or `false` to disable.
141
141
  # @return [Boolean]
142
142
  #
143
143
  # @!attribute [rw] kms_key_identifier
@@ -210,7 +210,9 @@ module Aws::NeptuneGraph
210
210
  #
211
211
  # @!attribute [rw] provisioned_memory
212
212
  # The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to
213
- # use for the graph. Min = 128
213
+ # use for the graph.
214
+ #
215
+ # Min = 128
214
216
  # @return [Integer]
215
217
  #
216
218
  # @!attribute [rw] endpoint
@@ -219,7 +221,12 @@ module Aws::NeptuneGraph
219
221
  #
220
222
  # @!attribute [rw] public_connectivity
221
223
  # Specifies whether or not the graph can be reachable over the
222
- # internet. All access to graphs IAM authenticated.
224
+ # internet. All access to graphs is IAM authenticated.
225
+ #
226
+ # <note markdown="1"> If enabling public connectivity for the first time, there will be a
227
+ # delay while it is enabled.
228
+ #
229
+ # </note>
223
230
  # @return [Boolean]
224
231
  #
225
232
  # @!attribute [rw] vector_search_configuration
@@ -229,6 +236,8 @@ module Aws::NeptuneGraph
229
236
  #
230
237
  # @!attribute [rw] replica_count
231
238
  # The number of replicas in other AZs.
239
+ #
240
+ # Default: If not specified, the default value is 1.
232
241
  # @return [Integer]
233
242
  #
234
243
  # @!attribute [rw] kms_key_identifier
@@ -358,8 +367,8 @@ module Aws::NeptuneGraph
358
367
  #
359
368
  # @!attribute [rw] public_connectivity
360
369
  # Specifies whether or not the graph can be reachable over the
361
- # internet. All access to graphs IAM authenticated. (`true` to enable,
362
- # or `false` to disable).
370
+ # internet. All access to graphs is IAM authenticated. (`true` to
371
+ # enable, or `false` to disable).
363
372
  # @return [Boolean]
364
373
  #
365
374
  # @!attribute [rw] kms_key_identifier
@@ -806,6 +815,11 @@ module Aws::NeptuneGraph
806
815
  # openCypher is supported.
807
816
  # @return [String]
808
817
  #
818
+ # @!attribute [rw] parameters
819
+ # The data parameters the query can use in JSON format. For example:
820
+ # \\\{"name": "john", "age": 20\\}. (optional)
821
+ # @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
822
+ #
809
823
  # @!attribute [rw] plan_cache
810
824
  # Query plan cache is a feature that saves the query plan and reuses
811
825
  # it on successive executions of the same query. This reduces query
@@ -830,6 +844,7 @@ module Aws::NeptuneGraph
830
844
  :graph_identifier,
831
845
  :query_string,
832
846
  :language,
847
+ :parameters,
833
848
  :plan_cache,
834
849
  :explain_mode,
835
850
  :query_timeout_milliseconds)
@@ -2111,7 +2126,9 @@ module Aws::NeptuneGraph
2111
2126
  #
2112
2127
  # @!attribute [rw] provisioned_memory
2113
2128
  # The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to
2114
- # use for the graph. Min = 128
2129
+ # use for the graph.
2130
+ #
2131
+ # Min = 128
2115
2132
  # @return [Integer]
2116
2133
  #
2117
2134
  # @!attribute [rw] deletion_protection
@@ -2132,8 +2149,8 @@ module Aws::NeptuneGraph
2132
2149
  #
2133
2150
  # @!attribute [rw] public_connectivity
2134
2151
  # Specifies whether or not the graph can be reachable over the
2135
- # internet. All access to graphs IAM authenticated. (`true` to enable,
2136
- # or `false` to disable).
2152
+ # internet. All access to graphs is IAM authenticated. (`true` to
2153
+ # enable, or `false` to disable).
2137
2154
  # @return [Boolean]
2138
2155
  #
2139
2156
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/RestoreGraphFromSnapshotInput AWS API Documentation
@@ -2362,13 +2379,15 @@ module Aws::NeptuneGraph
2362
2379
  #
2363
2380
  # @!attribute [rw] public_connectivity
2364
2381
  # Specifies whether or not the graph can be reachable over the
2365
- # internet. All access to graphs IAM authenticated. (`true` to enable,
2366
- # or `false` to disable.
2382
+ # internet. All access to graphs is IAM authenticated. (`true` to
2383
+ # enable, or `false` to disable.
2367
2384
  # @return [Boolean]
2368
2385
  #
2369
2386
  # @!attribute [rw] provisioned_memory
2370
2387
  # The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to
2371
- # use for the graph. Min = 128
2388
+ # use for the graph.
2389
+ #
2390
+ # Min = 128
2372
2391
  # @return [Integer]
2373
2392
  #
2374
2393
  # @!attribute [rw] deletion_protection
@@ -289,7 +289,7 @@ module Aws::NeptuneGraph
289
289
  acceptors: [
290
290
  {
291
291
  "matcher" => "path",
292
- "argument" => "status != 'CANCELLING'",
292
+ "argument" => "status != 'CANCELLING' && status != 'CANCELLED'",
293
293
  "state" => "failure",
294
294
  "expected" => true
295
295
  },
@@ -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.3.0'
56
+ GEM_VERSION = '1.5.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -99,7 +99,7 @@ module Aws
99
99
  def id: () -> ::String
100
100
  def name: () -> ::String
101
101
  def arn: () -> ::String
102
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
102
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
103
103
  def status_reason: () -> ::String
104
104
  def create_time: () -> ::Time
105
105
  def provisioned_memory: () -> ::Integer
@@ -204,7 +204,7 @@ module Aws
204
204
  def id: () -> ::String
205
205
  def name: () -> ::String
206
206
  def arn: () -> ::String
207
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
207
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
208
208
  def status_reason: () -> ::String
209
209
  def create_time: () -> ::Time
210
210
  def provisioned_memory: () -> ::Integer
@@ -263,6 +263,8 @@ module Aws
263
263
  graph_identifier: ::String,
264
264
  query_string: ::String,
265
265
  language: ("OPEN_CYPHER"),
266
+ ?parameters: Hash[::String, {
267
+ }],
266
268
  ?plan_cache: ("ENABLED" | "DISABLED" | "AUTO"),
267
269
  ?explain_mode: ("STATIC" | "DETAILS"),
268
270
  ?query_timeout_milliseconds: ::Integer
@@ -274,7 +276,7 @@ module Aws
274
276
  def id: () -> ::String
275
277
  def name: () -> ::String
276
278
  def arn: () -> ::String
277
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
279
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
278
280
  def status_reason: () -> ::String
279
281
  def create_time: () -> ::Time
280
282
  def provisioned_memory: () -> ::Integer
@@ -447,7 +449,7 @@ module Aws
447
449
  def id: () -> ::String
448
450
  def name: () -> ::String
449
451
  def arn: () -> ::String
450
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
452
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
451
453
  def status_reason: () -> ::String
452
454
  def create_time: () -> ::Time
453
455
  def provisioned_memory: () -> ::Integer
@@ -472,7 +474,7 @@ module Aws
472
474
  def id: () -> ::String
473
475
  def name: () -> ::String
474
476
  def arn: () -> ::String
475
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
477
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
476
478
  def status_reason: () -> ::String
477
479
  def create_time: () -> ::Time
478
480
  def provisioned_memory: () -> ::Integer
@@ -522,7 +524,7 @@ module Aws
522
524
  def id: () -> ::String
523
525
  def name: () -> ::String
524
526
  def arn: () -> ::String
525
- def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
527
+ def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
526
528
  def status_reason: () -> ::String
527
529
  def create_time: () -> ::Time
528
530
  def provisioned_memory: () -> ::Integer
data/sig/types.rbs CHANGED
@@ -56,7 +56,7 @@ module Aws::NeptuneGraph
56
56
  attr_accessor id: ::String
57
57
  attr_accessor name: ::String
58
58
  attr_accessor arn: ::String
59
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
59
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
60
60
  attr_accessor status_reason: ::String
61
61
  attr_accessor create_time: ::Time
62
62
  attr_accessor provisioned_memory: ::Integer
@@ -144,7 +144,7 @@ module Aws::NeptuneGraph
144
144
  attr_accessor id: ::String
145
145
  attr_accessor name: ::String
146
146
  attr_accessor arn: ::String
147
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
147
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
148
148
  attr_accessor status_reason: ::String
149
149
  attr_accessor create_time: ::Time
150
150
  attr_accessor provisioned_memory: ::Integer
@@ -199,6 +199,7 @@ module Aws::NeptuneGraph
199
199
  attr_accessor graph_identifier: ::String
200
200
  attr_accessor query_string: ::String
201
201
  attr_accessor language: ("OPEN_CYPHER")
202
+ attr_accessor parameters: ::Hash[::String, untyped]
202
203
  attr_accessor plan_cache: ("ENABLED" | "DISABLED" | "AUTO")
203
204
  attr_accessor explain_mode: ("STATIC" | "DETAILS")
204
205
  attr_accessor query_timeout_milliseconds: ::Integer
@@ -219,7 +220,7 @@ module Aws::NeptuneGraph
219
220
  attr_accessor id: ::String
220
221
  attr_accessor name: ::String
221
222
  attr_accessor arn: ::String
222
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
223
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
223
224
  attr_accessor status_reason: ::String
224
225
  attr_accessor create_time: ::Time
225
226
  attr_accessor provisioned_memory: ::Integer
@@ -344,7 +345,7 @@ module Aws::NeptuneGraph
344
345
  attr_accessor id: ::String
345
346
  attr_accessor name: ::String
346
347
  attr_accessor arn: ::String
347
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
348
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
348
349
  attr_accessor provisioned_memory: ::Integer
349
350
  attr_accessor public_connectivity: bool
350
351
  attr_accessor endpoint: ::String
@@ -506,7 +507,7 @@ module Aws::NeptuneGraph
506
507
  attr_accessor id: ::String
507
508
  attr_accessor name: ::String
508
509
  attr_accessor arn: ::String
509
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
510
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
510
511
  attr_accessor status_reason: ::String
511
512
  attr_accessor create_time: ::Time
512
513
  attr_accessor provisioned_memory: ::Integer
@@ -541,7 +542,7 @@ module Aws::NeptuneGraph
541
542
  attr_accessor id: ::String
542
543
  attr_accessor name: ::String
543
544
  attr_accessor arn: ::String
544
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
545
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
545
546
  attr_accessor status_reason: ::String
546
547
  attr_accessor create_time: ::Time
547
548
  attr_accessor provisioned_memory: ::Integer
@@ -606,7 +607,7 @@ module Aws::NeptuneGraph
606
607
  attr_accessor id: ::String
607
608
  attr_accessor name: ::String
608
609
  attr_accessor arn: ::String
609
- attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
610
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
610
611
  attr_accessor status_reason: ::String
611
612
  attr_accessor create_time: ::Time
612
613
  attr_accessor provisioned_memory: ::Integer
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.3.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: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core