aws-sdk-lambdamicrovms 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-lambdamicrovms/client.rb +2010 -0
- data/lib/aws-sdk-lambdamicrovms/client_api.rb +1102 -0
- data/lib/aws-sdk-lambdamicrovms/customizations.rb +0 -0
- data/lib/aws-sdk-lambdamicrovms/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-lambdamicrovms/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-lambdamicrovms/endpoints.rb +20 -0
- data/lib/aws-sdk-lambdamicrovms/errors.rb +306 -0
- data/lib/aws-sdk-lambdamicrovms/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-lambdamicrovms/resource.rb +26 -0
- data/lib/aws-sdk-lambdamicrovms/types.rb +2431 -0
- data/lib/aws-sdk-lambdamicrovms.rb +61 -0
- data/sig/client.rbs +535 -0
- data/sig/errors.rbs +65 -0
- data/sig/params.rbs +44 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +677 -0
- metadata +96 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,677 @@
|
|
|
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::LambdaMicrovms
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class CloudWatchLogging
|
|
17
|
+
attr_accessor log_group: ::String
|
|
18
|
+
attr_accessor log_stream: ::String
|
|
19
|
+
SENSITIVE: []
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
class CodeArtifact
|
|
23
|
+
attr_accessor uri: ::String
|
|
24
|
+
attr_accessor unknown: untyped
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
|
|
27
|
+
class Uri < CodeArtifact
|
|
28
|
+
end
|
|
29
|
+
class Unknown < CodeArtifact
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class ConflictException
|
|
34
|
+
attr_accessor message: ::String
|
|
35
|
+
attr_accessor resource_id: ::String
|
|
36
|
+
attr_accessor resource_type: ::String
|
|
37
|
+
SENSITIVE: []
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class CpuConfiguration
|
|
41
|
+
attr_accessor architecture: ("ARM_64")
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class CreateMicrovmAuthTokenRequest
|
|
46
|
+
attr_accessor microvm_identifier: ::String
|
|
47
|
+
attr_accessor expiration_in_minutes: ::Integer
|
|
48
|
+
attr_accessor allowed_ports: ::Array[Types::PortSpecification]
|
|
49
|
+
SENSITIVE: []
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
class CreateMicrovmAuthTokenResponse
|
|
53
|
+
attr_accessor auth_token: ::Hash[::String, ::String]
|
|
54
|
+
SENSITIVE: []
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
class CreateMicrovmImageRequest
|
|
58
|
+
attr_accessor base_image_arn: ::String
|
|
59
|
+
attr_accessor base_image_version: ::String
|
|
60
|
+
attr_accessor build_role_arn: ::String
|
|
61
|
+
attr_accessor description: ::String
|
|
62
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
63
|
+
attr_accessor logging: Types::Logging
|
|
64
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
65
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
66
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
67
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
68
|
+
attr_accessor hooks: Types::Hooks
|
|
69
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
70
|
+
attr_accessor name: ::String
|
|
71
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
72
|
+
attr_accessor client_token: ::String
|
|
73
|
+
SENSITIVE: []
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
class CreateMicrovmImageResponse
|
|
77
|
+
attr_accessor image_arn: ::String
|
|
78
|
+
attr_accessor name: ::String
|
|
79
|
+
attr_accessor state: ("CREATING" | "CREATED" | "CREATE_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
80
|
+
attr_accessor latest_active_image_version: ::String
|
|
81
|
+
attr_accessor latest_failed_image_version: ::String
|
|
82
|
+
attr_accessor created_at: ::Time
|
|
83
|
+
attr_accessor base_image_arn: ::String
|
|
84
|
+
attr_accessor base_image_version: ::String
|
|
85
|
+
attr_accessor build_role_arn: ::String
|
|
86
|
+
attr_accessor description: ::String
|
|
87
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
88
|
+
attr_accessor logging: Types::Logging
|
|
89
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
90
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
91
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
92
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
93
|
+
attr_accessor hooks: Types::Hooks
|
|
94
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
95
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
96
|
+
attr_accessor updated_at: ::Time
|
|
97
|
+
attr_accessor image_version: ::String
|
|
98
|
+
SENSITIVE: []
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
class CreateMicrovmShellAuthTokenRequest
|
|
102
|
+
attr_accessor microvm_identifier: ::String
|
|
103
|
+
attr_accessor expiration_in_minutes: ::Integer
|
|
104
|
+
SENSITIVE: []
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
class CreateMicrovmShellAuthTokenResponse
|
|
108
|
+
attr_accessor auth_token: ::Hash[::String, ::String]
|
|
109
|
+
SENSITIVE: []
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
class DeleteMicrovmImageInput
|
|
113
|
+
attr_accessor image_identifier: ::String
|
|
114
|
+
SENSITIVE: []
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
class DeleteMicrovmImageOutput
|
|
118
|
+
attr_accessor image_identifier: ::String
|
|
119
|
+
attr_accessor state: ("CREATING" | "CREATED" | "CREATE_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
120
|
+
SENSITIVE: []
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
class DeleteMicrovmImageVersionInput
|
|
124
|
+
attr_accessor image_identifier: ::String
|
|
125
|
+
attr_accessor image_version: ::String
|
|
126
|
+
SENSITIVE: []
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
class DeleteMicrovmImageVersionOutput
|
|
130
|
+
attr_accessor image_identifier: ::String
|
|
131
|
+
attr_accessor image_version: ::String
|
|
132
|
+
attr_accessor state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
|
133
|
+
SENSITIVE: []
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
class GetMicrovmImageBuildInput
|
|
137
|
+
attr_accessor image_identifier: ::String
|
|
138
|
+
attr_accessor image_version: ::String
|
|
139
|
+
attr_accessor build_id: ::String
|
|
140
|
+
SENSITIVE: []
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
class GetMicrovmImageBuildOutput
|
|
144
|
+
attr_accessor image_arn: ::String
|
|
145
|
+
attr_accessor image_version: ::String
|
|
146
|
+
attr_accessor build_id: ::String
|
|
147
|
+
attr_accessor build_state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED")
|
|
148
|
+
attr_accessor architecture: ("ARM_64")
|
|
149
|
+
attr_accessor chipset: ("GRAVITON")
|
|
150
|
+
attr_accessor chipset_generation: ::String
|
|
151
|
+
attr_accessor state_reason: ::String
|
|
152
|
+
attr_accessor created_at: ::Time
|
|
153
|
+
attr_accessor snapshot_build: Types::SnapshotBuild
|
|
154
|
+
SENSITIVE: []
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
class GetMicrovmImageInput
|
|
158
|
+
attr_accessor image_identifier: ::String
|
|
159
|
+
SENSITIVE: []
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
class GetMicrovmImageOutput
|
|
163
|
+
attr_accessor image_arn: ::String
|
|
164
|
+
attr_accessor name: ::String
|
|
165
|
+
attr_accessor state: ("CREATING" | "CREATED" | "CREATE_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
166
|
+
attr_accessor latest_active_image_version: ::String
|
|
167
|
+
attr_accessor latest_failed_image_version: ::String
|
|
168
|
+
attr_accessor created_at: ::Time
|
|
169
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
170
|
+
attr_accessor updated_at: ::Time
|
|
171
|
+
SENSITIVE: []
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
class GetMicrovmImageVersionInput
|
|
175
|
+
attr_accessor image_identifier: ::String
|
|
176
|
+
attr_accessor image_version: ::String
|
|
177
|
+
SENSITIVE: []
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
class GetMicrovmImageVersionOutput
|
|
181
|
+
attr_accessor base_image_arn: ::String
|
|
182
|
+
attr_accessor base_image_version: ::String
|
|
183
|
+
attr_accessor build_role_arn: ::String
|
|
184
|
+
attr_accessor description: ::String
|
|
185
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
186
|
+
attr_accessor logging: Types::Logging
|
|
187
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
188
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
189
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
190
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
191
|
+
attr_accessor hooks: Types::Hooks
|
|
192
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
193
|
+
attr_accessor image_arn: ::String
|
|
194
|
+
attr_accessor image_version: ::String
|
|
195
|
+
attr_accessor state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
|
196
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
197
|
+
attr_accessor created_at: ::Time
|
|
198
|
+
attr_accessor updated_at: ::Time
|
|
199
|
+
attr_accessor state_reason: ::String
|
|
200
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
201
|
+
SENSITIVE: []
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
class GetMicrovmRequest
|
|
205
|
+
attr_accessor microvm_identifier: ::String
|
|
206
|
+
SENSITIVE: []
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
class GetMicrovmResponse
|
|
210
|
+
attr_accessor microvm_id: ::String
|
|
211
|
+
attr_accessor state: ("PENDING" | "RUNNING" | "SUSPENDING" | "SUSPENDED" | "TERMINATING" | "TERMINATED")
|
|
212
|
+
attr_accessor endpoint: ::String
|
|
213
|
+
attr_accessor image_arn: ::String
|
|
214
|
+
attr_accessor image_version: ::String
|
|
215
|
+
attr_accessor execution_role_arn: ::String
|
|
216
|
+
attr_accessor idle_policy: Types::IdlePolicy
|
|
217
|
+
attr_accessor maximum_duration_in_seconds: ::Integer
|
|
218
|
+
attr_accessor started_at: ::Time
|
|
219
|
+
attr_accessor terminated_at: ::Time
|
|
220
|
+
attr_accessor state_reason: ::String
|
|
221
|
+
attr_accessor ingress_network_connectors: ::Array[::String]
|
|
222
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
223
|
+
SENSITIVE: []
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
class Hooks
|
|
227
|
+
attr_accessor port: ::Integer
|
|
228
|
+
attr_accessor microvm_hooks: Types::MicrovmHooks
|
|
229
|
+
attr_accessor microvm_image_hooks: Types::MicrovmImageHooks
|
|
230
|
+
SENSITIVE: []
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
class IdlePolicy
|
|
234
|
+
attr_accessor max_idle_duration_seconds: ::Integer
|
|
235
|
+
attr_accessor suspended_duration_seconds: ::Integer
|
|
236
|
+
attr_accessor auto_resume_enabled: bool
|
|
237
|
+
SENSITIVE: []
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
class InternalServerException
|
|
241
|
+
attr_accessor message: ::String
|
|
242
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
243
|
+
SENSITIVE: []
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
class InvalidParameterValueException
|
|
247
|
+
attr_accessor type: ::String
|
|
248
|
+
attr_accessor message: ::String
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
class ListManagedMicrovmImageVersionsInput
|
|
253
|
+
attr_accessor max_results: ::Integer
|
|
254
|
+
attr_accessor next_token: ::String
|
|
255
|
+
attr_accessor image_identifier: ::String
|
|
256
|
+
SENSITIVE: []
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
class ListManagedMicrovmImageVersionsOutput
|
|
260
|
+
attr_accessor next_token: ::String
|
|
261
|
+
attr_accessor items: ::Array[Types::ManagedMicrovmImageVersion]
|
|
262
|
+
SENSITIVE: []
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
class ListManagedMicrovmImagesInput
|
|
266
|
+
attr_accessor max_results: ::Integer
|
|
267
|
+
attr_accessor next_token: ::String
|
|
268
|
+
SENSITIVE: []
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
class ListManagedMicrovmImagesOutput
|
|
272
|
+
attr_accessor next_token: ::String
|
|
273
|
+
attr_accessor items: ::Array[Types::ManagedMicrovmImageSummary]
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class ListMicrovmImageBuildsInput
|
|
278
|
+
attr_accessor max_results: ::Integer
|
|
279
|
+
attr_accessor next_token: ::String
|
|
280
|
+
attr_accessor image_identifier: ::String
|
|
281
|
+
attr_accessor image_version: ::String
|
|
282
|
+
attr_accessor architecture: ("ARM_64")
|
|
283
|
+
attr_accessor chipset: ("GRAVITON")
|
|
284
|
+
attr_accessor chipset_generation: ::String
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
class ListMicrovmImageBuildsOutput
|
|
289
|
+
attr_accessor next_token: ::String
|
|
290
|
+
attr_accessor items: ::Array[Types::MicrovmImageBuildSummary]
|
|
291
|
+
SENSITIVE: []
|
|
292
|
+
end
|
|
293
|
+
|
|
294
|
+
class ListMicrovmImageVersionsInput
|
|
295
|
+
attr_accessor max_results: ::Integer
|
|
296
|
+
attr_accessor next_token: ::String
|
|
297
|
+
attr_accessor image_identifier: ::String
|
|
298
|
+
SENSITIVE: []
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
class ListMicrovmImageVersionsOutput
|
|
302
|
+
attr_accessor next_token: ::String
|
|
303
|
+
attr_accessor items: ::Array[Types::MicrovmImageVersionSummary]
|
|
304
|
+
SENSITIVE: []
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class ListMicrovmImagesRequest
|
|
308
|
+
attr_accessor max_results: ::Integer
|
|
309
|
+
attr_accessor next_token: ::String
|
|
310
|
+
attr_accessor name_filter: ::String
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
class ListMicrovmImagesResponse
|
|
315
|
+
attr_accessor next_token: ::String
|
|
316
|
+
attr_accessor items: ::Array[Types::MicrovmImageSummary]
|
|
317
|
+
SENSITIVE: []
|
|
318
|
+
end
|
|
319
|
+
|
|
320
|
+
class ListMicrovmsRequest
|
|
321
|
+
attr_accessor max_results: ::Integer
|
|
322
|
+
attr_accessor next_token: ::String
|
|
323
|
+
attr_accessor image_identifier: ::String
|
|
324
|
+
attr_accessor image_version: ::String
|
|
325
|
+
SENSITIVE: []
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
class ListMicrovmsResponse
|
|
329
|
+
attr_accessor next_token: ::String
|
|
330
|
+
attr_accessor items: ::Array[Types::MicrovmItem]
|
|
331
|
+
SENSITIVE: []
|
|
332
|
+
end
|
|
333
|
+
|
|
334
|
+
class ListTagsRequest
|
|
335
|
+
attr_accessor resource: ::String
|
|
336
|
+
SENSITIVE: []
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
class ListTagsResponse
|
|
340
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
341
|
+
SENSITIVE: []
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
class Logging
|
|
345
|
+
attr_accessor disabled: Types::LoggingDisabled
|
|
346
|
+
attr_accessor cloud_watch: Types::CloudWatchLogging
|
|
347
|
+
attr_accessor unknown: untyped
|
|
348
|
+
SENSITIVE: []
|
|
349
|
+
|
|
350
|
+
class Disabled < Logging
|
|
351
|
+
end
|
|
352
|
+
class CloudWatch < Logging
|
|
353
|
+
end
|
|
354
|
+
class Unknown < Logging
|
|
355
|
+
end
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
class LoggingDisabled < Aws::EmptyStructure
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
class ManagedMicrovmImageSummary
|
|
362
|
+
attr_accessor image_arn: ::String
|
|
363
|
+
attr_accessor created_at: ::Time
|
|
364
|
+
attr_accessor updated_at: ::Time
|
|
365
|
+
SENSITIVE: []
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
class ManagedMicrovmImageVersion
|
|
369
|
+
attr_accessor image_arn: ::String
|
|
370
|
+
attr_accessor image_version: ::String
|
|
371
|
+
attr_accessor created_at: ::Time
|
|
372
|
+
attr_accessor updated_at: ::Time
|
|
373
|
+
SENSITIVE: []
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
class MicrovmHooks
|
|
377
|
+
attr_accessor run: ("DISABLED" | "ENABLED")
|
|
378
|
+
attr_accessor run_timeout_in_seconds: ::Integer
|
|
379
|
+
attr_accessor resume: ("DISABLED" | "ENABLED")
|
|
380
|
+
attr_accessor resume_timeout_in_seconds: ::Integer
|
|
381
|
+
attr_accessor suspend: ("DISABLED" | "ENABLED")
|
|
382
|
+
attr_accessor suspend_timeout_in_seconds: ::Integer
|
|
383
|
+
attr_accessor terminate: ("DISABLED" | "ENABLED")
|
|
384
|
+
attr_accessor terminate_timeout_in_seconds: ::Integer
|
|
385
|
+
SENSITIVE: []
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
class MicrovmImageBuildSummary
|
|
389
|
+
attr_accessor image_arn: ::String
|
|
390
|
+
attr_accessor image_version: ::String
|
|
391
|
+
attr_accessor build_id: ::String
|
|
392
|
+
attr_accessor build_state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED")
|
|
393
|
+
attr_accessor architecture: ("ARM_64")
|
|
394
|
+
attr_accessor chipset: ("GRAVITON")
|
|
395
|
+
attr_accessor chipset_generation: ::String
|
|
396
|
+
attr_accessor state_reason: ::String
|
|
397
|
+
attr_accessor created_at: ::Time
|
|
398
|
+
SENSITIVE: []
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
class MicrovmImageHooks
|
|
402
|
+
attr_accessor ready: ("DISABLED" | "ENABLED")
|
|
403
|
+
attr_accessor ready_timeout_in_seconds: ::Integer
|
|
404
|
+
attr_accessor validate: ("DISABLED" | "ENABLED")
|
|
405
|
+
attr_accessor validate_timeout_in_seconds: ::Integer
|
|
406
|
+
SENSITIVE: []
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
class MicrovmImageSummary
|
|
410
|
+
attr_accessor image_arn: ::String
|
|
411
|
+
attr_accessor name: ::String
|
|
412
|
+
attr_accessor state: ("CREATING" | "CREATED" | "CREATE_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
413
|
+
attr_accessor latest_active_image_version: ::String
|
|
414
|
+
attr_accessor latest_failed_image_version: ::String
|
|
415
|
+
attr_accessor created_at: ::Time
|
|
416
|
+
SENSITIVE: []
|
|
417
|
+
end
|
|
418
|
+
|
|
419
|
+
class MicrovmImageVersionSummary
|
|
420
|
+
attr_accessor base_image_arn: ::String
|
|
421
|
+
attr_accessor base_image_version: ::String
|
|
422
|
+
attr_accessor build_role_arn: ::String
|
|
423
|
+
attr_accessor description: ::String
|
|
424
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
425
|
+
attr_accessor logging: Types::Logging
|
|
426
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
427
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
428
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
429
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
430
|
+
attr_accessor hooks: Types::Hooks
|
|
431
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
432
|
+
attr_accessor image_arn: ::String
|
|
433
|
+
attr_accessor image_version: ::String
|
|
434
|
+
attr_accessor state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
|
435
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
436
|
+
attr_accessor created_at: ::Time
|
|
437
|
+
attr_accessor updated_at: ::Time
|
|
438
|
+
attr_accessor state_reason: ::String
|
|
439
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
440
|
+
SENSITIVE: []
|
|
441
|
+
end
|
|
442
|
+
|
|
443
|
+
class MicrovmItem
|
|
444
|
+
attr_accessor microvm_id: ::String
|
|
445
|
+
attr_accessor state: ("PENDING" | "RUNNING" | "SUSPENDING" | "SUSPENDED" | "TERMINATING" | "TERMINATED")
|
|
446
|
+
attr_accessor image_arn: ::String
|
|
447
|
+
attr_accessor image_version: ::String
|
|
448
|
+
attr_accessor started_at: ::Time
|
|
449
|
+
SENSITIVE: []
|
|
450
|
+
end
|
|
451
|
+
|
|
452
|
+
class PortRange
|
|
453
|
+
attr_accessor start_port: ::Integer
|
|
454
|
+
attr_accessor end_port: ::Integer
|
|
455
|
+
SENSITIVE: []
|
|
456
|
+
end
|
|
457
|
+
|
|
458
|
+
class PortSpecification
|
|
459
|
+
attr_accessor port: ::Integer
|
|
460
|
+
attr_accessor range: Types::PortRange
|
|
461
|
+
attr_accessor all_ports: Types::Unit
|
|
462
|
+
attr_accessor unknown: untyped
|
|
463
|
+
SENSITIVE: []
|
|
464
|
+
|
|
465
|
+
class Port < PortSpecification
|
|
466
|
+
end
|
|
467
|
+
class Range < PortSpecification
|
|
468
|
+
end
|
|
469
|
+
class AllPorts < PortSpecification
|
|
470
|
+
end
|
|
471
|
+
class Unknown < PortSpecification
|
|
472
|
+
end
|
|
473
|
+
end
|
|
474
|
+
|
|
475
|
+
class ResourceConflictException
|
|
476
|
+
attr_accessor type: ::String
|
|
477
|
+
attr_accessor message: ::String
|
|
478
|
+
SENSITIVE: []
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
class ResourceNotFoundException
|
|
482
|
+
attr_accessor message: ::String
|
|
483
|
+
attr_accessor resource_type: ::String
|
|
484
|
+
attr_accessor resource_id: ::String
|
|
485
|
+
SENSITIVE: []
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
class Resources
|
|
489
|
+
attr_accessor minimum_memory_in_mi_b: ::Integer
|
|
490
|
+
SENSITIVE: []
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
class ResumeMicrovmRequest
|
|
494
|
+
attr_accessor microvm_identifier: ::String
|
|
495
|
+
SENSITIVE: []
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
class ResumeMicrovmResponse < Aws::EmptyStructure
|
|
499
|
+
end
|
|
500
|
+
|
|
501
|
+
class RunMicrovmRequest
|
|
502
|
+
attr_accessor ingress_network_connectors: ::Array[::String]
|
|
503
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
504
|
+
attr_accessor image_identifier: ::String
|
|
505
|
+
attr_accessor image_version: ::String
|
|
506
|
+
attr_accessor execution_role_arn: ::String
|
|
507
|
+
attr_accessor idle_policy: Types::IdlePolicy
|
|
508
|
+
attr_accessor logging: Types::Logging
|
|
509
|
+
attr_accessor run_hook_payload: ::String
|
|
510
|
+
attr_accessor maximum_duration_in_seconds: ::Integer
|
|
511
|
+
attr_accessor client_token: ::String
|
|
512
|
+
SENSITIVE: []
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
class RunMicrovmResponse
|
|
516
|
+
attr_accessor microvm_id: ::String
|
|
517
|
+
attr_accessor state: ("PENDING" | "RUNNING" | "SUSPENDING" | "SUSPENDED" | "TERMINATING" | "TERMINATED")
|
|
518
|
+
attr_accessor endpoint: ::String
|
|
519
|
+
attr_accessor image_arn: ::String
|
|
520
|
+
attr_accessor image_version: ::String
|
|
521
|
+
attr_accessor execution_role_arn: ::String
|
|
522
|
+
attr_accessor idle_policy: Types::IdlePolicy
|
|
523
|
+
attr_accessor maximum_duration_in_seconds: ::Integer
|
|
524
|
+
attr_accessor started_at: ::Time
|
|
525
|
+
attr_accessor terminated_at: ::Time
|
|
526
|
+
attr_accessor state_reason: ::String
|
|
527
|
+
attr_accessor ingress_network_connectors: ::Array[::String]
|
|
528
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
529
|
+
SENSITIVE: []
|
|
530
|
+
end
|
|
531
|
+
|
|
532
|
+
class ServiceException
|
|
533
|
+
attr_accessor type: ::String
|
|
534
|
+
attr_accessor message: ::String
|
|
535
|
+
SENSITIVE: []
|
|
536
|
+
end
|
|
537
|
+
|
|
538
|
+
class ServiceQuotaExceededException
|
|
539
|
+
attr_accessor message: ::String
|
|
540
|
+
attr_accessor resource_id: ::String
|
|
541
|
+
attr_accessor resource_type: ::String
|
|
542
|
+
attr_accessor service_code: ::String
|
|
543
|
+
attr_accessor quota_code: ::String
|
|
544
|
+
SENSITIVE: []
|
|
545
|
+
end
|
|
546
|
+
|
|
547
|
+
class SnapshotBuild
|
|
548
|
+
attr_accessor memory_snapshot_size_in_bytes: ::Integer
|
|
549
|
+
attr_accessor code_install_size_in_bytes: ::Integer
|
|
550
|
+
attr_accessor disk_snapshot_size_in_bytes: ::Integer
|
|
551
|
+
SENSITIVE: []
|
|
552
|
+
end
|
|
553
|
+
|
|
554
|
+
class SuspendMicrovmRequest
|
|
555
|
+
attr_accessor microvm_identifier: ::String
|
|
556
|
+
SENSITIVE: []
|
|
557
|
+
end
|
|
558
|
+
|
|
559
|
+
class SuspendMicrovmResponse < Aws::EmptyStructure
|
|
560
|
+
end
|
|
561
|
+
|
|
562
|
+
class TagResourceRequest
|
|
563
|
+
attr_accessor resource: ::String
|
|
564
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
565
|
+
SENSITIVE: []
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
class TerminateMicrovmRequest
|
|
569
|
+
attr_accessor microvm_identifier: ::String
|
|
570
|
+
SENSITIVE: []
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
class TerminateMicrovmResponse < Aws::EmptyStructure
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
class ThrottlingException
|
|
577
|
+
attr_accessor message: ::String
|
|
578
|
+
attr_accessor service_code: ::String
|
|
579
|
+
attr_accessor quota_code: ::String
|
|
580
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
581
|
+
SENSITIVE: []
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
class TooManyRequestsException
|
|
585
|
+
attr_accessor type: ::String
|
|
586
|
+
attr_accessor message: ::String
|
|
587
|
+
SENSITIVE: []
|
|
588
|
+
end
|
|
589
|
+
|
|
590
|
+
class Unit < Aws::EmptyStructure
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
class UntagResourceRequest
|
|
594
|
+
attr_accessor resource: ::String
|
|
595
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
596
|
+
SENSITIVE: []
|
|
597
|
+
end
|
|
598
|
+
|
|
599
|
+
class UpdateMicrovmImageRequest
|
|
600
|
+
attr_accessor base_image_arn: ::String
|
|
601
|
+
attr_accessor base_image_version: ::String
|
|
602
|
+
attr_accessor build_role_arn: ::String
|
|
603
|
+
attr_accessor description: ::String
|
|
604
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
605
|
+
attr_accessor logging: Types::Logging
|
|
606
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
607
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
608
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
609
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
610
|
+
attr_accessor hooks: Types::Hooks
|
|
611
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
612
|
+
attr_accessor image_identifier: ::String
|
|
613
|
+
attr_accessor client_token: ::String
|
|
614
|
+
SENSITIVE: []
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
class UpdateMicrovmImageResponse
|
|
618
|
+
attr_accessor image_arn: ::String
|
|
619
|
+
attr_accessor name: ::String
|
|
620
|
+
attr_accessor state: ("CREATING" | "CREATED" | "CREATE_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETED")
|
|
621
|
+
attr_accessor latest_active_image_version: ::String
|
|
622
|
+
attr_accessor latest_failed_image_version: ::String
|
|
623
|
+
attr_accessor created_at: ::Time
|
|
624
|
+
attr_accessor base_image_arn: ::String
|
|
625
|
+
attr_accessor base_image_version: ::String
|
|
626
|
+
attr_accessor build_role_arn: ::String
|
|
627
|
+
attr_accessor description: ::String
|
|
628
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
629
|
+
attr_accessor logging: Types::Logging
|
|
630
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
631
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
632
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
633
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
634
|
+
attr_accessor hooks: Types::Hooks
|
|
635
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
636
|
+
attr_accessor updated_at: ::Time
|
|
637
|
+
attr_accessor image_version: ::String
|
|
638
|
+
SENSITIVE: []
|
|
639
|
+
end
|
|
640
|
+
|
|
641
|
+
class UpdateMicrovmImageVersionRequest
|
|
642
|
+
attr_accessor image_identifier: ::String
|
|
643
|
+
attr_accessor image_version: ::String
|
|
644
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
645
|
+
SENSITIVE: []
|
|
646
|
+
end
|
|
647
|
+
|
|
648
|
+
class UpdateMicrovmImageVersionResponse
|
|
649
|
+
attr_accessor base_image_arn: ::String
|
|
650
|
+
attr_accessor base_image_version: ::String
|
|
651
|
+
attr_accessor build_role_arn: ::String
|
|
652
|
+
attr_accessor description: ::String
|
|
653
|
+
attr_accessor code_artifact: Types::CodeArtifact
|
|
654
|
+
attr_accessor logging: Types::Logging
|
|
655
|
+
attr_accessor egress_network_connectors: ::Array[::String]
|
|
656
|
+
attr_accessor cpu_configurations: ::Array[Types::CpuConfiguration]
|
|
657
|
+
attr_accessor resources: ::Array[Types::Resources]
|
|
658
|
+
attr_accessor additional_os_capabilities: ::Array[("ALL")]
|
|
659
|
+
attr_accessor hooks: Types::Hooks
|
|
660
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
661
|
+
attr_accessor image_arn: ::String
|
|
662
|
+
attr_accessor image_version: ::String
|
|
663
|
+
attr_accessor state: ("PENDING" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
|
664
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
665
|
+
attr_accessor created_at: ::Time
|
|
666
|
+
attr_accessor updated_at: ::Time
|
|
667
|
+
attr_accessor state_reason: ::String
|
|
668
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
669
|
+
SENSITIVE: []
|
|
670
|
+
end
|
|
671
|
+
|
|
672
|
+
class ValidationException
|
|
673
|
+
attr_accessor message: ::String
|
|
674
|
+
SENSITIVE: []
|
|
675
|
+
end
|
|
676
|
+
end
|
|
677
|
+
end
|