aws-sdk-iotsitewise 1.102.0 → 1.104.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-iotsitewise/client.rb +6 -8
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- data/sig/client.rbs +25 -545
- data/sig/params.rbs +158 -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: 9c0a4013a6e85fa6bd535b86a35dd99b4f9ea82068259a828ae21d6a8a81a8ab
|
|
4
|
+
data.tar.gz: 93a671583ff86b864605a856033bd5eb5a5c17b2fb3139942c0d3adab4a0eb87
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64e787a9c45efeaa7ce9061cef6832c51b4e686fa66ba8d411c1595dd650d6586bbfd22108f919ecd047fcab04963c8c25d0f98d869cd08a50bf283a3e45c071
|
|
7
|
+
data.tar.gz: 15c97334dad02748b82066e7a4f107092d0e08e3f75a786d1907e2daa628c56f54aa9bd5506a84f8c54a339be85564bbb4c16939306b830e205db28a540bb164
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.104.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.103.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.102.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.104.0
|
|
@@ -201,7 +201,7 @@ module Aws::IoTSiteWise
|
|
|
201
201
|
# the required types.
|
|
202
202
|
#
|
|
203
203
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
204
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
204
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
205
205
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
206
206
|
#
|
|
207
207
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -334,17 +334,15 @@ module Aws::IoTSiteWise
|
|
|
334
334
|
# @option options [String] :retry_mode ("legacy")
|
|
335
335
|
# Specifies which retry algorithm to use. Values are:
|
|
336
336
|
#
|
|
337
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
338
|
-
# no retry mode is provided.
|
|
337
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
338
|
+
# value if no retry mode is provided.
|
|
339
339
|
#
|
|
340
340
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
341
341
|
# This includes support for retry quotas, which limit the number of
|
|
342
342
|
# unsuccessful retries a client can make.
|
|
343
343
|
#
|
|
344
|
-
# * `adaptive` -
|
|
345
|
-
#
|
|
346
|
-
# throttling. This is a provisional mode that may change behavior
|
|
347
|
-
# in the future.
|
|
344
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
345
|
+
# `standard` mode along with automatic client side throttling.
|
|
348
346
|
#
|
|
349
347
|
# @option options [String] :sdk_ua_app_id
|
|
350
348
|
# A unique and opaque application ID that is appended to the
|
|
@@ -8346,7 +8344,7 @@ module Aws::IoTSiteWise
|
|
|
8346
8344
|
tracer: tracer
|
|
8347
8345
|
)
|
|
8348
8346
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
|
8349
|
-
context[:gem_version] = '1.
|
|
8347
|
+
context[:gem_version] = '1.104.0'
|
|
8350
8348
|
Seahorse::Client::Request.new(handlers, context)
|
|
8351
8349
|
end
|
|
8352
8350
|
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -144,7 +144,7 @@ module Aws
|
|
|
144
144
|
end_date: ::Time,
|
|
145
145
|
qualities: Array[("GOOD" | "BAD" | "UNCERTAIN")]?,
|
|
146
146
|
time_ordering: ("ASCENDING" | "DESCENDING")?
|
|
147
|
-
}
|
|
147
|
+
}
|
|
148
148
|
],
|
|
149
149
|
?next_token: ::String,
|
|
150
150
|
?max_results: ::Integer
|
|
@@ -166,7 +166,7 @@ module Aws
|
|
|
166
166
|
asset_id: ::String?,
|
|
167
167
|
property_id: ::String?,
|
|
168
168
|
property_alias: ::String?
|
|
169
|
-
}
|
|
169
|
+
}
|
|
170
170
|
],
|
|
171
171
|
?next_token: ::String
|
|
172
172
|
) -> _BatchGetAssetPropertyValueResponseSuccess
|
|
@@ -191,7 +191,7 @@ module Aws
|
|
|
191
191
|
end_date: ::Time?,
|
|
192
192
|
qualities: Array[("GOOD" | "BAD" | "UNCERTAIN")]?,
|
|
193
193
|
time_ordering: ("ASCENDING" | "DESCENDING")?
|
|
194
|
-
}
|
|
194
|
+
}
|
|
195
195
|
],
|
|
196
196
|
?next_token: ::String,
|
|
197
197
|
?max_results: ::Integer
|
|
@@ -227,9 +227,9 @@ module Aws
|
|
|
227
227
|
offset_in_nanos: ::Integer?
|
|
228
228
|
},
|
|
229
229
|
quality: ("GOOD" | "BAD" | "UNCERTAIN")?
|
|
230
|
-
}
|
|
230
|
+
}
|
|
231
231
|
]
|
|
232
|
-
}
|
|
232
|
+
}
|
|
233
233
|
]
|
|
234
234
|
) -> _BatchPutAssetPropertyValueResponseSuccess
|
|
235
235
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutAssetPropertyValueResponseSuccess
|
|
@@ -241,28 +241,8 @@ module Aws
|
|
|
241
241
|
end
|
|
242
242
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#create_access_policy-instance_method
|
|
243
243
|
def create_access_policy: (
|
|
244
|
-
access_policy_identity:
|
|
245
|
-
|
|
246
|
-
id: ::String
|
|
247
|
-
}?,
|
|
248
|
-
group: {
|
|
249
|
-
id: ::String
|
|
250
|
-
}?,
|
|
251
|
-
iam_user: {
|
|
252
|
-
arn: ::String
|
|
253
|
-
}?,
|
|
254
|
-
iam_role: {
|
|
255
|
-
arn: ::String
|
|
256
|
-
}?
|
|
257
|
-
},
|
|
258
|
-
access_policy_resource: {
|
|
259
|
-
portal: {
|
|
260
|
-
id: ::String
|
|
261
|
-
}?,
|
|
262
|
-
project: {
|
|
263
|
-
id: ::String
|
|
264
|
-
}?
|
|
265
|
-
},
|
|
244
|
+
access_policy_identity: Params::identity,
|
|
245
|
+
access_policy_resource: Params::resource,
|
|
266
246
|
access_policy_permission: ("ADMINISTRATOR" | "VIEWER"),
|
|
267
247
|
?client_token: ::String,
|
|
268
248
|
?tags: Hash[::String, ::String]
|
|
@@ -301,77 +281,7 @@ module Aws
|
|
|
301
281
|
?asset_model_external_id: ::String,
|
|
302
282
|
?asset_model_description: ::String,
|
|
303
283
|
?asset_model_properties: Array[
|
|
304
|
-
|
|
305
|
-
id: ::String?,
|
|
306
|
-
external_id: ::String?,
|
|
307
|
-
name: ::String,
|
|
308
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
309
|
-
data_type_spec: ::String?,
|
|
310
|
-
unit: ::String?,
|
|
311
|
-
type: {
|
|
312
|
-
attribute: {
|
|
313
|
-
default_value: ::String?
|
|
314
|
-
}?,
|
|
315
|
-
measurement: {
|
|
316
|
-
processing_config: {
|
|
317
|
-
forwarding_config: {
|
|
318
|
-
state: ("DISABLED" | "ENABLED")
|
|
319
|
-
}
|
|
320
|
-
}?
|
|
321
|
-
}?,
|
|
322
|
-
transform: {
|
|
323
|
-
expression: ::String,
|
|
324
|
-
variables: Array[
|
|
325
|
-
{
|
|
326
|
-
name: ::String,
|
|
327
|
-
value: {
|
|
328
|
-
property_id: ::String?,
|
|
329
|
-
hierarchy_id: ::String?,
|
|
330
|
-
property_path: Array[
|
|
331
|
-
{
|
|
332
|
-
id: ::String?,
|
|
333
|
-
name: ::String?
|
|
334
|
-
},
|
|
335
|
-
]?
|
|
336
|
-
}
|
|
337
|
-
},
|
|
338
|
-
],
|
|
339
|
-
processing_config: {
|
|
340
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
341
|
-
forwarding_config: {
|
|
342
|
-
state: ("DISABLED" | "ENABLED")
|
|
343
|
-
}?
|
|
344
|
-
}?
|
|
345
|
-
}?,
|
|
346
|
-
metric: {
|
|
347
|
-
expression: ::String?,
|
|
348
|
-
variables: Array[
|
|
349
|
-
{
|
|
350
|
-
name: ::String,
|
|
351
|
-
value: {
|
|
352
|
-
property_id: ::String?,
|
|
353
|
-
hierarchy_id: ::String?,
|
|
354
|
-
property_path: Array[
|
|
355
|
-
{
|
|
356
|
-
id: ::String?,
|
|
357
|
-
name: ::String?
|
|
358
|
-
},
|
|
359
|
-
]?
|
|
360
|
-
}
|
|
361
|
-
},
|
|
362
|
-
]?,
|
|
363
|
-
window: {
|
|
364
|
-
tumbling: {
|
|
365
|
-
interval: ::String,
|
|
366
|
-
offset: ::String?
|
|
367
|
-
}?
|
|
368
|
-
},
|
|
369
|
-
processing_config: {
|
|
370
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
371
|
-
}?
|
|
372
|
-
}?
|
|
373
|
-
}
|
|
374
|
-
},
|
|
284
|
+
Params::asset_model_property_definition
|
|
375
285
|
],
|
|
376
286
|
?asset_model_hierarchies: Array[
|
|
377
287
|
{
|
|
@@ -379,7 +289,7 @@ module Aws
|
|
|
379
289
|
external_id: ::String?,
|
|
380
290
|
name: ::String,
|
|
381
291
|
child_asset_model_id: ::String
|
|
382
|
-
}
|
|
292
|
+
}
|
|
383
293
|
],
|
|
384
294
|
?asset_model_composite_models: Array[
|
|
385
295
|
{
|
|
@@ -389,79 +299,9 @@ module Aws
|
|
|
389
299
|
description: ::String?,
|
|
390
300
|
type: ::String,
|
|
391
301
|
properties: Array[
|
|
392
|
-
|
|
393
|
-
id: ::String?,
|
|
394
|
-
external_id: ::String?,
|
|
395
|
-
name: ::String,
|
|
396
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
397
|
-
data_type_spec: ::String?,
|
|
398
|
-
unit: ::String?,
|
|
399
|
-
type: {
|
|
400
|
-
attribute: {
|
|
401
|
-
default_value: ::String?
|
|
402
|
-
}?,
|
|
403
|
-
measurement: {
|
|
404
|
-
processing_config: {
|
|
405
|
-
forwarding_config: {
|
|
406
|
-
state: ("DISABLED" | "ENABLED")
|
|
407
|
-
}
|
|
408
|
-
}?
|
|
409
|
-
}?,
|
|
410
|
-
transform: {
|
|
411
|
-
expression: ::String,
|
|
412
|
-
variables: Array[
|
|
413
|
-
{
|
|
414
|
-
name: ::String,
|
|
415
|
-
value: {
|
|
416
|
-
property_id: ::String?,
|
|
417
|
-
hierarchy_id: ::String?,
|
|
418
|
-
property_path: Array[
|
|
419
|
-
{
|
|
420
|
-
id: ::String?,
|
|
421
|
-
name: ::String?
|
|
422
|
-
},
|
|
423
|
-
]?
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
],
|
|
427
|
-
processing_config: {
|
|
428
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
429
|
-
forwarding_config: {
|
|
430
|
-
state: ("DISABLED" | "ENABLED")
|
|
431
|
-
}?
|
|
432
|
-
}?
|
|
433
|
-
}?,
|
|
434
|
-
metric: {
|
|
435
|
-
expression: ::String?,
|
|
436
|
-
variables: Array[
|
|
437
|
-
{
|
|
438
|
-
name: ::String,
|
|
439
|
-
value: {
|
|
440
|
-
property_id: ::String?,
|
|
441
|
-
hierarchy_id: ::String?,
|
|
442
|
-
property_path: Array[
|
|
443
|
-
{
|
|
444
|
-
id: ::String?,
|
|
445
|
-
name: ::String?
|
|
446
|
-
},
|
|
447
|
-
]?
|
|
448
|
-
}
|
|
449
|
-
},
|
|
450
|
-
]?,
|
|
451
|
-
window: {
|
|
452
|
-
tumbling: {
|
|
453
|
-
interval: ::String,
|
|
454
|
-
offset: ::String?
|
|
455
|
-
}?
|
|
456
|
-
},
|
|
457
|
-
processing_config: {
|
|
458
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
459
|
-
}?
|
|
460
|
-
}?
|
|
461
|
-
}
|
|
462
|
-
},
|
|
302
|
+
Params::asset_model_property_definition
|
|
463
303
|
]?
|
|
464
|
-
}
|
|
304
|
+
}
|
|
465
305
|
],
|
|
466
306
|
?client_token: ::String,
|
|
467
307
|
?tags: Hash[::String, ::String]
|
|
@@ -486,77 +326,7 @@ module Aws
|
|
|
486
326
|
?client_token: ::String,
|
|
487
327
|
?composed_asset_model_id: ::String,
|
|
488
328
|
?asset_model_composite_model_properties: Array[
|
|
489
|
-
|
|
490
|
-
id: ::String?,
|
|
491
|
-
external_id: ::String?,
|
|
492
|
-
name: ::String,
|
|
493
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
494
|
-
data_type_spec: ::String?,
|
|
495
|
-
unit: ::String?,
|
|
496
|
-
type: {
|
|
497
|
-
attribute: {
|
|
498
|
-
default_value: ::String?
|
|
499
|
-
}?,
|
|
500
|
-
measurement: {
|
|
501
|
-
processing_config: {
|
|
502
|
-
forwarding_config: {
|
|
503
|
-
state: ("DISABLED" | "ENABLED")
|
|
504
|
-
}
|
|
505
|
-
}?
|
|
506
|
-
}?,
|
|
507
|
-
transform: {
|
|
508
|
-
expression: ::String,
|
|
509
|
-
variables: Array[
|
|
510
|
-
{
|
|
511
|
-
name: ::String,
|
|
512
|
-
value: {
|
|
513
|
-
property_id: ::String?,
|
|
514
|
-
hierarchy_id: ::String?,
|
|
515
|
-
property_path: Array[
|
|
516
|
-
{
|
|
517
|
-
id: ::String?,
|
|
518
|
-
name: ::String?
|
|
519
|
-
},
|
|
520
|
-
]?
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
],
|
|
524
|
-
processing_config: {
|
|
525
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
526
|
-
forwarding_config: {
|
|
527
|
-
state: ("DISABLED" | "ENABLED")
|
|
528
|
-
}?
|
|
529
|
-
}?
|
|
530
|
-
}?,
|
|
531
|
-
metric: {
|
|
532
|
-
expression: ::String?,
|
|
533
|
-
variables: Array[
|
|
534
|
-
{
|
|
535
|
-
name: ::String,
|
|
536
|
-
value: {
|
|
537
|
-
property_id: ::String?,
|
|
538
|
-
hierarchy_id: ::String?,
|
|
539
|
-
property_path: Array[
|
|
540
|
-
{
|
|
541
|
-
id: ::String?,
|
|
542
|
-
name: ::String?
|
|
543
|
-
},
|
|
544
|
-
]?
|
|
545
|
-
}
|
|
546
|
-
},
|
|
547
|
-
]?,
|
|
548
|
-
window: {
|
|
549
|
-
tumbling: {
|
|
550
|
-
interval: ::String,
|
|
551
|
-
offset: ::String?
|
|
552
|
-
}?
|
|
553
|
-
},
|
|
554
|
-
processing_config: {
|
|
555
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
556
|
-
}?
|
|
557
|
-
}?
|
|
558
|
-
}
|
|
559
|
-
},
|
|
329
|
+
Params::asset_model_property_definition
|
|
560
330
|
],
|
|
561
331
|
?if_match: ::String,
|
|
562
332
|
?if_none_match: ::String,
|
|
@@ -579,7 +349,7 @@ module Aws
|
|
|
579
349
|
bucket: ::String,
|
|
580
350
|
key: ::String,
|
|
581
351
|
version_id: ::String?
|
|
582
|
-
}
|
|
352
|
+
}
|
|
583
353
|
],
|
|
584
354
|
error_report_location: {
|
|
585
355
|
bucket: ::String,
|
|
@@ -615,19 +385,7 @@ module Aws
|
|
|
615
385
|
result_property: ::String
|
|
616
386
|
}?
|
|
617
387
|
},
|
|
618
|
-
computation_model_data_binding: Hash[::String,
|
|
619
|
-
asset_model_property: {
|
|
620
|
-
asset_model_id: ::String,
|
|
621
|
-
property_id: ::String
|
|
622
|
-
}?,
|
|
623
|
-
asset_property: {
|
|
624
|
-
asset_id: ::String,
|
|
625
|
-
property_id: ::String
|
|
626
|
-
}?,
|
|
627
|
-
list: Array[
|
|
628
|
-
untyped,
|
|
629
|
-
]?
|
|
630
|
-
}],
|
|
388
|
+
computation_model_data_binding: Hash[::String, Params::computation_model_data_binding_value],
|
|
631
389
|
?client_token: ::String,
|
|
632
390
|
?tags: Hash[::String, ::String]
|
|
633
391
|
) -> _CreateComputationModelResponseSuccess
|
|
@@ -660,16 +418,7 @@ module Aws
|
|
|
660
418
|
?dataset_id: ::String,
|
|
661
419
|
dataset_name: ::String,
|
|
662
420
|
?dataset_description: ::String,
|
|
663
|
-
dataset_source:
|
|
664
|
-
source_type: ("KENDRA"),
|
|
665
|
-
source_format: ("KNOWLEDGE_BASE"),
|
|
666
|
-
source_detail: {
|
|
667
|
-
kendra: {
|
|
668
|
-
knowledge_base_arn: ::String,
|
|
669
|
-
role_arn: ::String
|
|
670
|
-
}?
|
|
671
|
-
}?
|
|
672
|
-
},
|
|
421
|
+
dataset_source: Params::dataset_source,
|
|
673
422
|
?client_token: ::String,
|
|
674
423
|
?tags: Hash[::String, ::String]
|
|
675
424
|
) -> _CreateDatasetResponseSuccess
|
|
@@ -1778,7 +1527,7 @@ module Aws
|
|
|
1778
1527
|
{
|
|
1779
1528
|
asset_model_property_id: ::String,
|
|
1780
1529
|
interface_asset_model_property_id: ::String
|
|
1781
|
-
}
|
|
1530
|
+
}
|
|
1782
1531
|
]?
|
|
1783
1532
|
},
|
|
1784
1533
|
?client_token: ::String
|
|
@@ -1869,28 +1618,8 @@ module Aws
|
|
|
1869
1618
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#update_access_policy-instance_method
|
|
1870
1619
|
def update_access_policy: (
|
|
1871
1620
|
access_policy_id: ::String,
|
|
1872
|
-
access_policy_identity:
|
|
1873
|
-
|
|
1874
|
-
id: ::String
|
|
1875
|
-
}?,
|
|
1876
|
-
group: {
|
|
1877
|
-
id: ::String
|
|
1878
|
-
}?,
|
|
1879
|
-
iam_user: {
|
|
1880
|
-
arn: ::String
|
|
1881
|
-
}?,
|
|
1882
|
-
iam_role: {
|
|
1883
|
-
arn: ::String
|
|
1884
|
-
}?
|
|
1885
|
-
},
|
|
1886
|
-
access_policy_resource: {
|
|
1887
|
-
portal: {
|
|
1888
|
-
id: ::String
|
|
1889
|
-
}?,
|
|
1890
|
-
project: {
|
|
1891
|
-
id: ::String
|
|
1892
|
-
}?
|
|
1893
|
-
},
|
|
1621
|
+
access_policy_identity: Params::identity,
|
|
1622
|
+
access_policy_resource: Params::resource,
|
|
1894
1623
|
access_policy_permission: ("ADMINISTRATOR" | "VIEWER"),
|
|
1895
1624
|
?client_token: ::String
|
|
1896
1625
|
) -> _UpdateAccessPolicyResponseSuccess
|
|
@@ -1921,83 +1650,7 @@ module Aws
|
|
|
1921
1650
|
asset_model_name: ::String,
|
|
1922
1651
|
?asset_model_description: ::String,
|
|
1923
1652
|
?asset_model_properties: Array[
|
|
1924
|
-
|
|
1925
|
-
id: ::String?,
|
|
1926
|
-
external_id: ::String?,
|
|
1927
|
-
name: ::String,
|
|
1928
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
1929
|
-
data_type_spec: ::String?,
|
|
1930
|
-
unit: ::String?,
|
|
1931
|
-
type: {
|
|
1932
|
-
attribute: {
|
|
1933
|
-
default_value: ::String?
|
|
1934
|
-
}?,
|
|
1935
|
-
measurement: {
|
|
1936
|
-
processing_config: {
|
|
1937
|
-
forwarding_config: {
|
|
1938
|
-
state: ("DISABLED" | "ENABLED")
|
|
1939
|
-
}
|
|
1940
|
-
}?
|
|
1941
|
-
}?,
|
|
1942
|
-
transform: {
|
|
1943
|
-
expression: ::String,
|
|
1944
|
-
variables: Array[
|
|
1945
|
-
{
|
|
1946
|
-
name: ::String,
|
|
1947
|
-
value: {
|
|
1948
|
-
property_id: ::String?,
|
|
1949
|
-
hierarchy_id: ::String?,
|
|
1950
|
-
property_path: Array[
|
|
1951
|
-
{
|
|
1952
|
-
id: ::String?,
|
|
1953
|
-
name: ::String?
|
|
1954
|
-
},
|
|
1955
|
-
]?
|
|
1956
|
-
}
|
|
1957
|
-
},
|
|
1958
|
-
],
|
|
1959
|
-
processing_config: {
|
|
1960
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
1961
|
-
forwarding_config: {
|
|
1962
|
-
state: ("DISABLED" | "ENABLED")
|
|
1963
|
-
}?
|
|
1964
|
-
}?
|
|
1965
|
-
}?,
|
|
1966
|
-
metric: {
|
|
1967
|
-
expression: ::String?,
|
|
1968
|
-
variables: Array[
|
|
1969
|
-
{
|
|
1970
|
-
name: ::String,
|
|
1971
|
-
value: {
|
|
1972
|
-
property_id: ::String?,
|
|
1973
|
-
hierarchy_id: ::String?,
|
|
1974
|
-
property_path: Array[
|
|
1975
|
-
{
|
|
1976
|
-
id: ::String?,
|
|
1977
|
-
name: ::String?
|
|
1978
|
-
},
|
|
1979
|
-
]?
|
|
1980
|
-
}
|
|
1981
|
-
},
|
|
1982
|
-
]?,
|
|
1983
|
-
window: {
|
|
1984
|
-
tumbling: {
|
|
1985
|
-
interval: ::String,
|
|
1986
|
-
offset: ::String?
|
|
1987
|
-
}?
|
|
1988
|
-
},
|
|
1989
|
-
processing_config: {
|
|
1990
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
1991
|
-
}?
|
|
1992
|
-
}?
|
|
1993
|
-
},
|
|
1994
|
-
path: Array[
|
|
1995
|
-
{
|
|
1996
|
-
id: ::String?,
|
|
1997
|
-
name: ::String?
|
|
1998
|
-
},
|
|
1999
|
-
]?
|
|
2000
|
-
},
|
|
1653
|
+
Params::asset_model_property
|
|
2001
1654
|
],
|
|
2002
1655
|
?asset_model_hierarchies: Array[
|
|
2003
1656
|
{
|
|
@@ -2005,7 +1658,7 @@ module Aws
|
|
|
2005
1658
|
external_id: ::String?,
|
|
2006
1659
|
name: ::String,
|
|
2007
1660
|
child_asset_model_id: ::String
|
|
2008
|
-
}
|
|
1661
|
+
}
|
|
2009
1662
|
],
|
|
2010
1663
|
?asset_model_composite_models: Array[
|
|
2011
1664
|
{
|
|
@@ -2013,87 +1666,11 @@ module Aws
|
|
|
2013
1666
|
description: ::String?,
|
|
2014
1667
|
type: ::String,
|
|
2015
1668
|
properties: Array[
|
|
2016
|
-
|
|
2017
|
-
id: ::String?,
|
|
2018
|
-
external_id: ::String?,
|
|
2019
|
-
name: ::String,
|
|
2020
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
2021
|
-
data_type_spec: ::String?,
|
|
2022
|
-
unit: ::String?,
|
|
2023
|
-
type: {
|
|
2024
|
-
attribute: {
|
|
2025
|
-
default_value: ::String?
|
|
2026
|
-
}?,
|
|
2027
|
-
measurement: {
|
|
2028
|
-
processing_config: {
|
|
2029
|
-
forwarding_config: {
|
|
2030
|
-
state: ("DISABLED" | "ENABLED")
|
|
2031
|
-
}
|
|
2032
|
-
}?
|
|
2033
|
-
}?,
|
|
2034
|
-
transform: {
|
|
2035
|
-
expression: ::String,
|
|
2036
|
-
variables: Array[
|
|
2037
|
-
{
|
|
2038
|
-
name: ::String,
|
|
2039
|
-
value: {
|
|
2040
|
-
property_id: ::String?,
|
|
2041
|
-
hierarchy_id: ::String?,
|
|
2042
|
-
property_path: Array[
|
|
2043
|
-
{
|
|
2044
|
-
id: ::String?,
|
|
2045
|
-
name: ::String?
|
|
2046
|
-
},
|
|
2047
|
-
]?
|
|
2048
|
-
}
|
|
2049
|
-
},
|
|
2050
|
-
],
|
|
2051
|
-
processing_config: {
|
|
2052
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
2053
|
-
forwarding_config: {
|
|
2054
|
-
state: ("DISABLED" | "ENABLED")
|
|
2055
|
-
}?
|
|
2056
|
-
}?
|
|
2057
|
-
}?,
|
|
2058
|
-
metric: {
|
|
2059
|
-
expression: ::String?,
|
|
2060
|
-
variables: Array[
|
|
2061
|
-
{
|
|
2062
|
-
name: ::String,
|
|
2063
|
-
value: {
|
|
2064
|
-
property_id: ::String?,
|
|
2065
|
-
hierarchy_id: ::String?,
|
|
2066
|
-
property_path: Array[
|
|
2067
|
-
{
|
|
2068
|
-
id: ::String?,
|
|
2069
|
-
name: ::String?
|
|
2070
|
-
},
|
|
2071
|
-
]?
|
|
2072
|
-
}
|
|
2073
|
-
},
|
|
2074
|
-
]?,
|
|
2075
|
-
window: {
|
|
2076
|
-
tumbling: {
|
|
2077
|
-
interval: ::String,
|
|
2078
|
-
offset: ::String?
|
|
2079
|
-
}?
|
|
2080
|
-
},
|
|
2081
|
-
processing_config: {
|
|
2082
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
2083
|
-
}?
|
|
2084
|
-
}?
|
|
2085
|
-
},
|
|
2086
|
-
path: Array[
|
|
2087
|
-
{
|
|
2088
|
-
id: ::String?,
|
|
2089
|
-
name: ::String?
|
|
2090
|
-
},
|
|
2091
|
-
]?
|
|
2092
|
-
},
|
|
1669
|
+
Params::asset_model_property
|
|
2093
1670
|
]?,
|
|
2094
1671
|
id: ::String?,
|
|
2095
1672
|
external_id: ::String?
|
|
2096
|
-
}
|
|
1673
|
+
}
|
|
2097
1674
|
],
|
|
2098
1675
|
?client_token: ::String,
|
|
2099
1676
|
?if_match: ::String,
|
|
@@ -2116,83 +1693,7 @@ module Aws
|
|
|
2116
1693
|
asset_model_composite_model_name: ::String,
|
|
2117
1694
|
?client_token: ::String,
|
|
2118
1695
|
?asset_model_composite_model_properties: Array[
|
|
2119
|
-
|
|
2120
|
-
id: ::String?,
|
|
2121
|
-
external_id: ::String?,
|
|
2122
|
-
name: ::String,
|
|
2123
|
-
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
2124
|
-
data_type_spec: ::String?,
|
|
2125
|
-
unit: ::String?,
|
|
2126
|
-
type: {
|
|
2127
|
-
attribute: {
|
|
2128
|
-
default_value: ::String?
|
|
2129
|
-
}?,
|
|
2130
|
-
measurement: {
|
|
2131
|
-
processing_config: {
|
|
2132
|
-
forwarding_config: {
|
|
2133
|
-
state: ("DISABLED" | "ENABLED")
|
|
2134
|
-
}
|
|
2135
|
-
}?
|
|
2136
|
-
}?,
|
|
2137
|
-
transform: {
|
|
2138
|
-
expression: ::String,
|
|
2139
|
-
variables: Array[
|
|
2140
|
-
{
|
|
2141
|
-
name: ::String,
|
|
2142
|
-
value: {
|
|
2143
|
-
property_id: ::String?,
|
|
2144
|
-
hierarchy_id: ::String?,
|
|
2145
|
-
property_path: Array[
|
|
2146
|
-
{
|
|
2147
|
-
id: ::String?,
|
|
2148
|
-
name: ::String?
|
|
2149
|
-
},
|
|
2150
|
-
]?
|
|
2151
|
-
}
|
|
2152
|
-
},
|
|
2153
|
-
],
|
|
2154
|
-
processing_config: {
|
|
2155
|
-
compute_location: ("EDGE" | "CLOUD"),
|
|
2156
|
-
forwarding_config: {
|
|
2157
|
-
state: ("DISABLED" | "ENABLED")
|
|
2158
|
-
}?
|
|
2159
|
-
}?
|
|
2160
|
-
}?,
|
|
2161
|
-
metric: {
|
|
2162
|
-
expression: ::String?,
|
|
2163
|
-
variables: Array[
|
|
2164
|
-
{
|
|
2165
|
-
name: ::String,
|
|
2166
|
-
value: {
|
|
2167
|
-
property_id: ::String?,
|
|
2168
|
-
hierarchy_id: ::String?,
|
|
2169
|
-
property_path: Array[
|
|
2170
|
-
{
|
|
2171
|
-
id: ::String?,
|
|
2172
|
-
name: ::String?
|
|
2173
|
-
},
|
|
2174
|
-
]?
|
|
2175
|
-
}
|
|
2176
|
-
},
|
|
2177
|
-
]?,
|
|
2178
|
-
window: {
|
|
2179
|
-
tumbling: {
|
|
2180
|
-
interval: ::String,
|
|
2181
|
-
offset: ::String?
|
|
2182
|
-
}?
|
|
2183
|
-
},
|
|
2184
|
-
processing_config: {
|
|
2185
|
-
compute_location: ("EDGE" | "CLOUD")
|
|
2186
|
-
}?
|
|
2187
|
-
}?
|
|
2188
|
-
},
|
|
2189
|
-
path: Array[
|
|
2190
|
-
{
|
|
2191
|
-
id: ::String?,
|
|
2192
|
-
name: ::String?
|
|
2193
|
-
},
|
|
2194
|
-
]?
|
|
2195
|
-
},
|
|
1696
|
+
Params::asset_model_property
|
|
2196
1697
|
],
|
|
2197
1698
|
?if_match: ::String,
|
|
2198
1699
|
?if_none_match: ::String,
|
|
@@ -2226,19 +1727,7 @@ module Aws
|
|
|
2226
1727
|
result_property: ::String
|
|
2227
1728
|
}?
|
|
2228
1729
|
},
|
|
2229
|
-
computation_model_data_binding: Hash[::String,
|
|
2230
|
-
asset_model_property: {
|
|
2231
|
-
asset_model_id: ::String,
|
|
2232
|
-
property_id: ::String
|
|
2233
|
-
}?,
|
|
2234
|
-
asset_property: {
|
|
2235
|
-
asset_id: ::String,
|
|
2236
|
-
property_id: ::String
|
|
2237
|
-
}?,
|
|
2238
|
-
list: Array[
|
|
2239
|
-
untyped,
|
|
2240
|
-
]?
|
|
2241
|
-
}],
|
|
1730
|
+
computation_model_data_binding: Hash[::String, Params::computation_model_data_binding_value],
|
|
2242
1731
|
?client_token: ::String
|
|
2243
1732
|
) -> _UpdateComputationModelResponseSuccess
|
|
2244
1733
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateComputationModelResponseSuccess
|
|
@@ -2267,16 +1756,7 @@ module Aws
|
|
|
2267
1756
|
dataset_id: ::String,
|
|
2268
1757
|
dataset_name: ::String,
|
|
2269
1758
|
?dataset_description: ::String,
|
|
2270
|
-
dataset_source:
|
|
2271
|
-
source_type: ("KENDRA"),
|
|
2272
|
-
source_format: ("KNOWLEDGE_BASE"),
|
|
2273
|
-
source_detail: {
|
|
2274
|
-
kendra: {
|
|
2275
|
-
knowledge_base_arn: ::String,
|
|
2276
|
-
role_arn: ::String
|
|
2277
|
-
}?
|
|
2278
|
-
}?
|
|
2279
|
-
},
|
|
1759
|
+
dataset_source: Params::dataset_source,
|
|
2280
1760
|
?client_token: ::String
|
|
2281
1761
|
) -> _UpdateDatasetResponseSuccess
|
|
2282
1762
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
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 IoTSiteWise
|
|
10
|
+
module Params
|
|
11
|
+
type identity = {
|
|
12
|
+
user: {
|
|
13
|
+
id: ::String
|
|
14
|
+
}?,
|
|
15
|
+
group: {
|
|
16
|
+
id: ::String
|
|
17
|
+
}?,
|
|
18
|
+
iam_user: {
|
|
19
|
+
arn: ::String
|
|
20
|
+
}?,
|
|
21
|
+
iam_role: {
|
|
22
|
+
arn: ::String
|
|
23
|
+
}?
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
type resource = {
|
|
27
|
+
portal: {
|
|
28
|
+
id: ::String
|
|
29
|
+
}?,
|
|
30
|
+
project: {
|
|
31
|
+
id: ::String
|
|
32
|
+
}?
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
type transform = {
|
|
36
|
+
expression: ::String,
|
|
37
|
+
variables: Array[
|
|
38
|
+
Params::expression_variable
|
|
39
|
+
],
|
|
40
|
+
processing_config: {
|
|
41
|
+
compute_location: ("EDGE" | "CLOUD"),
|
|
42
|
+
forwarding_config: {
|
|
43
|
+
state: ("DISABLED" | "ENABLED")
|
|
44
|
+
}?
|
|
45
|
+
}?
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
type metric = {
|
|
49
|
+
expression: ::String?,
|
|
50
|
+
variables: Array[
|
|
51
|
+
Params::expression_variable
|
|
52
|
+
]?,
|
|
53
|
+
window: {
|
|
54
|
+
tumbling: {
|
|
55
|
+
interval: ::String,
|
|
56
|
+
offset: ::String?
|
|
57
|
+
}?
|
|
58
|
+
},
|
|
59
|
+
processing_config: {
|
|
60
|
+
compute_location: ("EDGE" | "CLOUD")
|
|
61
|
+
}?
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
type property_type = {
|
|
65
|
+
attribute: {
|
|
66
|
+
default_value: ::String?
|
|
67
|
+
}?,
|
|
68
|
+
measurement: {
|
|
69
|
+
processing_config: {
|
|
70
|
+
forwarding_config: {
|
|
71
|
+
state: ("DISABLED" | "ENABLED")
|
|
72
|
+
}
|
|
73
|
+
}?
|
|
74
|
+
}?,
|
|
75
|
+
transform: Params::transform?,
|
|
76
|
+
metric: Params::metric?
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
type asset_model_property_definition = {
|
|
80
|
+
id: ::String?,
|
|
81
|
+
external_id: ::String?,
|
|
82
|
+
name: ::String,
|
|
83
|
+
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
84
|
+
data_type_spec: ::String?,
|
|
85
|
+
unit: ::String?,
|
|
86
|
+
type: Params::property_type
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
type variable_value = {
|
|
90
|
+
property_id: ::String?,
|
|
91
|
+
hierarchy_id: ::String?,
|
|
92
|
+
property_path: Array[
|
|
93
|
+
{
|
|
94
|
+
id: ::String?,
|
|
95
|
+
name: ::String?
|
|
96
|
+
}
|
|
97
|
+
]?
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
type expression_variable = {
|
|
101
|
+
name: ::String,
|
|
102
|
+
value: Params::variable_value
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
type computation_model_data_binding_value = {
|
|
106
|
+
asset_model_property: {
|
|
107
|
+
asset_model_id: ::String,
|
|
108
|
+
property_id: ::String
|
|
109
|
+
}?,
|
|
110
|
+
asset_property: {
|
|
111
|
+
asset_id: ::String,
|
|
112
|
+
property_id: ::String
|
|
113
|
+
}?,
|
|
114
|
+
list: Array[
|
|
115
|
+
{
|
|
116
|
+
asset_model_property: {
|
|
117
|
+
asset_model_id: ::String,
|
|
118
|
+
property_id: ::String
|
|
119
|
+
}?,
|
|
120
|
+
asset_property: {
|
|
121
|
+
asset_id: ::String,
|
|
122
|
+
property_id: ::String
|
|
123
|
+
}?,
|
|
124
|
+
list: untyped?
|
|
125
|
+
}
|
|
126
|
+
]?
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
type dataset_source = {
|
|
130
|
+
source_type: ("KENDRA"),
|
|
131
|
+
source_format: ("KNOWLEDGE_BASE"),
|
|
132
|
+
source_detail: {
|
|
133
|
+
kendra: {
|
|
134
|
+
knowledge_base_arn: ::String,
|
|
135
|
+
role_arn: ::String
|
|
136
|
+
}?
|
|
137
|
+
}?
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
type asset_model_property = {
|
|
141
|
+
id: ::String?,
|
|
142
|
+
external_id: ::String?,
|
|
143
|
+
name: ::String,
|
|
144
|
+
data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT"),
|
|
145
|
+
data_type_spec: ::String?,
|
|
146
|
+
unit: ::String?,
|
|
147
|
+
type: Params::property_type,
|
|
148
|
+
path: Array[
|
|
149
|
+
{
|
|
150
|
+
id: ::String?,
|
|
151
|
+
name: ::String?
|
|
152
|
+
}
|
|
153
|
+
]?
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
end
|
|
157
|
+
end
|
|
158
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-iotsitewise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.104.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
|
|
@@ -69,6 +69,7 @@ files:
|
|
|
69
69
|
- lib/aws-sdk-iotsitewise/waiters.rb
|
|
70
70
|
- sig/client.rbs
|
|
71
71
|
- sig/errors.rbs
|
|
72
|
+
- sig/params.rbs
|
|
72
73
|
- sig/resource.rbs
|
|
73
74
|
- sig/types.rbs
|
|
74
75
|
- sig/waiters.rbs
|