aws-sdk-neptunegraph 1.38.0 → 1.39.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 +123 -8
- data/lib/aws-sdk-neptunegraph/client_api.rb +71 -1
- data/lib/aws-sdk-neptunegraph/endpoints.rb +22 -0
- data/lib/aws-sdk-neptunegraph/types.rb +194 -0
- data/lib/aws-sdk-neptunegraph/waiters.rb +46 -0
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +58 -6
- data/sig/types.rbs +55 -7
- data/sig/waiters.rbs +10 -0
- 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: 5ce7b9d34f90a32c337b0688a90c123d421638cdf2ecbbf5c4cef68c16b3dd79
|
4
|
+
data.tar.gz: 643218c1dcbe40129390d9b8eb4259c63490516c5080450c2befcd88c20c0557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1234f31e1510cd7b09715b9ee0379463a3daa0456740e57c8d1d1f2c76a298d84e5b1aa2ce0f008186dd836b81920afa43a8c02042388777de07ec41d570361b
|
7
|
+
data.tar.gz: 9492974f03fad25dcbabbf324dfede1b1abfcd060822b4ad475f8db623960656d4fe791dbdb74f1b0cd25fc3ef0db2d9e1c9fa4a06d9a2b7ac17a43f95631764
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -668,7 +668,7 @@ module Aws::NeptuneGraph
|
|
668
668
|
# resp.id #=> String
|
669
669
|
# resp.name #=> String
|
670
670
|
# resp.arn #=> String
|
671
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
671
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
672
672
|
# resp.status_reason #=> String
|
673
673
|
# resp.create_time #=> Time
|
674
674
|
# resp.provisioned_memory #=> Integer
|
@@ -1016,7 +1016,7 @@ module Aws::NeptuneGraph
|
|
1016
1016
|
# resp.id #=> String
|
1017
1017
|
# resp.name #=> String
|
1018
1018
|
# resp.arn #=> String
|
1019
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
1019
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
1020
1020
|
# resp.status_reason #=> String
|
1021
1021
|
# resp.create_time #=> Time
|
1022
1022
|
# resp.provisioned_memory #=> Integer
|
@@ -1292,7 +1292,7 @@ module Aws::NeptuneGraph
|
|
1292
1292
|
# resp.id #=> String
|
1293
1293
|
# resp.name #=> String
|
1294
1294
|
# resp.arn #=> String
|
1295
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
1295
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
1296
1296
|
# resp.status_reason #=> String
|
1297
1297
|
# resp.create_time #=> Time
|
1298
1298
|
# resp.provisioned_memory #=> Integer
|
@@ -1310,6 +1310,7 @@ module Aws::NeptuneGraph
|
|
1310
1310
|
#
|
1311
1311
|
# * graph_available
|
1312
1312
|
# * graph_deleted
|
1313
|
+
# * graph_stopped
|
1313
1314
|
#
|
1314
1315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/GetGraph AWS API Documentation
|
1315
1316
|
#
|
@@ -1729,7 +1730,7 @@ module Aws::NeptuneGraph
|
|
1729
1730
|
# resp.graphs[0].id #=> String
|
1730
1731
|
# resp.graphs[0].name #=> String
|
1731
1732
|
# resp.graphs[0].arn #=> String
|
1732
|
-
# resp.graphs[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
1733
|
+
# resp.graphs[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
1733
1734
|
# resp.graphs[0].provisioned_memory #=> Integer
|
1734
1735
|
# resp.graphs[0].public_connectivity #=> Boolean
|
1735
1736
|
# resp.graphs[0].endpoint #=> String
|
@@ -1966,7 +1967,7 @@ module Aws::NeptuneGraph
|
|
1966
1967
|
# resp.id #=> String
|
1967
1968
|
# resp.name #=> String
|
1968
1969
|
# resp.arn #=> String
|
1969
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
1970
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
1970
1971
|
# resp.status_reason #=> String
|
1971
1972
|
# resp.create_time #=> Time
|
1972
1973
|
# resp.provisioned_memory #=> Integer
|
@@ -2065,7 +2066,7 @@ module Aws::NeptuneGraph
|
|
2065
2066
|
# resp.id #=> String
|
2066
2067
|
# resp.name #=> String
|
2067
2068
|
# resp.arn #=> String
|
2068
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
2069
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
2069
2070
|
# resp.status_reason #=> String
|
2070
2071
|
# resp.create_time #=> Time
|
2071
2072
|
# resp.provisioned_memory #=> Integer
|
@@ -2197,6 +2198,62 @@ module Aws::NeptuneGraph
|
|
2197
2198
|
req.send_request(options)
|
2198
2199
|
end
|
2199
2200
|
|
2201
|
+
# Starts the specific graph.
|
2202
|
+
#
|
2203
|
+
# @option params [required, String] :graph_identifier
|
2204
|
+
# The unique identifier of the Neptune Analytics graph.
|
2205
|
+
#
|
2206
|
+
# @return [Types::StartGraphOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2207
|
+
#
|
2208
|
+
# * {Types::StartGraphOutput#id #id} => String
|
2209
|
+
# * {Types::StartGraphOutput#name #name} => String
|
2210
|
+
# * {Types::StartGraphOutput#arn #arn} => String
|
2211
|
+
# * {Types::StartGraphOutput#status #status} => String
|
2212
|
+
# * {Types::StartGraphOutput#status_reason #status_reason} => String
|
2213
|
+
# * {Types::StartGraphOutput#create_time #create_time} => Time
|
2214
|
+
# * {Types::StartGraphOutput#provisioned_memory #provisioned_memory} => Integer
|
2215
|
+
# * {Types::StartGraphOutput#endpoint #endpoint} => String
|
2216
|
+
# * {Types::StartGraphOutput#public_connectivity #public_connectivity} => Boolean
|
2217
|
+
# * {Types::StartGraphOutput#vector_search_configuration #vector_search_configuration} => Types::VectorSearchConfiguration
|
2218
|
+
# * {Types::StartGraphOutput#replica_count #replica_count} => Integer
|
2219
|
+
# * {Types::StartGraphOutput#kms_key_identifier #kms_key_identifier} => String
|
2220
|
+
# * {Types::StartGraphOutput#source_snapshot_id #source_snapshot_id} => String
|
2221
|
+
# * {Types::StartGraphOutput#deletion_protection #deletion_protection} => Boolean
|
2222
|
+
# * {Types::StartGraphOutput#build_number #build_number} => String
|
2223
|
+
#
|
2224
|
+
# @example Request syntax with placeholder values
|
2225
|
+
#
|
2226
|
+
# resp = client.start_graph({
|
2227
|
+
# graph_identifier: "GraphIdentifier", # required
|
2228
|
+
# })
|
2229
|
+
#
|
2230
|
+
# @example Response structure
|
2231
|
+
#
|
2232
|
+
# resp.id #=> String
|
2233
|
+
# resp.name #=> String
|
2234
|
+
# resp.arn #=> String
|
2235
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
2236
|
+
# resp.status_reason #=> String
|
2237
|
+
# resp.create_time #=> Time
|
2238
|
+
# resp.provisioned_memory #=> Integer
|
2239
|
+
# resp.endpoint #=> String
|
2240
|
+
# resp.public_connectivity #=> Boolean
|
2241
|
+
# resp.vector_search_configuration.dimension #=> Integer
|
2242
|
+
# resp.replica_count #=> Integer
|
2243
|
+
# resp.kms_key_identifier #=> String
|
2244
|
+
# resp.source_snapshot_id #=> String
|
2245
|
+
# resp.deletion_protection #=> Boolean
|
2246
|
+
# resp.build_number #=> String
|
2247
|
+
#
|
2248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StartGraph AWS API Documentation
|
2249
|
+
#
|
2250
|
+
# @overload start_graph(params = {})
|
2251
|
+
# @param [Hash] params ({})
|
2252
|
+
def start_graph(params = {}, options = {})
|
2253
|
+
req = build_request(:start_graph, params)
|
2254
|
+
req.send_request(options)
|
2255
|
+
end
|
2256
|
+
|
2200
2257
|
# Import data into existing Neptune Analytics graph from Amazon Simple
|
2201
2258
|
# Storage Service (S3). The graph needs to be empty and in the AVAILABLE
|
2202
2259
|
# state.
|
@@ -2293,6 +2350,62 @@ module Aws::NeptuneGraph
|
|
2293
2350
|
req.send_request(options)
|
2294
2351
|
end
|
2295
2352
|
|
2353
|
+
# Stops the specific graph.
|
2354
|
+
#
|
2355
|
+
# @option params [required, String] :graph_identifier
|
2356
|
+
# The unique identifier of the Neptune Analytics graph.
|
2357
|
+
#
|
2358
|
+
# @return [Types::StopGraphOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2359
|
+
#
|
2360
|
+
# * {Types::StopGraphOutput#id #id} => String
|
2361
|
+
# * {Types::StopGraphOutput#name #name} => String
|
2362
|
+
# * {Types::StopGraphOutput#arn #arn} => String
|
2363
|
+
# * {Types::StopGraphOutput#status #status} => String
|
2364
|
+
# * {Types::StopGraphOutput#status_reason #status_reason} => String
|
2365
|
+
# * {Types::StopGraphOutput#create_time #create_time} => Time
|
2366
|
+
# * {Types::StopGraphOutput#provisioned_memory #provisioned_memory} => Integer
|
2367
|
+
# * {Types::StopGraphOutput#endpoint #endpoint} => String
|
2368
|
+
# * {Types::StopGraphOutput#public_connectivity #public_connectivity} => Boolean
|
2369
|
+
# * {Types::StopGraphOutput#vector_search_configuration #vector_search_configuration} => Types::VectorSearchConfiguration
|
2370
|
+
# * {Types::StopGraphOutput#replica_count #replica_count} => Integer
|
2371
|
+
# * {Types::StopGraphOutput#kms_key_identifier #kms_key_identifier} => String
|
2372
|
+
# * {Types::StopGraphOutput#source_snapshot_id #source_snapshot_id} => String
|
2373
|
+
# * {Types::StopGraphOutput#deletion_protection #deletion_protection} => Boolean
|
2374
|
+
# * {Types::StopGraphOutput#build_number #build_number} => String
|
2375
|
+
#
|
2376
|
+
# @example Request syntax with placeholder values
|
2377
|
+
#
|
2378
|
+
# resp = client.stop_graph({
|
2379
|
+
# graph_identifier: "GraphIdentifier", # required
|
2380
|
+
# })
|
2381
|
+
#
|
2382
|
+
# @example Response structure
|
2383
|
+
#
|
2384
|
+
# resp.id #=> String
|
2385
|
+
# resp.name #=> String
|
2386
|
+
# resp.arn #=> String
|
2387
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
2388
|
+
# resp.status_reason #=> String
|
2389
|
+
# resp.create_time #=> Time
|
2390
|
+
# resp.provisioned_memory #=> Integer
|
2391
|
+
# resp.endpoint #=> String
|
2392
|
+
# resp.public_connectivity #=> Boolean
|
2393
|
+
# resp.vector_search_configuration.dimension #=> Integer
|
2394
|
+
# resp.replica_count #=> Integer
|
2395
|
+
# resp.kms_key_identifier #=> String
|
2396
|
+
# resp.source_snapshot_id #=> String
|
2397
|
+
# resp.deletion_protection #=> Boolean
|
2398
|
+
# resp.build_number #=> String
|
2399
|
+
#
|
2400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StopGraph AWS API Documentation
|
2401
|
+
#
|
2402
|
+
# @overload stop_graph(params = {})
|
2403
|
+
# @param [Hash] params ({})
|
2404
|
+
def stop_graph(params = {}, options = {})
|
2405
|
+
req = build_request(:stop_graph, params)
|
2406
|
+
req.send_request(options)
|
2407
|
+
end
|
2408
|
+
|
2296
2409
|
# Adds tags to the specified resource.
|
2297
2410
|
#
|
2298
2411
|
# @option params [required, String] :resource_arn
|
@@ -2414,7 +2527,7 @@ module Aws::NeptuneGraph
|
|
2414
2527
|
# resp.id #=> String
|
2415
2528
|
# resp.name #=> String
|
2416
2529
|
# resp.arn #=> String
|
2417
|
-
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING"
|
2530
|
+
# resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "RESETTING", "UPDATING", "SNAPSHOTTING", "FAILED", "IMPORTING", "STARTING", "STOPPING", "STOPPED"
|
2418
2531
|
# resp.status_reason #=> String
|
2419
2532
|
# resp.create_time #=> Time
|
2420
2533
|
# resp.provisioned_memory #=> Integer
|
@@ -2454,7 +2567,7 @@ module Aws::NeptuneGraph
|
|
2454
2567
|
tracer: tracer
|
2455
2568
|
)
|
2456
2569
|
context[:gem_name] = 'aws-sdk-neptunegraph'
|
2457
|
-
context[:gem_version] = '1.
|
2570
|
+
context[:gem_version] = '1.39.0'
|
2458
2571
|
Seahorse::Client::Request.new(handlers, context)
|
2459
2572
|
end
|
2460
2573
|
|
@@ -2528,6 +2641,7 @@ module Aws::NeptuneGraph
|
|
2528
2641
|
# | graph_deleted | {Client#get_graph} | 60 | 60 |
|
2529
2642
|
# | graph_snapshot_available | {Client#get_graph_snapshot} | 60 | 120 |
|
2530
2643
|
# | graph_snapshot_deleted | {Client#get_graph_snapshot} | 60 | 60 |
|
2644
|
+
# | graph_stopped | {Client#get_graph} | 20 | 90 |
|
2531
2645
|
# | import_task_cancelled | {Client#get_import_task} | 60 | 60 |
|
2532
2646
|
# | import_task_successful | {Client#get_import_task} | 60 | 480 |
|
2533
2647
|
# | private_graph_endpoint_available | {Client#get_private_graph_endpoint} | 10 | 180 |
|
@@ -2588,6 +2702,7 @@ module Aws::NeptuneGraph
|
|
2588
2702
|
graph_deleted: Waiters::GraphDeleted,
|
2589
2703
|
graph_snapshot_available: Waiters::GraphSnapshotAvailable,
|
2590
2704
|
graph_snapshot_deleted: Waiters::GraphSnapshotDeleted,
|
2705
|
+
graph_stopped: Waiters::GraphStopped,
|
2591
2706
|
import_task_cancelled: Waiters::ImportTaskCancelled,
|
2592
2707
|
import_task_successful: Waiters::ImportTaskSuccessful,
|
2593
2708
|
private_graph_endpoint_available: Waiters::PrivateGraphEndpointAvailable,
|
@@ -157,8 +157,12 @@ module Aws::NeptuneGraph
|
|
157
157
|
StartExportTaskInputDestinationString = Shapes::StringShape.new(name: 'StartExportTaskInputDestinationString')
|
158
158
|
StartExportTaskOutput = Shapes::StructureShape.new(name: 'StartExportTaskOutput')
|
159
159
|
StartExportTaskOutputDestinationString = Shapes::StringShape.new(name: 'StartExportTaskOutputDestinationString')
|
160
|
+
StartGraphInput = Shapes::StructureShape.new(name: 'StartGraphInput')
|
161
|
+
StartGraphOutput = Shapes::StructureShape.new(name: 'StartGraphOutput')
|
160
162
|
StartImportTaskInput = Shapes::StructureShape.new(name: 'StartImportTaskInput')
|
161
163
|
StartImportTaskOutput = Shapes::StructureShape.new(name: 'StartImportTaskOutput')
|
164
|
+
StopGraphInput = Shapes::StructureShape.new(name: 'StopGraphInput')
|
165
|
+
StopGraphOutput = Shapes::StructureShape.new(name: 'StopGraphOutput')
|
162
166
|
String = Shapes::StringShape.new(name: 'String')
|
163
167
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
164
168
|
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
@@ -755,6 +759,26 @@ module Aws::NeptuneGraph
|
|
755
759
|
StartExportTaskOutput.add_member(:export_filter, Shapes::ShapeRef.new(shape: ExportFilter, location_name: "exportFilter"))
|
756
760
|
StartExportTaskOutput.struct_class = Types::StartExportTaskOutput
|
757
761
|
|
762
|
+
StartGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
763
|
+
StartGraphInput.struct_class = Types::StartGraphInput
|
764
|
+
|
765
|
+
StartGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
766
|
+
StartGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
767
|
+
StartGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
768
|
+
StartGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
769
|
+
StartGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
770
|
+
StartGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
771
|
+
StartGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
772
|
+
StartGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
773
|
+
StartGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
774
|
+
StartGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
775
|
+
StartGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
776
|
+
StartGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
777
|
+
StartGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
778
|
+
StartGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
779
|
+
StartGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
780
|
+
StartGraphOutput.struct_class = Types::StartGraphOutput
|
781
|
+
|
758
782
|
StartImportTaskInput.add_member(:import_options, Shapes::ShapeRef.new(shape: ImportOptions, location_name: "importOptions"))
|
759
783
|
StartImportTaskInput.add_member(:fail_on_error, Shapes::ShapeRef.new(shape: Boolean, location_name: "failOnError"))
|
760
784
|
StartImportTaskInput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
@@ -775,6 +799,26 @@ module Aws::NeptuneGraph
|
|
775
799
|
StartImportTaskOutput.add_member(:import_options, Shapes::ShapeRef.new(shape: ImportOptions, location_name: "importOptions"))
|
776
800
|
StartImportTaskOutput.struct_class = Types::StartImportTaskOutput
|
777
801
|
|
802
|
+
StopGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
803
|
+
StopGraphInput.struct_class = Types::StopGraphInput
|
804
|
+
|
805
|
+
StopGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
806
|
+
StopGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
807
|
+
StopGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
808
|
+
StopGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
809
|
+
StopGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
810
|
+
StopGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
811
|
+
StopGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
812
|
+
StopGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
813
|
+
StopGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
814
|
+
StopGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
815
|
+
StopGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
816
|
+
StopGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
817
|
+
StopGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
818
|
+
StopGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
819
|
+
StopGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
820
|
+
StopGraphOutput.struct_class = Types::StopGraphOutput
|
821
|
+
|
778
822
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
779
823
|
|
780
824
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -995,8 +1039,8 @@ module Aws::NeptuneGraph
|
|
995
1039
|
}
|
996
1040
|
o.input = Shapes::ShapeRef.new(shape: ExecuteQueryInput)
|
997
1041
|
o.output = Shapes::ShapeRef.new(shape: ExecuteQueryOutput)
|
998
|
-
o.errors << Shapes::ShapeRef.new(shape: UnprocessableException)
|
999
1042
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1043
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableException)
|
1000
1044
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1001
1045
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1002
1046
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
@@ -1251,6 +1295,19 @@ module Aws::NeptuneGraph
|
|
1251
1295
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1252
1296
|
end)
|
1253
1297
|
|
1298
|
+
api.add_operation(:start_graph, Seahorse::Model::Operation.new.tap do |o|
|
1299
|
+
o.name = "StartGraph"
|
1300
|
+
o.http_method = "POST"
|
1301
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/start"
|
1302
|
+
o.input = Shapes::ShapeRef.new(shape: StartGraphInput)
|
1303
|
+
o.output = Shapes::ShapeRef.new(shape: StartGraphOutput)
|
1304
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1305
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1306
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1307
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1308
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1309
|
+
end)
|
1310
|
+
|
1254
1311
|
api.add_operation(:start_import_task, Seahorse::Model::Operation.new.tap do |o|
|
1255
1312
|
o.name = "StartImportTask"
|
1256
1313
|
o.http_method = "POST"
|
@@ -1264,6 +1321,19 @@ module Aws::NeptuneGraph
|
|
1264
1321
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1265
1322
|
end)
|
1266
1323
|
|
1324
|
+
api.add_operation(:stop_graph, Seahorse::Model::Operation.new.tap do |o|
|
1325
|
+
o.name = "StopGraph"
|
1326
|
+
o.http_method = "POST"
|
1327
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/stop"
|
1328
|
+
o.input = Shapes::ShapeRef.new(shape: StopGraphInput)
|
1329
|
+
o.output = Shapes::ShapeRef.new(shape: StopGraphOutput)
|
1330
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1331
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1332
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1333
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1334
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1335
|
+
end)
|
1336
|
+
|
1267
1337
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
1268
1338
|
o.name = "TagResource"
|
1269
1339
|
o.http_method = "POST"
|
@@ -264,6 +264,15 @@ module Aws::NeptuneGraph
|
|
264
264
|
end
|
265
265
|
end
|
266
266
|
|
267
|
+
class StartGraph
|
268
|
+
def self.build(context)
|
269
|
+
Aws::NeptuneGraph::EndpointParameters.create(
|
270
|
+
context.config,
|
271
|
+
api_type: "ControlPlane",
|
272
|
+
)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
267
276
|
class StartImportTask
|
268
277
|
def self.build(context)
|
269
278
|
Aws::NeptuneGraph::EndpointParameters.create(
|
@@ -273,6 +282,15 @@ module Aws::NeptuneGraph
|
|
273
282
|
end
|
274
283
|
end
|
275
284
|
|
285
|
+
class StopGraph
|
286
|
+
def self.build(context)
|
287
|
+
Aws::NeptuneGraph::EndpointParameters.create(
|
288
|
+
context.config,
|
289
|
+
api_type: "ControlPlane",
|
290
|
+
)
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
276
294
|
class TagResource
|
277
295
|
def self.build(context)
|
278
296
|
Aws::NeptuneGraph::EndpointParameters.create(
|
@@ -359,8 +377,12 @@ module Aws::NeptuneGraph
|
|
359
377
|
RestoreGraphFromSnapshot.build(context)
|
360
378
|
when :start_export_task
|
361
379
|
StartExportTask.build(context)
|
380
|
+
when :start_graph
|
381
|
+
StartGraph.build(context)
|
362
382
|
when :start_import_task
|
363
383
|
StartImportTask.build(context)
|
384
|
+
when :stop_graph
|
385
|
+
StopGraph.build(context)
|
364
386
|
when :tag_resource
|
365
387
|
TagResource.build(context)
|
366
388
|
when :untag_resource
|
@@ -2790,6 +2790,103 @@ module Aws::NeptuneGraph
|
|
2790
2790
|
include Aws::Structure
|
2791
2791
|
end
|
2792
2792
|
|
2793
|
+
# @!attribute [rw] graph_identifier
|
2794
|
+
# The unique identifier of the Neptune Analytics graph.
|
2795
|
+
# @return [String]
|
2796
|
+
#
|
2797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StartGraphInput AWS API Documentation
|
2798
|
+
#
|
2799
|
+
class StartGraphInput < Struct.new(
|
2800
|
+
:graph_identifier)
|
2801
|
+
SENSITIVE = []
|
2802
|
+
include Aws::Structure
|
2803
|
+
end
|
2804
|
+
|
2805
|
+
# @!attribute [rw] id
|
2806
|
+
# The unique identifier of the graph.
|
2807
|
+
# @return [String]
|
2808
|
+
#
|
2809
|
+
# @!attribute [rw] name
|
2810
|
+
# The name of the graph.
|
2811
|
+
# @return [String]
|
2812
|
+
#
|
2813
|
+
# @!attribute [rw] arn
|
2814
|
+
# The ARN associated with the graph.
|
2815
|
+
# @return [String]
|
2816
|
+
#
|
2817
|
+
# @!attribute [rw] status
|
2818
|
+
# The status of the graph.
|
2819
|
+
# @return [String]
|
2820
|
+
#
|
2821
|
+
# @!attribute [rw] status_reason
|
2822
|
+
# The reason that the graph has this status.
|
2823
|
+
# @return [String]
|
2824
|
+
#
|
2825
|
+
# @!attribute [rw] create_time
|
2826
|
+
# The time at which the graph was created.
|
2827
|
+
# @return [Time]
|
2828
|
+
#
|
2829
|
+
# @!attribute [rw] provisioned_memory
|
2830
|
+
# The number of memory-optimized Neptune Capacity Units (m-NCUs)
|
2831
|
+
# allocated to the graph.
|
2832
|
+
# @return [Integer]
|
2833
|
+
#
|
2834
|
+
# @!attribute [rw] endpoint
|
2835
|
+
# The graph endpoint.
|
2836
|
+
# @return [String]
|
2837
|
+
#
|
2838
|
+
# @!attribute [rw] public_connectivity
|
2839
|
+
# If `true`, the graph has a public endpoint, otherwise not.
|
2840
|
+
# @return [Boolean]
|
2841
|
+
#
|
2842
|
+
# @!attribute [rw] vector_search_configuration
|
2843
|
+
# Specifies the number of dimensions for vector embeddings loaded into
|
2844
|
+
# the graph. Max = 65535
|
2845
|
+
# @return [Types::VectorSearchConfiguration]
|
2846
|
+
#
|
2847
|
+
# @!attribute [rw] replica_count
|
2848
|
+
# The number of replicas for the graph.
|
2849
|
+
# @return [Integer]
|
2850
|
+
#
|
2851
|
+
# @!attribute [rw] kms_key_identifier
|
2852
|
+
# The ID of the KMS key used to encrypt and decrypt graph data.
|
2853
|
+
# @return [String]
|
2854
|
+
#
|
2855
|
+
# @!attribute [rw] source_snapshot_id
|
2856
|
+
# The ID of the snapshot from which the graph was created, if it was
|
2857
|
+
# created from a snapshot.
|
2858
|
+
# @return [String]
|
2859
|
+
#
|
2860
|
+
# @!attribute [rw] deletion_protection
|
2861
|
+
# If `true`, deletion protection is enabled for the graph.
|
2862
|
+
# @return [Boolean]
|
2863
|
+
#
|
2864
|
+
# @!attribute [rw] build_number
|
2865
|
+
# The build number of the graph.
|
2866
|
+
# @return [String]
|
2867
|
+
#
|
2868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StartGraphOutput AWS API Documentation
|
2869
|
+
#
|
2870
|
+
class StartGraphOutput < Struct.new(
|
2871
|
+
:id,
|
2872
|
+
:name,
|
2873
|
+
:arn,
|
2874
|
+
:status,
|
2875
|
+
:status_reason,
|
2876
|
+
:create_time,
|
2877
|
+
:provisioned_memory,
|
2878
|
+
:endpoint,
|
2879
|
+
:public_connectivity,
|
2880
|
+
:vector_search_configuration,
|
2881
|
+
:replica_count,
|
2882
|
+
:kms_key_identifier,
|
2883
|
+
:source_snapshot_id,
|
2884
|
+
:deletion_protection,
|
2885
|
+
:build_number)
|
2886
|
+
SENSITIVE = []
|
2887
|
+
include Aws::Structure
|
2888
|
+
end
|
2889
|
+
|
2793
2890
|
# @!attribute [rw] import_options
|
2794
2891
|
# Options for how to perform an import.
|
2795
2892
|
# @return [Types::ImportOptions]
|
@@ -2903,6 +3000,103 @@ module Aws::NeptuneGraph
|
|
2903
3000
|
include Aws::Structure
|
2904
3001
|
end
|
2905
3002
|
|
3003
|
+
# @!attribute [rw] graph_identifier
|
3004
|
+
# The unique identifier of the Neptune Analytics graph.
|
3005
|
+
# @return [String]
|
3006
|
+
#
|
3007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StopGraphInput AWS API Documentation
|
3008
|
+
#
|
3009
|
+
class StopGraphInput < Struct.new(
|
3010
|
+
:graph_identifier)
|
3011
|
+
SENSITIVE = []
|
3012
|
+
include Aws::Structure
|
3013
|
+
end
|
3014
|
+
|
3015
|
+
# @!attribute [rw] id
|
3016
|
+
# The unique identifier of the graph.
|
3017
|
+
# @return [String]
|
3018
|
+
#
|
3019
|
+
# @!attribute [rw] name
|
3020
|
+
# The name of the graph.
|
3021
|
+
# @return [String]
|
3022
|
+
#
|
3023
|
+
# @!attribute [rw] arn
|
3024
|
+
# The ARN associated with the graph.
|
3025
|
+
# @return [String]
|
3026
|
+
#
|
3027
|
+
# @!attribute [rw] status
|
3028
|
+
# The status of the graph.
|
3029
|
+
# @return [String]
|
3030
|
+
#
|
3031
|
+
# @!attribute [rw] status_reason
|
3032
|
+
# The reason that the graph has this status.
|
3033
|
+
# @return [String]
|
3034
|
+
#
|
3035
|
+
# @!attribute [rw] create_time
|
3036
|
+
# The time at which the graph was created.
|
3037
|
+
# @return [Time]
|
3038
|
+
#
|
3039
|
+
# @!attribute [rw] provisioned_memory
|
3040
|
+
# The number of memory-optimized Neptune Capacity Units (m-NCUs)
|
3041
|
+
# allocated to the graph.
|
3042
|
+
# @return [Integer]
|
3043
|
+
#
|
3044
|
+
# @!attribute [rw] endpoint
|
3045
|
+
# The graph endpoint.
|
3046
|
+
# @return [String]
|
3047
|
+
#
|
3048
|
+
# @!attribute [rw] public_connectivity
|
3049
|
+
# If true, the graph has a public endpoint, otherwise not.
|
3050
|
+
# @return [Boolean]
|
3051
|
+
#
|
3052
|
+
# @!attribute [rw] vector_search_configuration
|
3053
|
+
# Specifies the number of dimensions for vector embeddings loaded into
|
3054
|
+
# the graph. Max = 65535
|
3055
|
+
# @return [Types::VectorSearchConfiguration]
|
3056
|
+
#
|
3057
|
+
# @!attribute [rw] replica_count
|
3058
|
+
# The number of replicas for the graph.
|
3059
|
+
# @return [Integer]
|
3060
|
+
#
|
3061
|
+
# @!attribute [rw] kms_key_identifier
|
3062
|
+
# The ID of the KMS key used to encrypt and decrypt graph data.
|
3063
|
+
# @return [String]
|
3064
|
+
#
|
3065
|
+
# @!attribute [rw] source_snapshot_id
|
3066
|
+
# The ID of the snapshot from which the graph was created, if it was
|
3067
|
+
# created from a snapshot.
|
3068
|
+
# @return [String]
|
3069
|
+
#
|
3070
|
+
# @!attribute [rw] deletion_protection
|
3071
|
+
# If `true`, deletion protection is enabled for the graph.
|
3072
|
+
# @return [Boolean]
|
3073
|
+
#
|
3074
|
+
# @!attribute [rw] build_number
|
3075
|
+
# The build number of the graph.
|
3076
|
+
# @return [String]
|
3077
|
+
#
|
3078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/StopGraphOutput AWS API Documentation
|
3079
|
+
#
|
3080
|
+
class StopGraphOutput < Struct.new(
|
3081
|
+
:id,
|
3082
|
+
:name,
|
3083
|
+
:arn,
|
3084
|
+
:status,
|
3085
|
+
:status_reason,
|
3086
|
+
:create_time,
|
3087
|
+
:provisioned_memory,
|
3088
|
+
:endpoint,
|
3089
|
+
:public_connectivity,
|
3090
|
+
:vector_search_configuration,
|
3091
|
+
:replica_count,
|
3092
|
+
:kms_key_identifier,
|
3093
|
+
:source_snapshot_id,
|
3094
|
+
:deletion_protection,
|
3095
|
+
:build_number)
|
3096
|
+
SENSITIVE = []
|
3097
|
+
include Aws::Structure
|
3098
|
+
end
|
3099
|
+
|
2906
3100
|
# @!attribute [rw] resource_arn
|
2907
3101
|
# ARN of the resource for which tags need to be added.
|
2908
3102
|
# @return [String]
|
@@ -75,6 +75,7 @@ module Aws::NeptuneGraph
|
|
75
75
|
# | graph_deleted | {Client#get_graph} | 60 | 60 |
|
76
76
|
# | graph_snapshot_available | {Client#get_graph_snapshot} | 60 | 120 |
|
77
77
|
# | graph_snapshot_deleted | {Client#get_graph_snapshot} | 60 | 60 |
|
78
|
+
# | graph_stopped | {Client#get_graph} | 20 | 90 |
|
78
79
|
# | import_task_cancelled | {Client#get_import_task} | 60 | 60 |
|
79
80
|
# | import_task_successful | {Client#get_import_task} | 60 | 480 |
|
80
81
|
# | private_graph_endpoint_available | {Client#get_private_graph_endpoint} | 10 | 180 |
|
@@ -374,6 +375,51 @@ module Aws::NeptuneGraph
|
|
374
375
|
|
375
376
|
end
|
376
377
|
|
378
|
+
# Wait until Graph is Stopped
|
379
|
+
class GraphStopped
|
380
|
+
|
381
|
+
# @param [Hash] options
|
382
|
+
# @option options [required, Client] :client
|
383
|
+
# @option options [Integer] :max_attempts (90)
|
384
|
+
# @option options [Integer] :delay (20)
|
385
|
+
# @option options [Proc] :before_attempt
|
386
|
+
# @option options [Proc] :before_wait
|
387
|
+
def initialize(options)
|
388
|
+
@client = options.fetch(:client)
|
389
|
+
@waiter = Aws::Waiters::Waiter.new({
|
390
|
+
max_attempts: 90,
|
391
|
+
delay: 20,
|
392
|
+
poller: Aws::Waiters::Poller.new(
|
393
|
+
operation_name: :get_graph,
|
394
|
+
acceptors: [
|
395
|
+
{
|
396
|
+
"matcher" => "path",
|
397
|
+
"argument" => "status",
|
398
|
+
"state" => "success",
|
399
|
+
"expected" => "STOPPED"
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"matcher" => "path",
|
403
|
+
"argument" => "status != 'STOPPING'",
|
404
|
+
"state" => "failure",
|
405
|
+
"expected" => true
|
406
|
+
}
|
407
|
+
]
|
408
|
+
)
|
409
|
+
}.merge(options))
|
410
|
+
end
|
411
|
+
|
412
|
+
# @option (see Client#get_graph)
|
413
|
+
# @return (see Client#get_graph)
|
414
|
+
def wait(params = {})
|
415
|
+
@waiter.wait(client: @client, params: params)
|
416
|
+
end
|
417
|
+
|
418
|
+
# @api private
|
419
|
+
attr_reader :waiter
|
420
|
+
|
421
|
+
end
|
422
|
+
|
377
423
|
# Wait until Import Task is Cancelled
|
378
424
|
class ImportTaskCancelled
|
379
425
|
|
data/lib/aws-sdk-neptunegraph.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -124,7 +124,7 @@ module Aws
|
|
124
124
|
def id: () -> ::String
|
125
125
|
def name: () -> ::String
|
126
126
|
def arn: () -> ::String
|
127
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
127
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
128
128
|
def status_reason: () -> ::String
|
129
129
|
def create_time: () -> ::Time
|
130
130
|
def provisioned_memory: () -> ::Integer
|
@@ -232,7 +232,7 @@ module Aws
|
|
232
232
|
def id: () -> ::String
|
233
233
|
def name: () -> ::String
|
234
234
|
def arn: () -> ::String
|
235
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
235
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
236
236
|
def status_reason: () -> ::String
|
237
237
|
def create_time: () -> ::Time
|
238
238
|
def provisioned_memory: () -> ::Integer
|
@@ -324,7 +324,7 @@ module Aws
|
|
324
324
|
def id: () -> ::String
|
325
325
|
def name: () -> ::String
|
326
326
|
def arn: () -> ::String
|
327
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
327
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
328
328
|
def status_reason: () -> ::String
|
329
329
|
def create_time: () -> ::Time
|
330
330
|
def provisioned_memory: () -> ::Integer
|
@@ -511,7 +511,7 @@ module Aws
|
|
511
511
|
def id: () -> ::String
|
512
512
|
def name: () -> ::String
|
513
513
|
def arn: () -> ::String
|
514
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
514
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
515
515
|
def status_reason: () -> ::String
|
516
516
|
def create_time: () -> ::Time
|
517
517
|
def provisioned_memory: () -> ::Integer
|
@@ -536,7 +536,7 @@ module Aws
|
|
536
536
|
def id: () -> ::String
|
537
537
|
def name: () -> ::String
|
538
538
|
def arn: () -> ::String
|
539
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
539
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
540
540
|
def status_reason: () -> ::String
|
541
541
|
def create_time: () -> ::Time
|
542
542
|
def provisioned_memory: () -> ::Integer
|
@@ -602,6 +602,30 @@ module Aws
|
|
602
602
|
) -> _StartExportTaskResponseSuccess
|
603
603
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExportTaskResponseSuccess
|
604
604
|
|
605
|
+
interface _StartGraphResponseSuccess
|
606
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartGraphOutput]
|
607
|
+
def id: () -> ::String
|
608
|
+
def name: () -> ::String
|
609
|
+
def arn: () -> ::String
|
610
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
611
|
+
def status_reason: () -> ::String
|
612
|
+
def create_time: () -> ::Time
|
613
|
+
def provisioned_memory: () -> ::Integer
|
614
|
+
def endpoint: () -> ::String
|
615
|
+
def public_connectivity: () -> bool
|
616
|
+
def vector_search_configuration: () -> Types::VectorSearchConfiguration
|
617
|
+
def replica_count: () -> ::Integer
|
618
|
+
def kms_key_identifier: () -> ::String
|
619
|
+
def source_snapshot_id: () -> ::String
|
620
|
+
def deletion_protection: () -> bool
|
621
|
+
def build_number: () -> ::String
|
622
|
+
end
|
623
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Client.html#start_graph-instance_method
|
624
|
+
def start_graph: (
|
625
|
+
graph_identifier: ::String
|
626
|
+
) -> _StartGraphResponseSuccess
|
627
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartGraphResponseSuccess
|
628
|
+
|
605
629
|
interface _StartImportTaskResponseSuccess
|
606
630
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartImportTaskOutput]
|
607
631
|
def graph_id: () -> ::String
|
@@ -633,6 +657,30 @@ module Aws
|
|
633
657
|
) -> _StartImportTaskResponseSuccess
|
634
658
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartImportTaskResponseSuccess
|
635
659
|
|
660
|
+
interface _StopGraphResponseSuccess
|
661
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopGraphOutput]
|
662
|
+
def id: () -> ::String
|
663
|
+
def name: () -> ::String
|
664
|
+
def arn: () -> ::String
|
665
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
666
|
+
def status_reason: () -> ::String
|
667
|
+
def create_time: () -> ::Time
|
668
|
+
def provisioned_memory: () -> ::Integer
|
669
|
+
def endpoint: () -> ::String
|
670
|
+
def public_connectivity: () -> bool
|
671
|
+
def vector_search_configuration: () -> Types::VectorSearchConfiguration
|
672
|
+
def replica_count: () -> ::Integer
|
673
|
+
def kms_key_identifier: () -> ::String
|
674
|
+
def source_snapshot_id: () -> ::String
|
675
|
+
def deletion_protection: () -> bool
|
676
|
+
def build_number: () -> ::String
|
677
|
+
end
|
678
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Client.html#stop_graph-instance_method
|
679
|
+
def stop_graph: (
|
680
|
+
graph_identifier: ::String
|
681
|
+
) -> _StopGraphResponseSuccess
|
682
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopGraphResponseSuccess
|
683
|
+
|
636
684
|
interface _TagResourceResponseSuccess
|
637
685
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
638
686
|
end
|
@@ -658,7 +706,7 @@ module Aws
|
|
658
706
|
def id: () -> ::String
|
659
707
|
def name: () -> ::String
|
660
708
|
def arn: () -> ::String
|
661
|
-
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
709
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
662
710
|
def status_reason: () -> ::String
|
663
711
|
def create_time: () -> ::Time
|
664
712
|
def provisioned_memory: () -> ::Integer
|
@@ -705,6 +753,10 @@ module Aws
|
|
705
753
|
snapshot_identifier: ::String
|
706
754
|
) -> Client::_GetGraphSnapshotResponseSuccess
|
707
755
|
| (:graph_snapshot_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetGraphSnapshotResponseSuccess
|
756
|
+
| (:graph_stopped waiter_name,
|
757
|
+
graph_identifier: ::String
|
758
|
+
) -> Client::_GetGraphResponseSuccess
|
759
|
+
| (:graph_stopped waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetGraphResponseSuccess
|
708
760
|
| (:import_task_cancelled waiter_name,
|
709
761
|
task_identifier: ::String
|
710
762
|
) -> Client::_GetImportTaskResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -75,7 +75,7 @@ module Aws::NeptuneGraph
|
|
75
75
|
attr_accessor id: ::String
|
76
76
|
attr_accessor name: ::String
|
77
77
|
attr_accessor arn: ::String
|
78
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
78
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
79
79
|
attr_accessor status_reason: ::String
|
80
80
|
attr_accessor create_time: ::Time
|
81
81
|
attr_accessor provisioned_memory: ::Integer
|
@@ -166,7 +166,7 @@ module Aws::NeptuneGraph
|
|
166
166
|
attr_accessor id: ::String
|
167
167
|
attr_accessor name: ::String
|
168
168
|
attr_accessor arn: ::String
|
169
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
169
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
170
170
|
attr_accessor status_reason: ::String
|
171
171
|
attr_accessor create_time: ::Time
|
172
172
|
attr_accessor provisioned_memory: ::Integer
|
@@ -302,7 +302,7 @@ module Aws::NeptuneGraph
|
|
302
302
|
attr_accessor id: ::String
|
303
303
|
attr_accessor name: ::String
|
304
304
|
attr_accessor arn: ::String
|
305
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
305
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
306
306
|
attr_accessor status_reason: ::String
|
307
307
|
attr_accessor create_time: ::Time
|
308
308
|
attr_accessor provisioned_memory: ::Integer
|
@@ -428,7 +428,7 @@ module Aws::NeptuneGraph
|
|
428
428
|
attr_accessor id: ::String
|
429
429
|
attr_accessor name: ::String
|
430
430
|
attr_accessor arn: ::String
|
431
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
431
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
432
432
|
attr_accessor provisioned_memory: ::Integer
|
433
433
|
attr_accessor public_connectivity: bool
|
434
434
|
attr_accessor endpoint: ::String
|
@@ -604,7 +604,7 @@ module Aws::NeptuneGraph
|
|
604
604
|
attr_accessor id: ::String
|
605
605
|
attr_accessor name: ::String
|
606
606
|
attr_accessor arn: ::String
|
607
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
607
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
608
608
|
attr_accessor status_reason: ::String
|
609
609
|
attr_accessor create_time: ::Time
|
610
610
|
attr_accessor provisioned_memory: ::Integer
|
@@ -639,7 +639,7 @@ module Aws::NeptuneGraph
|
|
639
639
|
attr_accessor id: ::String
|
640
640
|
attr_accessor name: ::String
|
641
641
|
attr_accessor arn: ::String
|
642
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
642
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
643
643
|
attr_accessor status_reason: ::String
|
644
644
|
attr_accessor create_time: ::Time
|
645
645
|
attr_accessor provisioned_memory: ::Integer
|
@@ -689,6 +689,30 @@ module Aws::NeptuneGraph
|
|
689
689
|
SENSITIVE: []
|
690
690
|
end
|
691
691
|
|
692
|
+
class StartGraphInput
|
693
|
+
attr_accessor graph_identifier: ::String
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class StartGraphOutput
|
698
|
+
attr_accessor id: ::String
|
699
|
+
attr_accessor name: ::String
|
700
|
+
attr_accessor arn: ::String
|
701
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
702
|
+
attr_accessor status_reason: ::String
|
703
|
+
attr_accessor create_time: ::Time
|
704
|
+
attr_accessor provisioned_memory: ::Integer
|
705
|
+
attr_accessor endpoint: ::String
|
706
|
+
attr_accessor public_connectivity: bool
|
707
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
708
|
+
attr_accessor replica_count: ::Integer
|
709
|
+
attr_accessor kms_key_identifier: ::String
|
710
|
+
attr_accessor source_snapshot_id: ::String
|
711
|
+
attr_accessor deletion_protection: bool
|
712
|
+
attr_accessor build_number: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
692
716
|
class StartImportTaskInput
|
693
717
|
attr_accessor import_options: Types::ImportOptions
|
694
718
|
attr_accessor fail_on_error: bool
|
@@ -713,6 +737,30 @@ module Aws::NeptuneGraph
|
|
713
737
|
SENSITIVE: []
|
714
738
|
end
|
715
739
|
|
740
|
+
class StopGraphInput
|
741
|
+
attr_accessor graph_identifier: ::String
|
742
|
+
SENSITIVE: []
|
743
|
+
end
|
744
|
+
|
745
|
+
class StopGraphOutput
|
746
|
+
attr_accessor id: ::String
|
747
|
+
attr_accessor name: ::String
|
748
|
+
attr_accessor arn: ::String
|
749
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
750
|
+
attr_accessor status_reason: ::String
|
751
|
+
attr_accessor create_time: ::Time
|
752
|
+
attr_accessor provisioned_memory: ::Integer
|
753
|
+
attr_accessor endpoint: ::String
|
754
|
+
attr_accessor public_connectivity: bool
|
755
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
756
|
+
attr_accessor replica_count: ::Integer
|
757
|
+
attr_accessor kms_key_identifier: ::String
|
758
|
+
attr_accessor source_snapshot_id: ::String
|
759
|
+
attr_accessor deletion_protection: bool
|
760
|
+
attr_accessor build_number: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
716
764
|
class TagResourceInput
|
717
765
|
attr_accessor resource_arn: ::String
|
718
766
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -754,7 +802,7 @@ module Aws::NeptuneGraph
|
|
754
802
|
attr_accessor id: ::String
|
755
803
|
attr_accessor name: ::String
|
756
804
|
attr_accessor arn: ::String
|
757
|
-
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING")
|
805
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED" | "IMPORTING" | "STARTING" | "STOPPING" | "STOPPED")
|
758
806
|
attr_accessor status_reason: ::String
|
759
807
|
attr_accessor create_time: ::Time
|
760
808
|
attr_accessor provisioned_memory: ::Integer
|
data/sig/waiters.rbs
CHANGED
@@ -69,6 +69,16 @@ module Aws
|
|
69
69
|
| (Hash[Symbol, untyped]) -> Client::_GetGraphSnapshotResponseSuccess
|
70
70
|
end
|
71
71
|
|
72
|
+
class GraphStopped
|
73
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
74
|
+
| (?Hash[Symbol, untyped]) -> void
|
75
|
+
|
76
|
+
def wait: (
|
77
|
+
graph_identifier: ::String
|
78
|
+
) -> Client::_GetGraphResponseSuccess
|
79
|
+
| (Hash[Symbol, untyped]) -> Client::_GetGraphResponseSuccess
|
80
|
+
end
|
81
|
+
|
72
82
|
class ImportTaskCancelled
|
73
83
|
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
74
84
|
| (?Hash[Symbol, untyped]) -> void
|