aws-sdk-greengrass 1.94.0 → 1.96.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-greengrass/client.rb +6 -8
- data/lib/aws-sdk-greengrass.rb +1 -1
- data/sig/client.rbs +17 -171
- data/sig/params.rbs +108 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f129606cfd4107c62304a7fb59cdf7437c1f86c5865daf7500b5357cd446fbe2
|
|
4
|
+
data.tar.gz: 69f4e97a6d77fe8d2cd5b9a4295a593f57c4316ceec998b95552c23f8598aac9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02e4f7ba7f4d90410564180c8990e2163402195e65e04583a5382c7b08b4f9cb05341dd19640ffc5ab00092f4a9a328dd20a49af1a59ba5fc455e109b48484c0
|
|
7
|
+
data.tar.gz: 848865f7c50712c88614f7b2b34928174a05d8ab3d01d156f61e347ec45f130ca8066f70431505e4917c2e1730c06f7d801d683102a8a157f0734fec1afc070d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.96.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.95.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.94.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.96.0
|
|
@@ -199,7 +199,7 @@ module Aws::Greengrass
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::Greengrass
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -4251,7 +4249,7 @@ module Aws::Greengrass
|
|
|
4251
4249
|
tracer: tracer
|
|
4252
4250
|
)
|
|
4253
4251
|
context[:gem_name] = 'aws-sdk-greengrass'
|
|
4254
|
-
context[:gem_version] = '1.
|
|
4252
|
+
context[:gem_version] = '1.96.0'
|
|
4255
4253
|
Seahorse::Client::Request.new(handlers, context)
|
|
4256
4254
|
end
|
|
4257
4255
|
|
data/lib/aws-sdk-greengrass.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -118,7 +118,7 @@ module Aws
|
|
|
118
118
|
connector_arn: ::String,
|
|
119
119
|
id: ::String,
|
|
120
120
|
parameters: Hash[::String, ::String]?
|
|
121
|
-
}
|
|
121
|
+
}
|
|
122
122
|
]?
|
|
123
123
|
},
|
|
124
124
|
?name: ::String,
|
|
@@ -142,7 +142,7 @@ module Aws
|
|
|
142
142
|
connector_arn: ::String,
|
|
143
143
|
id: ::String,
|
|
144
144
|
parameters: Hash[::String, ::String]?
|
|
145
|
-
}
|
|
145
|
+
}
|
|
146
146
|
]
|
|
147
147
|
) -> _CreateConnectorDefinitionVersionResponseSuccess
|
|
148
148
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorDefinitionVersionResponseSuccess
|
|
@@ -167,7 +167,7 @@ module Aws
|
|
|
167
167
|
id: ::String,
|
|
168
168
|
sync_shadow: bool?,
|
|
169
169
|
thing_arn: ::String
|
|
170
|
-
}
|
|
170
|
+
}
|
|
171
171
|
]?
|
|
172
172
|
},
|
|
173
173
|
?name: ::String,
|
|
@@ -192,7 +192,7 @@ module Aws
|
|
|
192
192
|
id: ::String,
|
|
193
193
|
sync_shadow: bool?,
|
|
194
194
|
thing_arn: ::String
|
|
195
|
-
}
|
|
195
|
+
}
|
|
196
196
|
]
|
|
197
197
|
) -> _CreateCoreDefinitionVersionResponseSuccess
|
|
198
198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCoreDefinitionVersionResponseSuccess
|
|
@@ -232,7 +232,7 @@ module Aws
|
|
|
232
232
|
id: ::String,
|
|
233
233
|
sync_shadow: bool?,
|
|
234
234
|
thing_arn: ::String
|
|
235
|
-
}
|
|
235
|
+
}
|
|
236
236
|
]?
|
|
237
237
|
},
|
|
238
238
|
?name: ::String,
|
|
@@ -257,7 +257,7 @@ module Aws
|
|
|
257
257
|
id: ::String,
|
|
258
258
|
sync_shadow: bool?,
|
|
259
259
|
thing_arn: ::String
|
|
260
|
-
}
|
|
260
|
+
}
|
|
261
261
|
]
|
|
262
262
|
) -> _CreateDeviceDefinitionVersionResponseSuccess
|
|
263
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeviceDefinitionVersionResponseSuccess
|
|
@@ -276,46 +276,9 @@ module Aws
|
|
|
276
276
|
def create_function_definition: (
|
|
277
277
|
?amzn_client_token: ::String,
|
|
278
278
|
?initial_version: {
|
|
279
|
-
default_config:
|
|
280
|
-
execution: {
|
|
281
|
-
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
282
|
-
run_as: {
|
|
283
|
-
gid: ::Integer?,
|
|
284
|
-
uid: ::Integer?
|
|
285
|
-
}?
|
|
286
|
-
}?
|
|
287
|
-
}?,
|
|
279
|
+
default_config: Params::function_default_config?,
|
|
288
280
|
functions: Array[
|
|
289
|
-
|
|
290
|
-
function_arn: ::String?,
|
|
291
|
-
function_configuration: {
|
|
292
|
-
encoding_type: ("binary" | "json")?,
|
|
293
|
-
environment: {
|
|
294
|
-
access_sysfs: bool?,
|
|
295
|
-
execution: {
|
|
296
|
-
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
297
|
-
run_as: {
|
|
298
|
-
gid: ::Integer?,
|
|
299
|
-
uid: ::Integer?
|
|
300
|
-
}?
|
|
301
|
-
}?,
|
|
302
|
-
resource_access_policies: Array[
|
|
303
|
-
{
|
|
304
|
-
permission: ("ro" | "rw")?,
|
|
305
|
-
resource_id: ::String
|
|
306
|
-
},
|
|
307
|
-
]?,
|
|
308
|
-
variables: Hash[::String, ::String]?
|
|
309
|
-
}?,
|
|
310
|
-
exec_args: ::String?,
|
|
311
|
-
executable: ::String?,
|
|
312
|
-
memory_size: ::Integer?,
|
|
313
|
-
pinned: bool?,
|
|
314
|
-
timeout: ::Integer?,
|
|
315
|
-
function_runtime_override: ::String?
|
|
316
|
-
}?,
|
|
317
|
-
id: ::String
|
|
318
|
-
},
|
|
281
|
+
Params::function
|
|
319
282
|
]?
|
|
320
283
|
},
|
|
321
284
|
?name: ::String,
|
|
@@ -333,47 +296,10 @@ module Aws
|
|
|
333
296
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Greengrass/Client.html#create_function_definition_version-instance_method
|
|
334
297
|
def create_function_definition_version: (
|
|
335
298
|
?amzn_client_token: ::String,
|
|
336
|
-
?default_config:
|
|
337
|
-
execution: {
|
|
338
|
-
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
339
|
-
run_as: {
|
|
340
|
-
gid: ::Integer?,
|
|
341
|
-
uid: ::Integer?
|
|
342
|
-
}?
|
|
343
|
-
}?
|
|
344
|
-
},
|
|
299
|
+
?default_config: Params::function_default_config,
|
|
345
300
|
function_definition_id: ::String,
|
|
346
301
|
?functions: Array[
|
|
347
|
-
|
|
348
|
-
function_arn: ::String?,
|
|
349
|
-
function_configuration: {
|
|
350
|
-
encoding_type: ("binary" | "json")?,
|
|
351
|
-
environment: {
|
|
352
|
-
access_sysfs: bool?,
|
|
353
|
-
execution: {
|
|
354
|
-
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
355
|
-
run_as: {
|
|
356
|
-
gid: ::Integer?,
|
|
357
|
-
uid: ::Integer?
|
|
358
|
-
}?
|
|
359
|
-
}?,
|
|
360
|
-
resource_access_policies: Array[
|
|
361
|
-
{
|
|
362
|
-
permission: ("ro" | "rw")?,
|
|
363
|
-
resource_id: ::String
|
|
364
|
-
},
|
|
365
|
-
]?,
|
|
366
|
-
variables: Hash[::String, ::String]?
|
|
367
|
-
}?,
|
|
368
|
-
exec_args: ::String?,
|
|
369
|
-
executable: ::String?,
|
|
370
|
-
memory_size: ::Integer?,
|
|
371
|
-
pinned: bool?,
|
|
372
|
-
timeout: ::Integer?,
|
|
373
|
-
function_runtime_override: ::String?
|
|
374
|
-
}?,
|
|
375
|
-
id: ::String
|
|
376
|
-
},
|
|
302
|
+
Params::function
|
|
377
303
|
]
|
|
378
304
|
) -> _CreateFunctionDefinitionVersionResponseSuccess
|
|
379
305
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionDefinitionVersionResponseSuccess
|
|
@@ -458,7 +384,7 @@ module Aws
|
|
|
458
384
|
level: ("DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL"),
|
|
459
385
|
space: ::Integer?,
|
|
460
386
|
type: ("FileSystem" | "AWSCloudWatch")
|
|
461
|
-
}
|
|
387
|
+
}
|
|
462
388
|
]?
|
|
463
389
|
},
|
|
464
390
|
?name: ::String,
|
|
@@ -484,7 +410,7 @@ module Aws
|
|
|
484
410
|
level: ("DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL"),
|
|
485
411
|
space: ::Integer?,
|
|
486
412
|
type: ("FileSystem" | "AWSCloudWatch")
|
|
487
|
-
}
|
|
413
|
+
}
|
|
488
414
|
]
|
|
489
415
|
) -> _CreateLoggerDefinitionVersionResponseSuccess
|
|
490
416
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoggerDefinitionVersionResponseSuccess
|
|
@@ -504,47 +430,7 @@ module Aws
|
|
|
504
430
|
?amzn_client_token: ::String,
|
|
505
431
|
?initial_version: {
|
|
506
432
|
resources: Array[
|
|
507
|
-
|
|
508
|
-
id: ::String,
|
|
509
|
-
name: ::String,
|
|
510
|
-
resource_data_container: {
|
|
511
|
-
local_device_resource_data: {
|
|
512
|
-
group_owner_setting: {
|
|
513
|
-
auto_add_group_owner: bool?,
|
|
514
|
-
group_owner: ::String?
|
|
515
|
-
}?,
|
|
516
|
-
source_path: ::String?
|
|
517
|
-
}?,
|
|
518
|
-
local_volume_resource_data: {
|
|
519
|
-
destination_path: ::String?,
|
|
520
|
-
group_owner_setting: {
|
|
521
|
-
auto_add_group_owner: bool?,
|
|
522
|
-
group_owner: ::String?
|
|
523
|
-
}?,
|
|
524
|
-
source_path: ::String?
|
|
525
|
-
}?,
|
|
526
|
-
s3_machine_learning_model_resource_data: {
|
|
527
|
-
destination_path: ::String?,
|
|
528
|
-
owner_setting: {
|
|
529
|
-
group_owner: ::String,
|
|
530
|
-
group_permission: ("ro" | "rw")
|
|
531
|
-
}?,
|
|
532
|
-
s3_uri: ::String?
|
|
533
|
-
}?,
|
|
534
|
-
sage_maker_machine_learning_model_resource_data: {
|
|
535
|
-
destination_path: ::String?,
|
|
536
|
-
owner_setting: {
|
|
537
|
-
group_owner: ::String,
|
|
538
|
-
group_permission: ("ro" | "rw")
|
|
539
|
-
}?,
|
|
540
|
-
sage_maker_job_arn: ::String?
|
|
541
|
-
}?,
|
|
542
|
-
secrets_manager_secret_resource_data: {
|
|
543
|
-
arn: ::String?,
|
|
544
|
-
additional_staging_labels_to_download: Array[::String]?
|
|
545
|
-
}?
|
|
546
|
-
}
|
|
547
|
-
},
|
|
433
|
+
Params::resource
|
|
548
434
|
]?
|
|
549
435
|
},
|
|
550
436
|
?name: ::String,
|
|
@@ -564,47 +450,7 @@ module Aws
|
|
|
564
450
|
?amzn_client_token: ::String,
|
|
565
451
|
resource_definition_id: ::String,
|
|
566
452
|
?resources: Array[
|
|
567
|
-
|
|
568
|
-
id: ::String,
|
|
569
|
-
name: ::String,
|
|
570
|
-
resource_data_container: {
|
|
571
|
-
local_device_resource_data: {
|
|
572
|
-
group_owner_setting: {
|
|
573
|
-
auto_add_group_owner: bool?,
|
|
574
|
-
group_owner: ::String?
|
|
575
|
-
}?,
|
|
576
|
-
source_path: ::String?
|
|
577
|
-
}?,
|
|
578
|
-
local_volume_resource_data: {
|
|
579
|
-
destination_path: ::String?,
|
|
580
|
-
group_owner_setting: {
|
|
581
|
-
auto_add_group_owner: bool?,
|
|
582
|
-
group_owner: ::String?
|
|
583
|
-
}?,
|
|
584
|
-
source_path: ::String?
|
|
585
|
-
}?,
|
|
586
|
-
s3_machine_learning_model_resource_data: {
|
|
587
|
-
destination_path: ::String?,
|
|
588
|
-
owner_setting: {
|
|
589
|
-
group_owner: ::String,
|
|
590
|
-
group_permission: ("ro" | "rw")
|
|
591
|
-
}?,
|
|
592
|
-
s3_uri: ::String?
|
|
593
|
-
}?,
|
|
594
|
-
sage_maker_machine_learning_model_resource_data: {
|
|
595
|
-
destination_path: ::String?,
|
|
596
|
-
owner_setting: {
|
|
597
|
-
group_owner: ::String,
|
|
598
|
-
group_permission: ("ro" | "rw")
|
|
599
|
-
}?,
|
|
600
|
-
sage_maker_job_arn: ::String?
|
|
601
|
-
}?,
|
|
602
|
-
secrets_manager_secret_resource_data: {
|
|
603
|
-
arn: ::String?,
|
|
604
|
-
additional_staging_labels_to_download: Array[::String]?
|
|
605
|
-
}?
|
|
606
|
-
}
|
|
607
|
-
},
|
|
453
|
+
Params::resource
|
|
608
454
|
]
|
|
609
455
|
) -> _CreateResourceDefinitionVersionResponseSuccess
|
|
610
456
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceDefinitionVersionResponseSuccess
|
|
@@ -647,7 +493,7 @@ module Aws
|
|
|
647
493
|
source: ::String,
|
|
648
494
|
subject: ::String,
|
|
649
495
|
target: ::String
|
|
650
|
-
}
|
|
496
|
+
}
|
|
651
497
|
]?
|
|
652
498
|
},
|
|
653
499
|
?name: ::String,
|
|
@@ -672,7 +518,7 @@ module Aws
|
|
|
672
518
|
source: ::String,
|
|
673
519
|
subject: ::String,
|
|
674
520
|
target: ::String
|
|
675
|
-
}
|
|
521
|
+
}
|
|
676
522
|
]
|
|
677
523
|
) -> _CreateSubscriptionDefinitionVersionResponseSuccess
|
|
678
524
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubscriptionDefinitionVersionResponseSuccess
|
|
@@ -1452,7 +1298,7 @@ module Aws
|
|
|
1452
1298
|
id: ::String?,
|
|
1453
1299
|
metadata: ::String?,
|
|
1454
1300
|
port_number: ::Integer?
|
|
1455
|
-
}
|
|
1301
|
+
}
|
|
1456
1302
|
],
|
|
1457
1303
|
thing_name: ::String
|
|
1458
1304
|
) -> _UpdateConnectivityInfoResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
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 Greengrass
|
|
10
|
+
module Params
|
|
11
|
+
type function_default_config = {
|
|
12
|
+
execution: {
|
|
13
|
+
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
14
|
+
run_as: {
|
|
15
|
+
gid: ::Integer?,
|
|
16
|
+
uid: ::Integer?
|
|
17
|
+
}?
|
|
18
|
+
}?
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
type function_configuration_environment = {
|
|
22
|
+
access_sysfs: bool?,
|
|
23
|
+
execution: {
|
|
24
|
+
isolation_mode: ("GreengrassContainer" | "NoContainer")?,
|
|
25
|
+
run_as: {
|
|
26
|
+
gid: ::Integer?,
|
|
27
|
+
uid: ::Integer?
|
|
28
|
+
}?
|
|
29
|
+
}?,
|
|
30
|
+
resource_access_policies: Array[
|
|
31
|
+
{
|
|
32
|
+
permission: ("ro" | "rw")?,
|
|
33
|
+
resource_id: ::String
|
|
34
|
+
}
|
|
35
|
+
]?,
|
|
36
|
+
variables: Hash[::String, ::String]?
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
type function_configuration = {
|
|
40
|
+
encoding_type: ("binary" | "json")?,
|
|
41
|
+
environment: Params::function_configuration_environment?,
|
|
42
|
+
exec_args: ::String?,
|
|
43
|
+
executable: ::String?,
|
|
44
|
+
memory_size: ::Integer?,
|
|
45
|
+
pinned: bool?,
|
|
46
|
+
timeout: ::Integer?,
|
|
47
|
+
function_runtime_override: ::String?
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
type function = {
|
|
51
|
+
function_arn: ::String?,
|
|
52
|
+
function_configuration: Params::function_configuration?,
|
|
53
|
+
id: ::String
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
type local_volume_resource_data = {
|
|
57
|
+
destination_path: ::String?,
|
|
58
|
+
group_owner_setting: {
|
|
59
|
+
auto_add_group_owner: bool?,
|
|
60
|
+
group_owner: ::String?
|
|
61
|
+
}?,
|
|
62
|
+
source_path: ::String?
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
type s3_machine_learning_model_resource_data = {
|
|
66
|
+
destination_path: ::String?,
|
|
67
|
+
owner_setting: {
|
|
68
|
+
group_owner: ::String,
|
|
69
|
+
group_permission: ("ro" | "rw")
|
|
70
|
+
}?,
|
|
71
|
+
s3_uri: ::String?
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
type sage_maker_machine_learning_model_resource_data = {
|
|
75
|
+
destination_path: ::String?,
|
|
76
|
+
owner_setting: {
|
|
77
|
+
group_owner: ::String,
|
|
78
|
+
group_permission: ("ro" | "rw")
|
|
79
|
+
}?,
|
|
80
|
+
sage_maker_job_arn: ::String?
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
type resource_data_container = {
|
|
84
|
+
local_device_resource_data: {
|
|
85
|
+
group_owner_setting: {
|
|
86
|
+
auto_add_group_owner: bool?,
|
|
87
|
+
group_owner: ::String?
|
|
88
|
+
}?,
|
|
89
|
+
source_path: ::String?
|
|
90
|
+
}?,
|
|
91
|
+
local_volume_resource_data: Params::local_volume_resource_data?,
|
|
92
|
+
s3_machine_learning_model_resource_data: Params::s3_machine_learning_model_resource_data?,
|
|
93
|
+
sage_maker_machine_learning_model_resource_data: Params::sage_maker_machine_learning_model_resource_data?,
|
|
94
|
+
secrets_manager_secret_resource_data: {
|
|
95
|
+
arn: ::String?,
|
|
96
|
+
additional_staging_labels_to_download: Array[::String]?
|
|
97
|
+
}?
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
type resource = {
|
|
101
|
+
id: ::String,
|
|
102
|
+
name: ::String,
|
|
103
|
+
resource_data_container: Params::resource_data_container
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-greengrass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.96.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-greengrass/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|