aws-sdk-greengrassv2 1.34.0 → 1.35.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-greengrassv2/client.rb +1 -1
- data/lib/aws-sdk-greengrassv2/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-greengrassv2.rb +1 -1
- data/sig/client.rbs +557 -0
- data/sig/errors.rbs +54 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +720 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,720 @@
|
|
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::GreengrassV2
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AssociateClientDeviceWithCoreDeviceEntry
|
17
|
+
attr_accessor thing_name: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AssociateClientDeviceWithCoreDeviceErrorEntry
|
22
|
+
attr_accessor thing_name: ::String
|
23
|
+
attr_accessor code: ::String
|
24
|
+
attr_accessor message: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssociateServiceRoleToAccountRequest
|
29
|
+
attr_accessor role_arn: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class AssociateServiceRoleToAccountResponse
|
34
|
+
attr_accessor associated_at: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class AssociatedClientDevice
|
39
|
+
attr_accessor thing_name: ::String
|
40
|
+
attr_accessor association_timestamp: ::Time
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class BatchAssociateClientDeviceWithCoreDeviceRequest
|
45
|
+
attr_accessor entries: ::Array[Types::AssociateClientDeviceWithCoreDeviceEntry]
|
46
|
+
attr_accessor core_device_thing_name: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class BatchAssociateClientDeviceWithCoreDeviceResponse
|
51
|
+
attr_accessor error_entries: ::Array[Types::AssociateClientDeviceWithCoreDeviceErrorEntry]
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class BatchDisassociateClientDeviceFromCoreDeviceRequest
|
56
|
+
attr_accessor entries: ::Array[Types::DisassociateClientDeviceFromCoreDeviceEntry]
|
57
|
+
attr_accessor core_device_thing_name: ::String
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class BatchDisassociateClientDeviceFromCoreDeviceResponse
|
62
|
+
attr_accessor error_entries: ::Array[Types::DisassociateClientDeviceFromCoreDeviceErrorEntry]
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class CancelDeploymentRequest
|
67
|
+
attr_accessor deployment_id: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CancelDeploymentResponse
|
72
|
+
attr_accessor message: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class CloudComponentStatus
|
77
|
+
attr_accessor component_state: ("REQUESTED" | "INITIATED" | "DEPLOYABLE" | "FAILED" | "DEPRECATED")
|
78
|
+
attr_accessor message: ::String
|
79
|
+
attr_accessor errors: ::Hash[::String, ::String]
|
80
|
+
attr_accessor vendor_guidance: ("ACTIVE" | "DISCONTINUED" | "DELETED")
|
81
|
+
attr_accessor vendor_guidance_message: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class Component
|
86
|
+
attr_accessor arn: ::String
|
87
|
+
attr_accessor component_name: ::String
|
88
|
+
attr_accessor latest_version: Types::ComponentLatestVersion
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class ComponentCandidate
|
93
|
+
attr_accessor component_name: ::String
|
94
|
+
attr_accessor component_version: ::String
|
95
|
+
attr_accessor version_requirements: ::Hash[::String, ::String]
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class ComponentConfigurationUpdate
|
100
|
+
attr_accessor merge: ::String
|
101
|
+
attr_accessor reset: ::Array[::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class ComponentDependencyRequirement
|
106
|
+
attr_accessor version_requirement: ::String
|
107
|
+
attr_accessor dependency_type: ("HARD" | "SOFT")
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class ComponentDeploymentSpecification
|
112
|
+
attr_accessor component_version: ::String
|
113
|
+
attr_accessor configuration_update: Types::ComponentConfigurationUpdate
|
114
|
+
attr_accessor run_with: Types::ComponentRunWith
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class ComponentLatestVersion
|
119
|
+
attr_accessor arn: ::String
|
120
|
+
attr_accessor component_version: ::String
|
121
|
+
attr_accessor creation_timestamp: ::Time
|
122
|
+
attr_accessor description: ::String
|
123
|
+
attr_accessor publisher: ::String
|
124
|
+
attr_accessor platforms: ::Array[Types::ComponentPlatform]
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class ComponentPlatform
|
129
|
+
attr_accessor name: ::String
|
130
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class ComponentRunWith
|
135
|
+
attr_accessor posix_user: ::String
|
136
|
+
attr_accessor system_resource_limits: Types::SystemResourceLimits
|
137
|
+
attr_accessor windows_user: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class ComponentVersionListItem
|
142
|
+
attr_accessor component_name: ::String
|
143
|
+
attr_accessor component_version: ::String
|
144
|
+
attr_accessor arn: ::String
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class ConflictException
|
149
|
+
attr_accessor message: ::String
|
150
|
+
attr_accessor resource_id: ::String
|
151
|
+
attr_accessor resource_type: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class ConnectivityInfo
|
156
|
+
attr_accessor id: ::String
|
157
|
+
attr_accessor host_address: ::String
|
158
|
+
attr_accessor port_number: ::Integer
|
159
|
+
attr_accessor metadata: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CoreDevice
|
164
|
+
attr_accessor core_device_thing_name: ::String
|
165
|
+
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
166
|
+
attr_accessor last_status_update_timestamp: ::Time
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CreateComponentVersionRequest
|
171
|
+
attr_accessor inline_recipe: ::String
|
172
|
+
attr_accessor lambda_function: Types::LambdaFunctionRecipeSource
|
173
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
174
|
+
attr_accessor client_token: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class CreateComponentVersionResponse
|
179
|
+
attr_accessor arn: ::String
|
180
|
+
attr_accessor component_name: ::String
|
181
|
+
attr_accessor component_version: ::String
|
182
|
+
attr_accessor creation_timestamp: ::Time
|
183
|
+
attr_accessor status: Types::CloudComponentStatus
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class CreateDeploymentRequest
|
188
|
+
attr_accessor target_arn: ::String
|
189
|
+
attr_accessor deployment_name: ::String
|
190
|
+
attr_accessor components: ::Hash[::String, Types::ComponentDeploymentSpecification]
|
191
|
+
attr_accessor iot_job_configuration: Types::DeploymentIoTJobConfiguration
|
192
|
+
attr_accessor deployment_policies: Types::DeploymentPolicies
|
193
|
+
attr_accessor parent_target_arn: ::String
|
194
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
195
|
+
attr_accessor client_token: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateDeploymentResponse
|
200
|
+
attr_accessor deployment_id: ::String
|
201
|
+
attr_accessor iot_job_id: ::String
|
202
|
+
attr_accessor iot_job_arn: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class DeleteComponentRequest
|
207
|
+
attr_accessor arn: ::String
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class DeleteCoreDeviceRequest
|
212
|
+
attr_accessor core_device_thing_name: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class DeleteDeploymentRequest
|
217
|
+
attr_accessor deployment_id: ::String
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class Deployment
|
222
|
+
attr_accessor target_arn: ::String
|
223
|
+
attr_accessor revision_id: ::String
|
224
|
+
attr_accessor deployment_id: ::String
|
225
|
+
attr_accessor deployment_name: ::String
|
226
|
+
attr_accessor creation_timestamp: ::Time
|
227
|
+
attr_accessor deployment_status: ("ACTIVE" | "COMPLETED" | "CANCELED" | "FAILED" | "INACTIVE")
|
228
|
+
attr_accessor is_latest_for_target: bool
|
229
|
+
attr_accessor parent_target_arn: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class DeploymentComponentUpdatePolicy
|
234
|
+
attr_accessor timeout_in_seconds: ::Integer
|
235
|
+
attr_accessor action: ("NOTIFY_COMPONENTS" | "SKIP_NOTIFY_COMPONENTS")
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class DeploymentConfigurationValidationPolicy
|
240
|
+
attr_accessor timeout_in_seconds: ::Integer
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class DeploymentIoTJobConfiguration
|
245
|
+
attr_accessor job_executions_rollout_config: Types::IoTJobExecutionsRolloutConfig
|
246
|
+
attr_accessor abort_config: Types::IoTJobAbortConfig
|
247
|
+
attr_accessor timeout_config: Types::IoTJobTimeoutConfig
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class DeploymentPolicies
|
252
|
+
attr_accessor failure_handling_policy: ("ROLLBACK" | "DO_NOTHING")
|
253
|
+
attr_accessor component_update_policy: Types::DeploymentComponentUpdatePolicy
|
254
|
+
attr_accessor configuration_validation_policy: Types::DeploymentConfigurationValidationPolicy
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class DescribeComponentRequest
|
259
|
+
attr_accessor arn: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class DescribeComponentResponse
|
264
|
+
attr_accessor arn: ::String
|
265
|
+
attr_accessor component_name: ::String
|
266
|
+
attr_accessor component_version: ::String
|
267
|
+
attr_accessor creation_timestamp: ::Time
|
268
|
+
attr_accessor publisher: ::String
|
269
|
+
attr_accessor description: ::String
|
270
|
+
attr_accessor status: Types::CloudComponentStatus
|
271
|
+
attr_accessor platforms: ::Array[Types::ComponentPlatform]
|
272
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class DisassociateClientDeviceFromCoreDeviceEntry
|
277
|
+
attr_accessor thing_name: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DisassociateClientDeviceFromCoreDeviceErrorEntry
|
282
|
+
attr_accessor thing_name: ::String
|
283
|
+
attr_accessor code: ::String
|
284
|
+
attr_accessor message: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class DisassociateServiceRoleFromAccountRequest < Aws::EmptyStructure
|
289
|
+
end
|
290
|
+
|
291
|
+
class DisassociateServiceRoleFromAccountResponse
|
292
|
+
attr_accessor disassociated_at: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class EffectiveDeployment
|
297
|
+
attr_accessor deployment_id: ::String
|
298
|
+
attr_accessor deployment_name: ::String
|
299
|
+
attr_accessor iot_job_id: ::String
|
300
|
+
attr_accessor iot_job_arn: ::String
|
301
|
+
attr_accessor description: ::String
|
302
|
+
attr_accessor target_arn: ::String
|
303
|
+
attr_accessor core_device_execution_status: ("IN_PROGRESS" | "QUEUED" | "FAILED" | "COMPLETED" | "TIMED_OUT" | "CANCELED" | "REJECTED" | "SUCCEEDED")
|
304
|
+
attr_accessor reason: ::String
|
305
|
+
attr_accessor creation_timestamp: ::Time
|
306
|
+
attr_accessor modified_timestamp: ::Time
|
307
|
+
attr_accessor status_details: Types::EffectiveDeploymentStatusDetails
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class EffectiveDeploymentStatusDetails
|
312
|
+
attr_accessor error_stack: ::Array[::String]
|
313
|
+
attr_accessor error_types: ::Array[::String]
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class GetComponentRequest
|
318
|
+
attr_accessor recipe_output_format: ("JSON" | "YAML")
|
319
|
+
attr_accessor arn: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class GetComponentResponse
|
324
|
+
attr_accessor recipe_output_format: ("JSON" | "YAML")
|
325
|
+
attr_accessor recipe: ::String
|
326
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class GetComponentVersionArtifactRequest
|
331
|
+
attr_accessor arn: ::String
|
332
|
+
attr_accessor artifact_name: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class GetComponentVersionArtifactResponse
|
337
|
+
attr_accessor pre_signed_url: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class GetConnectivityInfoRequest
|
342
|
+
attr_accessor thing_name: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class GetConnectivityInfoResponse
|
347
|
+
attr_accessor connectivity_info: ::Array[Types::ConnectivityInfo]
|
348
|
+
attr_accessor message: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class GetCoreDeviceRequest
|
353
|
+
attr_accessor core_device_thing_name: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class GetCoreDeviceResponse
|
358
|
+
attr_accessor core_device_thing_name: ::String
|
359
|
+
attr_accessor core_version: ::String
|
360
|
+
attr_accessor platform: ::String
|
361
|
+
attr_accessor architecture: ::String
|
362
|
+
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
363
|
+
attr_accessor last_status_update_timestamp: ::Time
|
364
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class GetDeploymentRequest
|
369
|
+
attr_accessor deployment_id: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class GetDeploymentResponse
|
374
|
+
attr_accessor target_arn: ::String
|
375
|
+
attr_accessor revision_id: ::String
|
376
|
+
attr_accessor deployment_id: ::String
|
377
|
+
attr_accessor deployment_name: ::String
|
378
|
+
attr_accessor deployment_status: ("ACTIVE" | "COMPLETED" | "CANCELED" | "FAILED" | "INACTIVE")
|
379
|
+
attr_accessor iot_job_id: ::String
|
380
|
+
attr_accessor iot_job_arn: ::String
|
381
|
+
attr_accessor components: ::Hash[::String, Types::ComponentDeploymentSpecification]
|
382
|
+
attr_accessor deployment_policies: Types::DeploymentPolicies
|
383
|
+
attr_accessor iot_job_configuration: Types::DeploymentIoTJobConfiguration
|
384
|
+
attr_accessor creation_timestamp: ::Time
|
385
|
+
attr_accessor is_latest_for_target: bool
|
386
|
+
attr_accessor parent_target_arn: ::String
|
387
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class GetServiceRoleForAccountRequest < Aws::EmptyStructure
|
392
|
+
end
|
393
|
+
|
394
|
+
class GetServiceRoleForAccountResponse
|
395
|
+
attr_accessor associated_at: ::String
|
396
|
+
attr_accessor role_arn: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class InstalledComponent
|
401
|
+
attr_accessor component_name: ::String
|
402
|
+
attr_accessor component_version: ::String
|
403
|
+
attr_accessor lifecycle_state: ("NEW" | "INSTALLED" | "STARTING" | "RUNNING" | "STOPPING" | "ERRORED" | "BROKEN" | "FINISHED")
|
404
|
+
attr_accessor lifecycle_state_details: ::String
|
405
|
+
attr_accessor is_root: bool
|
406
|
+
attr_accessor last_status_change_timestamp: ::Time
|
407
|
+
attr_accessor last_reported_timestamp: ::Time
|
408
|
+
attr_accessor last_installation_source: ::String
|
409
|
+
attr_accessor lifecycle_status_codes: ::Array[::String]
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class InternalServerException
|
414
|
+
attr_accessor message: ::String
|
415
|
+
attr_accessor retry_after_seconds: ::Integer
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class IoTJobAbortConfig
|
420
|
+
attr_accessor criteria_list: ::Array[Types::IoTJobAbortCriteria]
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class IoTJobAbortCriteria
|
425
|
+
attr_accessor failure_type: ("FAILED" | "REJECTED" | "TIMED_OUT" | "ALL")
|
426
|
+
attr_accessor action: ("CANCEL")
|
427
|
+
attr_accessor threshold_percentage: ::Float
|
428
|
+
attr_accessor min_number_of_executed_things: ::Integer
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class IoTJobExecutionsRolloutConfig
|
433
|
+
attr_accessor exponential_rate: Types::IoTJobExponentialRolloutRate
|
434
|
+
attr_accessor maximum_per_minute: ::Integer
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class IoTJobExponentialRolloutRate
|
439
|
+
attr_accessor base_rate_per_minute: ::Integer
|
440
|
+
attr_accessor increment_factor: ::Float
|
441
|
+
attr_accessor rate_increase_criteria: Types::IoTJobRateIncreaseCriteria
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class IoTJobRateIncreaseCriteria
|
446
|
+
attr_accessor number_of_notified_things: ::Integer
|
447
|
+
attr_accessor number_of_succeeded_things: ::Integer
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class IoTJobTimeoutConfig
|
452
|
+
attr_accessor in_progress_timeout_in_minutes: ::Integer
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class LambdaContainerParams
|
457
|
+
attr_accessor memory_size_in_kb: ::Integer
|
458
|
+
attr_accessor mount_ro_sysfs: bool
|
459
|
+
attr_accessor volumes: ::Array[Types::LambdaVolumeMount]
|
460
|
+
attr_accessor devices: ::Array[Types::LambdaDeviceMount]
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class LambdaDeviceMount
|
465
|
+
attr_accessor path: ::String
|
466
|
+
attr_accessor permission: ("ro" | "rw")
|
467
|
+
attr_accessor add_group_owner: bool
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class LambdaEventSource
|
472
|
+
attr_accessor topic: ::String
|
473
|
+
attr_accessor type: ("PUB_SUB" | "IOT_CORE")
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class LambdaExecutionParameters
|
478
|
+
attr_accessor event_sources: ::Array[Types::LambdaEventSource]
|
479
|
+
attr_accessor max_queue_size: ::Integer
|
480
|
+
attr_accessor max_instances_count: ::Integer
|
481
|
+
attr_accessor max_idle_time_in_seconds: ::Integer
|
482
|
+
attr_accessor timeout_in_seconds: ::Integer
|
483
|
+
attr_accessor status_timeout_in_seconds: ::Integer
|
484
|
+
attr_accessor pinned: bool
|
485
|
+
attr_accessor input_payload_encoding_type: ("json" | "binary")
|
486
|
+
attr_accessor exec_args: ::Array[::String]
|
487
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
488
|
+
attr_accessor linux_process_params: Types::LambdaLinuxProcessParams
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class LambdaFunctionRecipeSource
|
493
|
+
attr_accessor lambda_arn: ::String
|
494
|
+
attr_accessor component_name: ::String
|
495
|
+
attr_accessor component_version: ::String
|
496
|
+
attr_accessor component_platforms: ::Array[Types::ComponentPlatform]
|
497
|
+
attr_accessor component_dependencies: ::Hash[::String, Types::ComponentDependencyRequirement]
|
498
|
+
attr_accessor component_lambda_parameters: Types::LambdaExecutionParameters
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class LambdaLinuxProcessParams
|
503
|
+
attr_accessor isolation_mode: ("GreengrassContainer" | "NoContainer")
|
504
|
+
attr_accessor container_params: Types::LambdaContainerParams
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class LambdaVolumeMount
|
509
|
+
attr_accessor source_path: ::String
|
510
|
+
attr_accessor destination_path: ::String
|
511
|
+
attr_accessor permission: ("ro" | "rw")
|
512
|
+
attr_accessor add_group_owner: bool
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class ListClientDevicesAssociatedWithCoreDeviceRequest
|
517
|
+
attr_accessor core_device_thing_name: ::String
|
518
|
+
attr_accessor max_results: ::Integer
|
519
|
+
attr_accessor next_token: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class ListClientDevicesAssociatedWithCoreDeviceResponse
|
524
|
+
attr_accessor associated_client_devices: ::Array[Types::AssociatedClientDevice]
|
525
|
+
attr_accessor next_token: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class ListComponentVersionsRequest
|
530
|
+
attr_accessor arn: ::String
|
531
|
+
attr_accessor max_results: ::Integer
|
532
|
+
attr_accessor next_token: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class ListComponentVersionsResponse
|
537
|
+
attr_accessor component_versions: ::Array[Types::ComponentVersionListItem]
|
538
|
+
attr_accessor next_token: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class ListComponentsRequest
|
543
|
+
attr_accessor scope: ("PRIVATE" | "PUBLIC")
|
544
|
+
attr_accessor max_results: ::Integer
|
545
|
+
attr_accessor next_token: ::String
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class ListComponentsResponse
|
550
|
+
attr_accessor components: ::Array[Types::Component]
|
551
|
+
attr_accessor next_token: ::String
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class ListCoreDevicesRequest
|
556
|
+
attr_accessor thing_group_arn: ::String
|
557
|
+
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
558
|
+
attr_accessor max_results: ::Integer
|
559
|
+
attr_accessor next_token: ::String
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class ListCoreDevicesResponse
|
564
|
+
attr_accessor core_devices: ::Array[Types::CoreDevice]
|
565
|
+
attr_accessor next_token: ::String
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class ListDeploymentsRequest
|
570
|
+
attr_accessor target_arn: ::String
|
571
|
+
attr_accessor history_filter: ("ALL" | "LATEST_ONLY")
|
572
|
+
attr_accessor parent_target_arn: ::String
|
573
|
+
attr_accessor max_results: ::Integer
|
574
|
+
attr_accessor next_token: ::String
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class ListDeploymentsResponse
|
579
|
+
attr_accessor deployments: ::Array[Types::Deployment]
|
580
|
+
attr_accessor next_token: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class ListEffectiveDeploymentsRequest
|
585
|
+
attr_accessor core_device_thing_name: ::String
|
586
|
+
attr_accessor max_results: ::Integer
|
587
|
+
attr_accessor next_token: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class ListEffectiveDeploymentsResponse
|
592
|
+
attr_accessor effective_deployments: ::Array[Types::EffectiveDeployment]
|
593
|
+
attr_accessor next_token: ::String
|
594
|
+
SENSITIVE: []
|
595
|
+
end
|
596
|
+
|
597
|
+
class ListInstalledComponentsRequest
|
598
|
+
attr_accessor core_device_thing_name: ::String
|
599
|
+
attr_accessor max_results: ::Integer
|
600
|
+
attr_accessor next_token: ::String
|
601
|
+
attr_accessor topology_filter: ("ALL" | "ROOT")
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class ListInstalledComponentsResponse
|
606
|
+
attr_accessor installed_components: ::Array[Types::InstalledComponent]
|
607
|
+
attr_accessor next_token: ::String
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
611
|
+
class ListTagsForResourceRequest
|
612
|
+
attr_accessor resource_arn: ::String
|
613
|
+
SENSITIVE: []
|
614
|
+
end
|
615
|
+
|
616
|
+
class ListTagsForResourceResponse
|
617
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class RequestAlreadyInProgressException
|
622
|
+
attr_accessor message: ::String
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class ResolveComponentCandidatesRequest
|
627
|
+
attr_accessor platform: Types::ComponentPlatform
|
628
|
+
attr_accessor component_candidates: ::Array[Types::ComponentCandidate]
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class ResolveComponentCandidatesResponse
|
633
|
+
attr_accessor resolved_component_versions: ::Array[Types::ResolvedComponentVersion]
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class ResolvedComponentVersion
|
638
|
+
attr_accessor arn: ::String
|
639
|
+
attr_accessor component_name: ::String
|
640
|
+
attr_accessor component_version: ::String
|
641
|
+
attr_accessor recipe: ::String
|
642
|
+
attr_accessor vendor_guidance: ("ACTIVE" | "DISCONTINUED" | "DELETED")
|
643
|
+
attr_accessor message: ::String
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class ResourceNotFoundException
|
648
|
+
attr_accessor message: ::String
|
649
|
+
attr_accessor resource_id: ::String
|
650
|
+
attr_accessor resource_type: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class ServiceQuotaExceededException
|
655
|
+
attr_accessor message: ::String
|
656
|
+
attr_accessor resource_id: ::String
|
657
|
+
attr_accessor resource_type: ::String
|
658
|
+
attr_accessor quota_code: ::String
|
659
|
+
attr_accessor service_code: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class SystemResourceLimits
|
664
|
+
attr_accessor memory: ::Integer
|
665
|
+
attr_accessor cpus: ::Float
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class TagResourceRequest
|
670
|
+
attr_accessor resource_arn: ::String
|
671
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class TagResourceResponse < Aws::EmptyStructure
|
676
|
+
end
|
677
|
+
|
678
|
+
class ThrottlingException
|
679
|
+
attr_accessor message: ::String
|
680
|
+
attr_accessor quota_code: ::String
|
681
|
+
attr_accessor service_code: ::String
|
682
|
+
attr_accessor retry_after_seconds: ::Integer
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class UntagResourceRequest
|
687
|
+
attr_accessor resource_arn: ::String
|
688
|
+
attr_accessor tag_keys: ::Array[::String]
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
693
|
+
end
|
694
|
+
|
695
|
+
class UpdateConnectivityInfoRequest
|
696
|
+
attr_accessor thing_name: ::String
|
697
|
+
attr_accessor connectivity_info: ::Array[Types::ConnectivityInfo]
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class UpdateConnectivityInfoResponse
|
702
|
+
attr_accessor version: ::String
|
703
|
+
attr_accessor message: ::String
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
707
|
+
class ValidationException
|
708
|
+
attr_accessor message: ::String
|
709
|
+
attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER")
|
710
|
+
attr_accessor fields: ::Array[Types::ValidationExceptionField]
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class ValidationExceptionField
|
715
|
+
attr_accessor name: ::String
|
716
|
+
attr_accessor message: ::String
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
end
|
720
|
+
end
|