aws-sdk-neptunegraph 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptunegraph/client.rb +1 -1
- data/lib/aws-sdk-neptunegraph/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-neptunegraph.rb +1 -1
- data/sig/client.rbs +523 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +523 -0
- data/sig/waiters.rbs +95 -0
- metadata +13 -8
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module NeptuneGraph
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,523 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::NeptuneGraph
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class CancelImportTaskInput
|
12
|
+
attr_accessor task_identifier: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class CancelImportTaskOutput
|
17
|
+
attr_accessor graph_id: ::String
|
18
|
+
attr_accessor task_id: ::String
|
19
|
+
attr_accessor source: ::String
|
20
|
+
attr_accessor format: ("CSV" | "OPEN_CYPHER")
|
21
|
+
attr_accessor role_arn: ::String
|
22
|
+
attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ConflictException
|
27
|
+
attr_accessor message: ::String
|
28
|
+
attr_accessor reason: ("CONCURRENT_MODIFICATION")
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class CreateGraphInput
|
33
|
+
attr_accessor graph_name: ::String
|
34
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
35
|
+
attr_accessor public_connectivity: bool
|
36
|
+
attr_accessor kms_key_identifier: ::String
|
37
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
38
|
+
attr_accessor replica_count: ::Integer
|
39
|
+
attr_accessor deletion_protection: bool
|
40
|
+
attr_accessor provisioned_memory: ::Integer
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class CreateGraphOutput
|
45
|
+
attr_accessor id: ::String
|
46
|
+
attr_accessor name: ::String
|
47
|
+
attr_accessor arn: ::String
|
48
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
49
|
+
attr_accessor status_reason: ::String
|
50
|
+
attr_accessor create_time: ::Time
|
51
|
+
attr_accessor provisioned_memory: ::Integer
|
52
|
+
attr_accessor endpoint: ::String
|
53
|
+
attr_accessor public_connectivity: bool
|
54
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
55
|
+
attr_accessor replica_count: ::Integer
|
56
|
+
attr_accessor kms_key_identifier: ::String
|
57
|
+
attr_accessor source_snapshot_id: ::String
|
58
|
+
attr_accessor deletion_protection: bool
|
59
|
+
attr_accessor build_number: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateGraphSnapshotInput
|
64
|
+
attr_accessor graph_identifier: ::String
|
65
|
+
attr_accessor snapshot_name: ::String
|
66
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class CreateGraphSnapshotOutput
|
71
|
+
attr_accessor id: ::String
|
72
|
+
attr_accessor name: ::String
|
73
|
+
attr_accessor arn: ::String
|
74
|
+
attr_accessor source_graph_id: ::String
|
75
|
+
attr_accessor snapshot_create_time: ::Time
|
76
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
77
|
+
attr_accessor kms_key_identifier: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class CreateGraphUsingImportTaskInput
|
82
|
+
attr_accessor graph_name: ::String
|
83
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
84
|
+
attr_accessor public_connectivity: bool
|
85
|
+
attr_accessor kms_key_identifier: ::String
|
86
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
87
|
+
attr_accessor replica_count: ::Integer
|
88
|
+
attr_accessor deletion_protection: bool
|
89
|
+
attr_accessor import_options: Types::ImportOptions
|
90
|
+
attr_accessor max_provisioned_memory: ::Integer
|
91
|
+
attr_accessor min_provisioned_memory: ::Integer
|
92
|
+
attr_accessor fail_on_error: bool
|
93
|
+
attr_accessor source: ::String
|
94
|
+
attr_accessor format: ("CSV" | "OPEN_CYPHER")
|
95
|
+
attr_accessor role_arn: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class CreateGraphUsingImportTaskOutput
|
100
|
+
attr_accessor graph_id: ::String
|
101
|
+
attr_accessor task_id: ::String
|
102
|
+
attr_accessor source: ::String
|
103
|
+
attr_accessor format: ("CSV" | "OPEN_CYPHER")
|
104
|
+
attr_accessor role_arn: ::String
|
105
|
+
attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
106
|
+
attr_accessor import_options: Types::ImportOptions
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CreatePrivateGraphEndpointInput
|
111
|
+
attr_accessor graph_identifier: ::String
|
112
|
+
attr_accessor vpc_id: ::String
|
113
|
+
attr_accessor subnet_ids: ::Array[::String]
|
114
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class CreatePrivateGraphEndpointOutput
|
119
|
+
attr_accessor vpc_id: ::String
|
120
|
+
attr_accessor subnet_ids: ::Array[::String]
|
121
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
122
|
+
attr_accessor vpc_endpoint_id: ::String
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class DeleteGraphInput
|
127
|
+
attr_accessor graph_identifier: ::String
|
128
|
+
attr_accessor skip_snapshot: bool
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class DeleteGraphOutput
|
133
|
+
attr_accessor id: ::String
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor arn: ::String
|
136
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
137
|
+
attr_accessor status_reason: ::String
|
138
|
+
attr_accessor create_time: ::Time
|
139
|
+
attr_accessor provisioned_memory: ::Integer
|
140
|
+
attr_accessor endpoint: ::String
|
141
|
+
attr_accessor public_connectivity: bool
|
142
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
143
|
+
attr_accessor replica_count: ::Integer
|
144
|
+
attr_accessor kms_key_identifier: ::String
|
145
|
+
attr_accessor source_snapshot_id: ::String
|
146
|
+
attr_accessor deletion_protection: bool
|
147
|
+
attr_accessor build_number: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class DeleteGraphSnapshotInput
|
152
|
+
attr_accessor snapshot_identifier: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class DeleteGraphSnapshotOutput
|
157
|
+
attr_accessor id: ::String
|
158
|
+
attr_accessor name: ::String
|
159
|
+
attr_accessor arn: ::String
|
160
|
+
attr_accessor source_graph_id: ::String
|
161
|
+
attr_accessor snapshot_create_time: ::Time
|
162
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
163
|
+
attr_accessor kms_key_identifier: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class DeletePrivateGraphEndpointInput
|
168
|
+
attr_accessor graph_identifier: ::String
|
169
|
+
attr_accessor vpc_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class DeletePrivateGraphEndpointOutput
|
174
|
+
attr_accessor vpc_id: ::String
|
175
|
+
attr_accessor subnet_ids: ::Array[::String]
|
176
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
177
|
+
attr_accessor vpc_endpoint_id: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class GetGraphInput
|
182
|
+
attr_accessor graph_identifier: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class GetGraphOutput
|
187
|
+
attr_accessor id: ::String
|
188
|
+
attr_accessor name: ::String
|
189
|
+
attr_accessor arn: ::String
|
190
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
191
|
+
attr_accessor status_reason: ::String
|
192
|
+
attr_accessor create_time: ::Time
|
193
|
+
attr_accessor provisioned_memory: ::Integer
|
194
|
+
attr_accessor endpoint: ::String
|
195
|
+
attr_accessor public_connectivity: bool
|
196
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
197
|
+
attr_accessor replica_count: ::Integer
|
198
|
+
attr_accessor kms_key_identifier: ::String
|
199
|
+
attr_accessor source_snapshot_id: ::String
|
200
|
+
attr_accessor deletion_protection: bool
|
201
|
+
attr_accessor build_number: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class GetGraphSnapshotInput
|
206
|
+
attr_accessor snapshot_identifier: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class GetGraphSnapshotOutput
|
211
|
+
attr_accessor id: ::String
|
212
|
+
attr_accessor name: ::String
|
213
|
+
attr_accessor arn: ::String
|
214
|
+
attr_accessor source_graph_id: ::String
|
215
|
+
attr_accessor snapshot_create_time: ::Time
|
216
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
217
|
+
attr_accessor kms_key_identifier: ::String
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class GetImportTaskInput
|
222
|
+
attr_accessor task_identifier: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class GetImportTaskOutput
|
227
|
+
attr_accessor graph_id: ::String
|
228
|
+
attr_accessor task_id: ::String
|
229
|
+
attr_accessor source: ::String
|
230
|
+
attr_accessor format: ("CSV" | "OPEN_CYPHER")
|
231
|
+
attr_accessor role_arn: ::String
|
232
|
+
attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
233
|
+
attr_accessor import_options: Types::ImportOptions
|
234
|
+
attr_accessor import_task_details: Types::ImportTaskDetails
|
235
|
+
attr_accessor attempt_number: ::Integer
|
236
|
+
attr_accessor status_reason: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class GetPrivateGraphEndpointInput
|
241
|
+
attr_accessor graph_identifier: ::String
|
242
|
+
attr_accessor vpc_id: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class GetPrivateGraphEndpointOutput
|
247
|
+
attr_accessor vpc_id: ::String
|
248
|
+
attr_accessor subnet_ids: ::Array[::String]
|
249
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
250
|
+
attr_accessor vpc_endpoint_id: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class GraphSnapshotSummary
|
255
|
+
attr_accessor id: ::String
|
256
|
+
attr_accessor name: ::String
|
257
|
+
attr_accessor arn: ::String
|
258
|
+
attr_accessor source_graph_id: ::String
|
259
|
+
attr_accessor snapshot_create_time: ::Time
|
260
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
261
|
+
attr_accessor kms_key_identifier: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class GraphSummary
|
266
|
+
attr_accessor id: ::String
|
267
|
+
attr_accessor name: ::String
|
268
|
+
attr_accessor arn: ::String
|
269
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
270
|
+
attr_accessor provisioned_memory: ::Integer
|
271
|
+
attr_accessor public_connectivity: bool
|
272
|
+
attr_accessor endpoint: ::String
|
273
|
+
attr_accessor replica_count: ::Integer
|
274
|
+
attr_accessor kms_key_identifier: ::String
|
275
|
+
attr_accessor deletion_protection: bool
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class ImportOptions
|
280
|
+
attr_accessor neptune: Types::NeptuneImportOptions
|
281
|
+
attr_accessor unknown: untyped
|
282
|
+
SENSITIVE: []
|
283
|
+
|
284
|
+
class Neptune < ImportOptions
|
285
|
+
end
|
286
|
+
class Unknown < ImportOptions
|
287
|
+
end
|
288
|
+
end
|
289
|
+
|
290
|
+
class ImportTaskDetails
|
291
|
+
attr_accessor status: ::String
|
292
|
+
attr_accessor start_time: ::Time
|
293
|
+
attr_accessor time_elapsed_seconds: ::Integer
|
294
|
+
attr_accessor progress_percentage: ::Integer
|
295
|
+
attr_accessor error_count: ::Integer
|
296
|
+
attr_accessor error_details: ::String
|
297
|
+
attr_accessor statement_count: ::Integer
|
298
|
+
attr_accessor dictionary_entry_count: ::Integer
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ImportTaskSummary
|
303
|
+
attr_accessor graph_id: ::String
|
304
|
+
attr_accessor task_id: ::String
|
305
|
+
attr_accessor source: ::String
|
306
|
+
attr_accessor format: ("CSV" | "OPEN_CYPHER")
|
307
|
+
attr_accessor role_arn: ::String
|
308
|
+
attr_accessor status: ("INITIALIZING" | "EXPORTING" | "ANALYZING_DATA" | "IMPORTING" | "REPROVISIONING" | "ROLLING_BACK" | "SUCCEEDED" | "FAILED" | "CANCELLING" | "CANCELLED")
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class InternalServerException
|
313
|
+
attr_accessor message: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class ListGraphSnapshotsInput
|
318
|
+
attr_accessor graph_identifier: ::String
|
319
|
+
attr_accessor next_token: ::String
|
320
|
+
attr_accessor max_results: ::Integer
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class ListGraphSnapshotsOutput
|
325
|
+
attr_accessor graph_snapshots: ::Array[Types::GraphSnapshotSummary]
|
326
|
+
attr_accessor next_token: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class ListGraphsInput
|
331
|
+
attr_accessor next_token: ::String
|
332
|
+
attr_accessor max_results: ::Integer
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ListGraphsOutput
|
337
|
+
attr_accessor graphs: ::Array[Types::GraphSummary]
|
338
|
+
attr_accessor next_token: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class ListImportTasksInput
|
343
|
+
attr_accessor next_token: ::String
|
344
|
+
attr_accessor max_results: ::Integer
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class ListImportTasksOutput
|
349
|
+
attr_accessor tasks: ::Array[Types::ImportTaskSummary]
|
350
|
+
attr_accessor next_token: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class ListPrivateGraphEndpointsInput
|
355
|
+
attr_accessor graph_identifier: ::String
|
356
|
+
attr_accessor next_token: ::String
|
357
|
+
attr_accessor max_results: ::Integer
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class ListPrivateGraphEndpointsOutput
|
362
|
+
attr_accessor private_graph_endpoints: ::Array[Types::PrivateGraphEndpointSummary]
|
363
|
+
attr_accessor next_token: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class ListTagsForResourceInput
|
368
|
+
attr_accessor resource_arn: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class ListTagsForResourceOutput
|
373
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class NeptuneImportOptions
|
378
|
+
attr_accessor s3_export_path: ::String
|
379
|
+
attr_accessor s3_export_kms_key_id: ::String
|
380
|
+
attr_accessor preserve_default_vertex_labels: bool
|
381
|
+
attr_accessor preserve_edge_ids: bool
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class PrivateGraphEndpointSummary
|
386
|
+
attr_accessor vpc_id: ::String
|
387
|
+
attr_accessor subnet_ids: ::Array[::String]
|
388
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "FAILED")
|
389
|
+
attr_accessor vpc_endpoint_id: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class ResetGraphInput
|
394
|
+
attr_accessor graph_identifier: ::String
|
395
|
+
attr_accessor skip_snapshot: bool
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class ResetGraphOutput
|
400
|
+
attr_accessor id: ::String
|
401
|
+
attr_accessor name: ::String
|
402
|
+
attr_accessor arn: ::String
|
403
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
404
|
+
attr_accessor status_reason: ::String
|
405
|
+
attr_accessor create_time: ::Time
|
406
|
+
attr_accessor provisioned_memory: ::Integer
|
407
|
+
attr_accessor endpoint: ::String
|
408
|
+
attr_accessor public_connectivity: bool
|
409
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
410
|
+
attr_accessor replica_count: ::Integer
|
411
|
+
attr_accessor kms_key_identifier: ::String
|
412
|
+
attr_accessor source_snapshot_id: ::String
|
413
|
+
attr_accessor deletion_protection: bool
|
414
|
+
attr_accessor build_number: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class ResourceNotFoundException
|
419
|
+
attr_accessor message: ::String
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class RestoreGraphFromSnapshotInput
|
424
|
+
attr_accessor snapshot_identifier: ::String
|
425
|
+
attr_accessor graph_name: ::String
|
426
|
+
attr_accessor provisioned_memory: ::Integer
|
427
|
+
attr_accessor deletion_protection: bool
|
428
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
429
|
+
attr_accessor replica_count: ::Integer
|
430
|
+
attr_accessor public_connectivity: bool
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class RestoreGraphFromSnapshotOutput
|
435
|
+
attr_accessor id: ::String
|
436
|
+
attr_accessor name: ::String
|
437
|
+
attr_accessor arn: ::String
|
438
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
439
|
+
attr_accessor status_reason: ::String
|
440
|
+
attr_accessor create_time: ::Time
|
441
|
+
attr_accessor provisioned_memory: ::Integer
|
442
|
+
attr_accessor endpoint: ::String
|
443
|
+
attr_accessor public_connectivity: bool
|
444
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
445
|
+
attr_accessor replica_count: ::Integer
|
446
|
+
attr_accessor kms_key_identifier: ::String
|
447
|
+
attr_accessor source_snapshot_id: ::String
|
448
|
+
attr_accessor deletion_protection: bool
|
449
|
+
attr_accessor build_number: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class ServiceQuotaExceededException
|
454
|
+
attr_accessor message: ::String
|
455
|
+
attr_accessor resource_id: ::String
|
456
|
+
attr_accessor resource_type: ::String
|
457
|
+
attr_accessor service_code: ::String
|
458
|
+
attr_accessor quota_code: ::String
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class TagResourceInput
|
463
|
+
attr_accessor resource_arn: ::String
|
464
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class TagResourceOutput < Aws::EmptyStructure
|
469
|
+
end
|
470
|
+
|
471
|
+
class ThrottlingException
|
472
|
+
attr_accessor message: ::String
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class UntagResourceInput
|
477
|
+
attr_accessor resource_arn: ::String
|
478
|
+
attr_accessor tag_keys: ::Array[::String]
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
483
|
+
end
|
484
|
+
|
485
|
+
class UpdateGraphInput
|
486
|
+
attr_accessor graph_identifier: ::String
|
487
|
+
attr_accessor public_connectivity: bool
|
488
|
+
attr_accessor provisioned_memory: ::Integer
|
489
|
+
attr_accessor deletion_protection: bool
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class UpdateGraphOutput
|
494
|
+
attr_accessor id: ::String
|
495
|
+
attr_accessor name: ::String
|
496
|
+
attr_accessor arn: ::String
|
497
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "RESETTING" | "UPDATING" | "SNAPSHOTTING" | "FAILED")
|
498
|
+
attr_accessor status_reason: ::String
|
499
|
+
attr_accessor create_time: ::Time
|
500
|
+
attr_accessor provisioned_memory: ::Integer
|
501
|
+
attr_accessor endpoint: ::String
|
502
|
+
attr_accessor public_connectivity: bool
|
503
|
+
attr_accessor vector_search_configuration: Types::VectorSearchConfiguration
|
504
|
+
attr_accessor replica_count: ::Integer
|
505
|
+
attr_accessor kms_key_identifier: ::String
|
506
|
+
attr_accessor source_snapshot_id: ::String
|
507
|
+
attr_accessor deletion_protection: bool
|
508
|
+
attr_accessor build_number: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class ValidationException
|
513
|
+
attr_accessor message: ::String
|
514
|
+
attr_accessor reason: ("CONSTRAINT_VIOLATION" | "ILLEGAL_ARGUMENT" | "MALFORMED_QUERY" | "QUERY_CANCELLED" | "QUERY_TOO_LARGE" | "UNSUPPORTED_OPERATION" | "BAD_REQUEST")
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class VectorSearchConfiguration
|
519
|
+
attr_accessor dimension: ::Integer
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
end
|
523
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module NeptuneGraph
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class GraphAvailable
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
graph_identifier: ::String
|
18
|
+
) -> Client::_GetGraphResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_GetGraphResponseSuccess
|
20
|
+
end
|
21
|
+
|
22
|
+
class GraphDeleted
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
25
|
+
|
26
|
+
def wait: (
|
27
|
+
graph_identifier: ::String
|
28
|
+
) -> Client::_GetGraphResponseSuccess
|
29
|
+
| (Hash[Symbol, untyped]) -> Client::_GetGraphResponseSuccess
|
30
|
+
end
|
31
|
+
|
32
|
+
class GraphSnapshotAvailable
|
33
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
34
|
+
| (?Hash[Symbol, untyped]) -> void
|
35
|
+
|
36
|
+
def wait: (
|
37
|
+
snapshot_identifier: ::String
|
38
|
+
) -> Client::_GetGraphSnapshotResponseSuccess
|
39
|
+
| (Hash[Symbol, untyped]) -> Client::_GetGraphSnapshotResponseSuccess
|
40
|
+
end
|
41
|
+
|
42
|
+
class GraphSnapshotDeleted
|
43
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
44
|
+
| (?Hash[Symbol, untyped]) -> void
|
45
|
+
|
46
|
+
def wait: (
|
47
|
+
snapshot_identifier: ::String
|
48
|
+
) -> Client::_GetGraphSnapshotResponseSuccess
|
49
|
+
| (Hash[Symbol, untyped]) -> Client::_GetGraphSnapshotResponseSuccess
|
50
|
+
end
|
51
|
+
|
52
|
+
class ImportTaskCancelled
|
53
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
54
|
+
| (?Hash[Symbol, untyped]) -> void
|
55
|
+
|
56
|
+
def wait: (
|
57
|
+
task_identifier: ::String
|
58
|
+
) -> Client::_GetImportTaskResponseSuccess
|
59
|
+
| (Hash[Symbol, untyped]) -> Client::_GetImportTaskResponseSuccess
|
60
|
+
end
|
61
|
+
|
62
|
+
class ImportTaskSuccessful
|
63
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
64
|
+
| (?Hash[Symbol, untyped]) -> void
|
65
|
+
|
66
|
+
def wait: (
|
67
|
+
task_identifier: ::String
|
68
|
+
) -> Client::_GetImportTaskResponseSuccess
|
69
|
+
| (Hash[Symbol, untyped]) -> Client::_GetImportTaskResponseSuccess
|
70
|
+
end
|
71
|
+
|
72
|
+
class PrivateGraphEndpointAvailable
|
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
|
+
vpc_id: ::String
|
79
|
+
) -> Client::_GetPrivateGraphEndpointResponseSuccess
|
80
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPrivateGraphEndpointResponseSuccess
|
81
|
+
end
|
82
|
+
|
83
|
+
class PrivateGraphEndpointDeleted
|
84
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
85
|
+
| (?Hash[Symbol, untyped]) -> void
|
86
|
+
|
87
|
+
def wait: (
|
88
|
+
graph_identifier: ::String,
|
89
|
+
vpc_id: ::String
|
90
|
+
) -> Client::_GetPrivateGraphEndpointResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped]) -> Client::_GetPrivateGraphEndpointResponseSuccess
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|