aws-sdk-neptunegraph 1.2.0 → 1.3.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-neptunegraph/client.rb +239 -4
- data/lib/aws-sdk-neptunegraph/client_api.rb +219 -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 +396 -5
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +62 -0
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +112 -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,27 @@ 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 plan_cache: ("ENABLED" | "DISABLED" | "AUTO")
|
203
|
+
attr_accessor explain_mode: ("STATIC" | "DETAILS")
|
204
|
+
attr_accessor query_timeout_milliseconds: ::Integer
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class ExecuteQueryOutput
|
209
|
+
attr_accessor payload: ::IO
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
181
213
|
class GetGraphInput
|
182
214
|
attr_accessor graph_identifier: ::String
|
183
215
|
SENSITIVE: []
|
@@ -218,6 +250,19 @@ module Aws::NeptuneGraph
|
|
218
250
|
SENSITIVE: []
|
219
251
|
end
|
220
252
|
|
253
|
+
class GetGraphSummaryInput
|
254
|
+
attr_accessor graph_identifier: ::String
|
255
|
+
attr_accessor mode: ("BASIC" | "DETAILED")
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class GetGraphSummaryOutput
|
260
|
+
attr_accessor version: ::String
|
261
|
+
attr_accessor last_statistics_computation_time: ::Time
|
262
|
+
attr_accessor graph_summary: Types::GraphDataSummary
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
221
266
|
class GetImportTaskInput
|
222
267
|
attr_accessor task_identifier: ::String
|
223
268
|
SENSITIVE: []
|
@@ -251,6 +296,39 @@ module Aws::NeptuneGraph
|
|
251
296
|
SENSITIVE: []
|
252
297
|
end
|
253
298
|
|
299
|
+
class GetQueryInput
|
300
|
+
attr_accessor graph_identifier: ::String
|
301
|
+
attr_accessor query_id: ::String
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class GetQueryOutput
|
306
|
+
attr_accessor id: ::String
|
307
|
+
attr_accessor query_string: ::String
|
308
|
+
attr_accessor waited: ::Integer
|
309
|
+
attr_accessor elapsed: ::Integer
|
310
|
+
attr_accessor state: ("RUNNING" | "WAITING" | "CANCELLING")
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class GraphDataSummary
|
315
|
+
attr_accessor num_nodes: ::Integer
|
316
|
+
attr_accessor num_edges: ::Integer
|
317
|
+
attr_accessor num_node_labels: ::Integer
|
318
|
+
attr_accessor num_edge_labels: ::Integer
|
319
|
+
attr_accessor node_labels: ::Array[::String]
|
320
|
+
attr_accessor edge_labels: ::Array[::String]
|
321
|
+
attr_accessor num_node_properties: ::Integer
|
322
|
+
attr_accessor num_edge_properties: ::Integer
|
323
|
+
attr_accessor node_properties: ::Array[::Hash[::String, ::Integer]]
|
324
|
+
attr_accessor edge_properties: ::Array[::Hash[::String, ::Integer]]
|
325
|
+
attr_accessor total_node_property_values: ::Integer
|
326
|
+
attr_accessor total_edge_property_values: ::Integer
|
327
|
+
attr_accessor node_structures: ::Array[Types::NodeStructure]
|
328
|
+
attr_accessor edge_structures: ::Array[Types::EdgeStructure]
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
254
332
|
class GraphSnapshotSummary
|
255
333
|
attr_accessor id: ::String
|
256
334
|
attr_accessor name: ::String
|
@@ -364,6 +442,18 @@ module Aws::NeptuneGraph
|
|
364
442
|
SENSITIVE: []
|
365
443
|
end
|
366
444
|
|
445
|
+
class ListQueriesInput
|
446
|
+
attr_accessor graph_identifier: ::String
|
447
|
+
attr_accessor max_results: ::Integer
|
448
|
+
attr_accessor state: ("ALL" | "RUNNING" | "WAITING" | "CANCELLING")
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class ListQueriesOutput
|
453
|
+
attr_accessor queries: ::Array[Types::QuerySummary]
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
367
457
|
class ListTagsForResourceInput
|
368
458
|
attr_accessor resource_arn: ::String
|
369
459
|
SENSITIVE: []
|
@@ -382,6 +472,13 @@ module Aws::NeptuneGraph
|
|
382
472
|
SENSITIVE: []
|
383
473
|
end
|
384
474
|
|
475
|
+
class NodeStructure
|
476
|
+
attr_accessor count: ::Integer
|
477
|
+
attr_accessor node_properties: ::Array[::String]
|
478
|
+
attr_accessor distinct_outgoing_edge_labels: ::Array[::String]
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
385
482
|
class PrivateGraphEndpointSummary
|
386
483
|
attr_accessor vpc_id: ::String
|
387
484
|
attr_accessor subnet_ids: ::Array[::String]
|
@@ -390,6 +487,15 @@ module Aws::NeptuneGraph
|
|
390
487
|
SENSITIVE: []
|
391
488
|
end
|
392
489
|
|
490
|
+
class QuerySummary
|
491
|
+
attr_accessor id: ::String
|
492
|
+
attr_accessor query_string: ::String
|
493
|
+
attr_accessor waited: ::Integer
|
494
|
+
attr_accessor elapsed: ::Integer
|
495
|
+
attr_accessor state: ("RUNNING" | "WAITING" | "CANCELLING")
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
393
499
|
class ResetGraphInput
|
394
500
|
attr_accessor graph_identifier: ::String
|
395
501
|
attr_accessor skip_snapshot: bool
|
@@ -473,6 +579,12 @@ module Aws::NeptuneGraph
|
|
473
579
|
SENSITIVE: []
|
474
580
|
end
|
475
581
|
|
582
|
+
class UnprocessableException
|
583
|
+
attr_accessor message: ::String
|
584
|
+
attr_accessor reason: ("QUERY_TIMEOUT" | "INTERNAL_LIMIT_EXCEEDED" | "MEMORY_LIMIT_EXCEEDED" | "STORAGE_LIMIT_EXCEEDED" | "PARTITION_FULL")
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
476
588
|
class UntagResourceInput
|
477
589
|
attr_accessor resource_arn: ::String
|
478
590
|
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.3.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-01
|
11
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|