aws-sdk-neptunegraph 1.2.0 → 1.4.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 +271 -11
- data/lib/aws-sdk-neptunegraph/client_api.rb +225 -0
- data/lib/aws-sdk-neptunegraph/endpoints.rb +75 -0
- data/lib/aws-sdk-neptunegraph/errors.rb +37 -0
- data/lib/aws-sdk-neptunegraph/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-neptunegraph/types.rb +410 -13
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +64 -0
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +113 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::NeptuneGraph
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
11
16
|
class CancelImportTaskInput
|
12
17
|
attr_accessor task_identifier: ::String
|
13
18
|
SENSITIVE: []
|
@@ -23,6 +28,12 @@ module Aws::NeptuneGraph
|
|
23
28
|
SENSITIVE: []
|
24
29
|
end
|
25
30
|
|
31
|
+
class CancelQueryInput
|
32
|
+
attr_accessor graph_identifier: ::String
|
33
|
+
attr_accessor query_id: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
26
37
|
class ConflictException
|
27
38
|
attr_accessor message: ::String
|
28
39
|
attr_accessor reason: ("CONCURRENT_MODIFICATION")
|
@@ -178,6 +189,28 @@ module Aws::NeptuneGraph
|
|
178
189
|
SENSITIVE: []
|
179
190
|
end
|
180
191
|
|
192
|
+
class EdgeStructure
|
193
|
+
attr_accessor count: ::Integer
|
194
|
+
attr_accessor edge_properties: ::Array[::String]
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class ExecuteQueryInput
|
199
|
+
attr_accessor graph_identifier: ::String
|
200
|
+
attr_accessor query_string: ::String
|
201
|
+
attr_accessor language: ("OPEN_CYPHER")
|
202
|
+
attr_accessor parameters: ::Hash[::String, untyped]
|
203
|
+
attr_accessor plan_cache: ("ENABLED" | "DISABLED" | "AUTO")
|
204
|
+
attr_accessor explain_mode: ("STATIC" | "DETAILS")
|
205
|
+
attr_accessor query_timeout_milliseconds: ::Integer
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class ExecuteQueryOutput
|
210
|
+
attr_accessor payload: ::IO
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
181
214
|
class GetGraphInput
|
182
215
|
attr_accessor graph_identifier: ::String
|
183
216
|
SENSITIVE: []
|
@@ -218,6 +251,19 @@ module Aws::NeptuneGraph
|
|
218
251
|
SENSITIVE: []
|
219
252
|
end
|
220
253
|
|
254
|
+
class GetGraphSummaryInput
|
255
|
+
attr_accessor graph_identifier: ::String
|
256
|
+
attr_accessor mode: ("BASIC" | "DETAILED")
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class GetGraphSummaryOutput
|
261
|
+
attr_accessor version: ::String
|
262
|
+
attr_accessor last_statistics_computation_time: ::Time
|
263
|
+
attr_accessor graph_summary: Types::GraphDataSummary
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
221
267
|
class GetImportTaskInput
|
222
268
|
attr_accessor task_identifier: ::String
|
223
269
|
SENSITIVE: []
|
@@ -251,6 +297,39 @@ module Aws::NeptuneGraph
|
|
251
297
|
SENSITIVE: []
|
252
298
|
end
|
253
299
|
|
300
|
+
class GetQueryInput
|
301
|
+
attr_accessor graph_identifier: ::String
|
302
|
+
attr_accessor query_id: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class GetQueryOutput
|
307
|
+
attr_accessor id: ::String
|
308
|
+
attr_accessor query_string: ::String
|
309
|
+
attr_accessor waited: ::Integer
|
310
|
+
attr_accessor elapsed: ::Integer
|
311
|
+
attr_accessor state: ("RUNNING" | "WAITING" | "CANCELLING")
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class GraphDataSummary
|
316
|
+
attr_accessor num_nodes: ::Integer
|
317
|
+
attr_accessor num_edges: ::Integer
|
318
|
+
attr_accessor num_node_labels: ::Integer
|
319
|
+
attr_accessor num_edge_labels: ::Integer
|
320
|
+
attr_accessor node_labels: ::Array[::String]
|
321
|
+
attr_accessor edge_labels: ::Array[::String]
|
322
|
+
attr_accessor num_node_properties: ::Integer
|
323
|
+
attr_accessor num_edge_properties: ::Integer
|
324
|
+
attr_accessor node_properties: ::Array[::Hash[::String, ::Integer]]
|
325
|
+
attr_accessor edge_properties: ::Array[::Hash[::String, ::Integer]]
|
326
|
+
attr_accessor total_node_property_values: ::Integer
|
327
|
+
attr_accessor total_edge_property_values: ::Integer
|
328
|
+
attr_accessor node_structures: ::Array[Types::NodeStructure]
|
329
|
+
attr_accessor edge_structures: ::Array[Types::EdgeStructure]
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
254
333
|
class GraphSnapshotSummary
|
255
334
|
attr_accessor id: ::String
|
256
335
|
attr_accessor name: ::String
|
@@ -364,6 +443,18 @@ module Aws::NeptuneGraph
|
|
364
443
|
SENSITIVE: []
|
365
444
|
end
|
366
445
|
|
446
|
+
class ListQueriesInput
|
447
|
+
attr_accessor graph_identifier: ::String
|
448
|
+
attr_accessor max_results: ::Integer
|
449
|
+
attr_accessor state: ("ALL" | "RUNNING" | "WAITING" | "CANCELLING")
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class ListQueriesOutput
|
454
|
+
attr_accessor queries: ::Array[Types::QuerySummary]
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
367
458
|
class ListTagsForResourceInput
|
368
459
|
attr_accessor resource_arn: ::String
|
369
460
|
SENSITIVE: []
|
@@ -382,6 +473,13 @@ module Aws::NeptuneGraph
|
|
382
473
|
SENSITIVE: []
|
383
474
|
end
|
384
475
|
|
476
|
+
class NodeStructure
|
477
|
+
attr_accessor count: ::Integer
|
478
|
+
attr_accessor node_properties: ::Array[::String]
|
479
|
+
attr_accessor distinct_outgoing_edge_labels: ::Array[::String]
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
385
483
|
class PrivateGraphEndpointSummary
|
386
484
|
attr_accessor vpc_id: ::String
|
387
485
|
attr_accessor subnet_ids: ::Array[::String]
|
@@ -390,6 +488,15 @@ module Aws::NeptuneGraph
|
|
390
488
|
SENSITIVE: []
|
391
489
|
end
|
392
490
|
|
491
|
+
class QuerySummary
|
492
|
+
attr_accessor id: ::String
|
493
|
+
attr_accessor query_string: ::String
|
494
|
+
attr_accessor waited: ::Integer
|
495
|
+
attr_accessor elapsed: ::Integer
|
496
|
+
attr_accessor state: ("RUNNING" | "WAITING" | "CANCELLING")
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
393
500
|
class ResetGraphInput
|
394
501
|
attr_accessor graph_identifier: ::String
|
395
502
|
attr_accessor skip_snapshot: bool
|
@@ -473,6 +580,12 @@ module Aws::NeptuneGraph
|
|
473
580
|
SENSITIVE: []
|
474
581
|
end
|
475
582
|
|
583
|
+
class UnprocessableException
|
584
|
+
attr_accessor message: ::String
|
585
|
+
attr_accessor reason: ("QUERY_TIMEOUT" | "INTERNAL_LIMIT_EXCEEDED" | "MEMORY_LIMIT_EXCEEDED" | "STORAGE_LIMIT_EXCEEDED" | "PARTITION_FULL")
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
476
589
|
class UntagResourceInput
|
477
590
|
attr_accessor resource_arn: ::String
|
478
591
|
attr_accessor tag_keys: ::Array[::String]
|
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.4.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-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|