aws-sdk-iotanalytics 1.60.0 → 1.62.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,903 @@
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 IoTAnalytics
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchPutMessageResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchPutMessageResponse]
77
+ def batch_put_message_error_entries: () -> ::Array[Types::BatchPutMessageErrorEntry]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#batch_put_message-instance_method
80
+ def batch_put_message: (
81
+ channel_name: ::String,
82
+ messages: Array[
83
+ {
84
+ message_id: ::String,
85
+ payload: ::String
86
+ },
87
+ ]
88
+ ) -> _BatchPutMessageResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutMessageResponseSuccess
90
+
91
+ interface _CancelPipelineReprocessingResponseSuccess
92
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelPipelineReprocessingResponse]
93
+ end
94
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#cancel_pipeline_reprocessing-instance_method
95
+ def cancel_pipeline_reprocessing: (
96
+ pipeline_name: ::String,
97
+ reprocessing_id: ::String
98
+ ) -> _CancelPipelineReprocessingResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelPipelineReprocessingResponseSuccess
100
+
101
+ interface _CreateChannelResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
103
+ def channel_name: () -> ::String
104
+ def channel_arn: () -> ::String
105
+ def retention_period: () -> Types::RetentionPeriod
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#create_channel-instance_method
108
+ def create_channel: (
109
+ channel_name: ::String,
110
+ ?channel_storage: {
111
+ service_managed_s3: {
112
+ }?,
113
+ customer_managed_s3: {
114
+ bucket: ::String,
115
+ key_prefix: ::String?,
116
+ role_arn: ::String
117
+ }?
118
+ },
119
+ ?retention_period: {
120
+ unlimited: bool?,
121
+ number_of_days: ::Integer?
122
+ },
123
+ ?tags: Array[
124
+ {
125
+ key: ::String,
126
+ value: ::String
127
+ },
128
+ ]
129
+ ) -> _CreateChannelResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
131
+
132
+ interface _CreateDatasetResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
134
+ def dataset_name: () -> ::String
135
+ def dataset_arn: () -> ::String
136
+ def retention_period: () -> Types::RetentionPeriod
137
+ end
138
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#create_dataset-instance_method
139
+ def create_dataset: (
140
+ dataset_name: ::String,
141
+ actions: Array[
142
+ {
143
+ action_name: ::String?,
144
+ query_action: {
145
+ sql_query: ::String,
146
+ filters: Array[
147
+ {
148
+ delta_time: {
149
+ offset_seconds: ::Integer,
150
+ time_expression: ::String
151
+ }?
152
+ },
153
+ ]?
154
+ }?,
155
+ container_action: {
156
+ image: ::String,
157
+ execution_role_arn: ::String,
158
+ resource_configuration: {
159
+ compute_type: ("ACU_1" | "ACU_2"),
160
+ volume_size_in_gb: ::Integer
161
+ },
162
+ variables: Array[
163
+ {
164
+ name: ::String,
165
+ string_value: ::String?,
166
+ double_value: ::Float?,
167
+ dataset_content_version_value: {
168
+ dataset_name: ::String
169
+ }?,
170
+ output_file_uri_value: {
171
+ file_name: ::String
172
+ }?
173
+ },
174
+ ]?
175
+ }?
176
+ },
177
+ ],
178
+ ?triggers: Array[
179
+ {
180
+ schedule: {
181
+ expression: ::String?
182
+ }?,
183
+ dataset: {
184
+ name: ::String
185
+ }?
186
+ },
187
+ ],
188
+ ?content_delivery_rules: Array[
189
+ {
190
+ entry_name: ::String?,
191
+ destination: {
192
+ iot_events_destination_configuration: {
193
+ input_name: ::String,
194
+ role_arn: ::String
195
+ }?,
196
+ s3_destination_configuration: {
197
+ bucket: ::String,
198
+ key: ::String,
199
+ glue_configuration: {
200
+ table_name: ::String,
201
+ database_name: ::String
202
+ }?,
203
+ role_arn: ::String
204
+ }?
205
+ }
206
+ },
207
+ ],
208
+ ?retention_period: {
209
+ unlimited: bool?,
210
+ number_of_days: ::Integer?
211
+ },
212
+ ?versioning_configuration: {
213
+ unlimited: bool?,
214
+ max_versions: ::Integer?
215
+ },
216
+ ?tags: Array[
217
+ {
218
+ key: ::String,
219
+ value: ::String
220
+ },
221
+ ],
222
+ ?late_data_rules: Array[
223
+ {
224
+ rule_name: ::String?,
225
+ rule_configuration: {
226
+ delta_time_session_window_configuration: {
227
+ timeout_in_minutes: ::Integer
228
+ }?
229
+ }
230
+ },
231
+ ]
232
+ ) -> _CreateDatasetResponseSuccess
233
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
234
+
235
+ interface _CreateDatasetContentResponseSuccess
236
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetContentResponse]
237
+ def version_id: () -> ::String
238
+ end
239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#create_dataset_content-instance_method
240
+ def create_dataset_content: (
241
+ dataset_name: ::String,
242
+ ?version_id: ::String
243
+ ) -> _CreateDatasetContentResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetContentResponseSuccess
245
+
246
+ interface _CreateDatastoreResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatastoreResponse]
248
+ def datastore_name: () -> ::String
249
+ def datastore_arn: () -> ::String
250
+ def retention_period: () -> Types::RetentionPeriod
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#create_datastore-instance_method
253
+ def create_datastore: (
254
+ datastore_name: ::String,
255
+ ?datastore_storage: {
256
+ service_managed_s3: {
257
+ }?,
258
+ customer_managed_s3: {
259
+ bucket: ::String,
260
+ key_prefix: ::String?,
261
+ role_arn: ::String
262
+ }?,
263
+ iot_site_wise_multi_layer_storage: {
264
+ customer_managed_s3_storage: {
265
+ bucket: ::String,
266
+ key_prefix: ::String?
267
+ }
268
+ }?
269
+ },
270
+ ?retention_period: {
271
+ unlimited: bool?,
272
+ number_of_days: ::Integer?
273
+ },
274
+ ?tags: Array[
275
+ {
276
+ key: ::String,
277
+ value: ::String
278
+ },
279
+ ],
280
+ ?file_format_configuration: {
281
+ json_configuration: {
282
+ }?,
283
+ parquet_configuration: {
284
+ schema_definition: {
285
+ columns: Array[
286
+ {
287
+ name: ::String,
288
+ type: ::String
289
+ },
290
+ ]?
291
+ }?
292
+ }?
293
+ },
294
+ ?datastore_partitions: {
295
+ partitions: Array[
296
+ {
297
+ attribute_partition: {
298
+ attribute_name: ::String
299
+ }?,
300
+ timestamp_partition: {
301
+ attribute_name: ::String,
302
+ timestamp_format: ::String?
303
+ }?
304
+ },
305
+ ]?
306
+ }
307
+ ) -> _CreateDatastoreResponseSuccess
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatastoreResponseSuccess
309
+
310
+ interface _CreatePipelineResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePipelineResponse]
312
+ def pipeline_name: () -> ::String
313
+ def pipeline_arn: () -> ::String
314
+ end
315
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#create_pipeline-instance_method
316
+ def create_pipeline: (
317
+ pipeline_name: ::String,
318
+ pipeline_activities: Array[
319
+ {
320
+ channel: {
321
+ name: ::String,
322
+ channel_name: ::String,
323
+ next: ::String?
324
+ }?,
325
+ lambda: {
326
+ name: ::String,
327
+ lambda_name: ::String,
328
+ batch_size: ::Integer,
329
+ next: ::String?
330
+ }?,
331
+ datastore: {
332
+ name: ::String,
333
+ datastore_name: ::String
334
+ }?,
335
+ add_attributes: {
336
+ name: ::String,
337
+ attributes: Hash[::String, ::String],
338
+ next: ::String?
339
+ }?,
340
+ remove_attributes: {
341
+ name: ::String,
342
+ attributes: Array[::String],
343
+ next: ::String?
344
+ }?,
345
+ select_attributes: {
346
+ name: ::String,
347
+ attributes: Array[::String],
348
+ next: ::String?
349
+ }?,
350
+ filter: {
351
+ name: ::String,
352
+ filter: ::String,
353
+ next: ::String?
354
+ }?,
355
+ math: {
356
+ name: ::String,
357
+ attribute: ::String,
358
+ math: ::String,
359
+ next: ::String?
360
+ }?,
361
+ device_registry_enrich: {
362
+ name: ::String,
363
+ attribute: ::String,
364
+ thing_name: ::String,
365
+ role_arn: ::String,
366
+ next: ::String?
367
+ }?,
368
+ device_shadow_enrich: {
369
+ name: ::String,
370
+ attribute: ::String,
371
+ thing_name: ::String,
372
+ role_arn: ::String,
373
+ next: ::String?
374
+ }?
375
+ },
376
+ ],
377
+ ?tags: Array[
378
+ {
379
+ key: ::String,
380
+ value: ::String
381
+ },
382
+ ]
383
+ ) -> _CreatePipelineResponseSuccess
384
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
385
+
386
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#delete_channel-instance_method
387
+ def delete_channel: (
388
+ channel_name: ::String
389
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
391
+
392
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#delete_dataset-instance_method
393
+ def delete_dataset: (
394
+ dataset_name: ::String
395
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
396
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
397
+
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#delete_dataset_content-instance_method
399
+ def delete_dataset_content: (
400
+ dataset_name: ::String,
401
+ ?version_id: ::String
402
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
404
+
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#delete_datastore-instance_method
406
+ def delete_datastore: (
407
+ datastore_name: ::String
408
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
410
+
411
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#delete_pipeline-instance_method
412
+ def delete_pipeline: (
413
+ pipeline_name: ::String
414
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
415
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
416
+
417
+ interface _DescribeChannelResponseSuccess
418
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
419
+ def channel: () -> Types::Channel
420
+ def statistics: () -> Types::ChannelStatistics
421
+ end
422
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#describe_channel-instance_method
423
+ def describe_channel: (
424
+ channel_name: ::String,
425
+ ?include_statistics: bool
426
+ ) -> _DescribeChannelResponseSuccess
427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChannelResponseSuccess
428
+
429
+ interface _DescribeDatasetResponseSuccess
430
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetResponse]
431
+ def dataset: () -> Types::Dataset
432
+ end
433
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#describe_dataset-instance_method
434
+ def describe_dataset: (
435
+ dataset_name: ::String
436
+ ) -> _DescribeDatasetResponseSuccess
437
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetResponseSuccess
438
+
439
+ interface _DescribeDatastoreResponseSuccess
440
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatastoreResponse]
441
+ def datastore: () -> Types::Datastore
442
+ def statistics: () -> Types::DatastoreStatistics
443
+ end
444
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#describe_datastore-instance_method
445
+ def describe_datastore: (
446
+ datastore_name: ::String,
447
+ ?include_statistics: bool
448
+ ) -> _DescribeDatastoreResponseSuccess
449
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatastoreResponseSuccess
450
+
451
+ interface _DescribeLoggingOptionsResponseSuccess
452
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoggingOptionsResponse]
453
+ def logging_options: () -> Types::LoggingOptions
454
+ end
455
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#describe_logging_options-instance_method
456
+ def describe_logging_options: (
457
+ ) -> _DescribeLoggingOptionsResponseSuccess
458
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLoggingOptionsResponseSuccess
459
+
460
+ interface _DescribePipelineResponseSuccess
461
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePipelineResponse]
462
+ def pipeline: () -> Types::Pipeline
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#describe_pipeline-instance_method
465
+ def describe_pipeline: (
466
+ pipeline_name: ::String
467
+ ) -> _DescribePipelineResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePipelineResponseSuccess
469
+
470
+ interface _GetDatasetContentResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDatasetContentResponse]
472
+ def entries: () -> ::Array[Types::DatasetEntry]
473
+ def timestamp: () -> ::Time
474
+ def status: () -> Types::DatasetContentStatus
475
+ end
476
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#get_dataset_content-instance_method
477
+ def get_dataset_content: (
478
+ dataset_name: ::String,
479
+ ?version_id: ::String
480
+ ) -> _GetDatasetContentResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatasetContentResponseSuccess
482
+
483
+ interface _ListChannelsResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
485
+ def channel_summaries: () -> ::Array[Types::ChannelSummary]
486
+ def next_token: () -> ::String
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_channels-instance_method
489
+ def list_channels: (
490
+ ?next_token: ::String,
491
+ ?max_results: ::Integer
492
+ ) -> _ListChannelsResponseSuccess
493
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
494
+
495
+ interface _ListDatasetContentsResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetContentsResponse]
497
+ def dataset_content_summaries: () -> ::Array[Types::DatasetContentSummary]
498
+ def next_token: () -> ::String
499
+ end
500
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_dataset_contents-instance_method
501
+ def list_dataset_contents: (
502
+ dataset_name: ::String,
503
+ ?next_token: ::String,
504
+ ?max_results: ::Integer,
505
+ ?scheduled_on_or_after: ::Time,
506
+ ?scheduled_before: ::Time
507
+ ) -> _ListDatasetContentsResponseSuccess
508
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetContentsResponseSuccess
509
+
510
+ interface _ListDatasetsResponseSuccess
511
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetsResponse]
512
+ def dataset_summaries: () -> ::Array[Types::DatasetSummary]
513
+ def next_token: () -> ::String
514
+ end
515
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_datasets-instance_method
516
+ def list_datasets: (
517
+ ?next_token: ::String,
518
+ ?max_results: ::Integer
519
+ ) -> _ListDatasetsResponseSuccess
520
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetsResponseSuccess
521
+
522
+ interface _ListDatastoresResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatastoresResponse]
524
+ def datastore_summaries: () -> ::Array[Types::DatastoreSummary]
525
+ def next_token: () -> ::String
526
+ end
527
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_datastores-instance_method
528
+ def list_datastores: (
529
+ ?next_token: ::String,
530
+ ?max_results: ::Integer
531
+ ) -> _ListDatastoresResponseSuccess
532
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatastoresResponseSuccess
533
+
534
+ interface _ListPipelinesResponseSuccess
535
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelinesResponse]
536
+ def pipeline_summaries: () -> ::Array[Types::PipelineSummary]
537
+ def next_token: () -> ::String
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_pipelines-instance_method
540
+ def list_pipelines: (
541
+ ?next_token: ::String,
542
+ ?max_results: ::Integer
543
+ ) -> _ListPipelinesResponseSuccess
544
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelinesResponseSuccess
545
+
546
+ interface _ListTagsForResourceResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
548
+ def tags: () -> ::Array[Types::Tag]
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#list_tags_for_resource-instance_method
551
+ def list_tags_for_resource: (
552
+ resource_arn: ::String
553
+ ) -> _ListTagsForResourceResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
555
+
556
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#put_logging_options-instance_method
557
+ def put_logging_options: (
558
+ logging_options: {
559
+ role_arn: ::String,
560
+ level: ("ERROR"),
561
+ enabled: bool
562
+ }
563
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
564
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
565
+
566
+ interface _RunPipelineActivityResponseSuccess
567
+ include ::Seahorse::Client::_ResponseSuccess[Types::RunPipelineActivityResponse]
568
+ def payloads: () -> ::Array[::String]
569
+ def log_result: () -> ::String
570
+ end
571
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#run_pipeline_activity-instance_method
572
+ def run_pipeline_activity: (
573
+ pipeline_activity: {
574
+ channel: {
575
+ name: ::String,
576
+ channel_name: ::String,
577
+ next: ::String?
578
+ }?,
579
+ lambda: {
580
+ name: ::String,
581
+ lambda_name: ::String,
582
+ batch_size: ::Integer,
583
+ next: ::String?
584
+ }?,
585
+ datastore: {
586
+ name: ::String,
587
+ datastore_name: ::String
588
+ }?,
589
+ add_attributes: {
590
+ name: ::String,
591
+ attributes: Hash[::String, ::String],
592
+ next: ::String?
593
+ }?,
594
+ remove_attributes: {
595
+ name: ::String,
596
+ attributes: Array[::String],
597
+ next: ::String?
598
+ }?,
599
+ select_attributes: {
600
+ name: ::String,
601
+ attributes: Array[::String],
602
+ next: ::String?
603
+ }?,
604
+ filter: {
605
+ name: ::String,
606
+ filter: ::String,
607
+ next: ::String?
608
+ }?,
609
+ math: {
610
+ name: ::String,
611
+ attribute: ::String,
612
+ math: ::String,
613
+ next: ::String?
614
+ }?,
615
+ device_registry_enrich: {
616
+ name: ::String,
617
+ attribute: ::String,
618
+ thing_name: ::String,
619
+ role_arn: ::String,
620
+ next: ::String?
621
+ }?,
622
+ device_shadow_enrich: {
623
+ name: ::String,
624
+ attribute: ::String,
625
+ thing_name: ::String,
626
+ role_arn: ::String,
627
+ next: ::String?
628
+ }?
629
+ },
630
+ payloads: Array[::String]
631
+ ) -> _RunPipelineActivityResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunPipelineActivityResponseSuccess
633
+
634
+ interface _SampleChannelDataResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::SampleChannelDataResponse]
636
+ def payloads: () -> ::Array[::String]
637
+ end
638
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#sample_channel_data-instance_method
639
+ def sample_channel_data: (
640
+ channel_name: ::String,
641
+ ?max_messages: ::Integer,
642
+ ?start_time: ::Time,
643
+ ?end_time: ::Time
644
+ ) -> _SampleChannelDataResponseSuccess
645
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SampleChannelDataResponseSuccess
646
+
647
+ interface _StartPipelineReprocessingResponseSuccess
648
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartPipelineReprocessingResponse]
649
+ def reprocessing_id: () -> ::String
650
+ end
651
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#start_pipeline_reprocessing-instance_method
652
+ def start_pipeline_reprocessing: (
653
+ pipeline_name: ::String,
654
+ ?start_time: ::Time,
655
+ ?end_time: ::Time,
656
+ ?channel_messages: {
657
+ s3_paths: Array[::String]?
658
+ }
659
+ ) -> _StartPipelineReprocessingResponseSuccess
660
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartPipelineReprocessingResponseSuccess
661
+
662
+ interface _TagResourceResponseSuccess
663
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
664
+ end
665
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#tag_resource-instance_method
666
+ def tag_resource: (
667
+ resource_arn: ::String,
668
+ tags: Array[
669
+ {
670
+ key: ::String,
671
+ value: ::String
672
+ },
673
+ ]
674
+ ) -> _TagResourceResponseSuccess
675
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
676
+
677
+ interface _UntagResourceResponseSuccess
678
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
679
+ end
680
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#untag_resource-instance_method
681
+ def untag_resource: (
682
+ resource_arn: ::String,
683
+ tag_keys: Array[::String]
684
+ ) -> _UntagResourceResponseSuccess
685
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
686
+
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#update_channel-instance_method
688
+ def update_channel: (
689
+ channel_name: ::String,
690
+ ?channel_storage: {
691
+ service_managed_s3: {
692
+ }?,
693
+ customer_managed_s3: {
694
+ bucket: ::String,
695
+ key_prefix: ::String?,
696
+ role_arn: ::String
697
+ }?
698
+ },
699
+ ?retention_period: {
700
+ unlimited: bool?,
701
+ number_of_days: ::Integer?
702
+ }
703
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
704
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
705
+
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#update_dataset-instance_method
707
+ def update_dataset: (
708
+ dataset_name: ::String,
709
+ actions: Array[
710
+ {
711
+ action_name: ::String?,
712
+ query_action: {
713
+ sql_query: ::String,
714
+ filters: Array[
715
+ {
716
+ delta_time: {
717
+ offset_seconds: ::Integer,
718
+ time_expression: ::String
719
+ }?
720
+ },
721
+ ]?
722
+ }?,
723
+ container_action: {
724
+ image: ::String,
725
+ execution_role_arn: ::String,
726
+ resource_configuration: {
727
+ compute_type: ("ACU_1" | "ACU_2"),
728
+ volume_size_in_gb: ::Integer
729
+ },
730
+ variables: Array[
731
+ {
732
+ name: ::String,
733
+ string_value: ::String?,
734
+ double_value: ::Float?,
735
+ dataset_content_version_value: {
736
+ dataset_name: ::String
737
+ }?,
738
+ output_file_uri_value: {
739
+ file_name: ::String
740
+ }?
741
+ },
742
+ ]?
743
+ }?
744
+ },
745
+ ],
746
+ ?triggers: Array[
747
+ {
748
+ schedule: {
749
+ expression: ::String?
750
+ }?,
751
+ dataset: {
752
+ name: ::String
753
+ }?
754
+ },
755
+ ],
756
+ ?content_delivery_rules: Array[
757
+ {
758
+ entry_name: ::String?,
759
+ destination: {
760
+ iot_events_destination_configuration: {
761
+ input_name: ::String,
762
+ role_arn: ::String
763
+ }?,
764
+ s3_destination_configuration: {
765
+ bucket: ::String,
766
+ key: ::String,
767
+ glue_configuration: {
768
+ table_name: ::String,
769
+ database_name: ::String
770
+ }?,
771
+ role_arn: ::String
772
+ }?
773
+ }
774
+ },
775
+ ],
776
+ ?retention_period: {
777
+ unlimited: bool?,
778
+ number_of_days: ::Integer?
779
+ },
780
+ ?versioning_configuration: {
781
+ unlimited: bool?,
782
+ max_versions: ::Integer?
783
+ },
784
+ ?late_data_rules: Array[
785
+ {
786
+ rule_name: ::String?,
787
+ rule_configuration: {
788
+ delta_time_session_window_configuration: {
789
+ timeout_in_minutes: ::Integer
790
+ }?
791
+ }
792
+ },
793
+ ]
794
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
795
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
796
+
797
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#update_datastore-instance_method
798
+ def update_datastore: (
799
+ datastore_name: ::String,
800
+ ?retention_period: {
801
+ unlimited: bool?,
802
+ number_of_days: ::Integer?
803
+ },
804
+ ?datastore_storage: {
805
+ service_managed_s3: {
806
+ }?,
807
+ customer_managed_s3: {
808
+ bucket: ::String,
809
+ key_prefix: ::String?,
810
+ role_arn: ::String
811
+ }?,
812
+ iot_site_wise_multi_layer_storage: {
813
+ customer_managed_s3_storage: {
814
+ bucket: ::String,
815
+ key_prefix: ::String?
816
+ }
817
+ }?
818
+ },
819
+ ?file_format_configuration: {
820
+ json_configuration: {
821
+ }?,
822
+ parquet_configuration: {
823
+ schema_definition: {
824
+ columns: Array[
825
+ {
826
+ name: ::String,
827
+ type: ::String
828
+ },
829
+ ]?
830
+ }?
831
+ }?
832
+ }
833
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
834
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
835
+
836
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTAnalytics/Client.html#update_pipeline-instance_method
837
+ def update_pipeline: (
838
+ pipeline_name: ::String,
839
+ pipeline_activities: Array[
840
+ {
841
+ channel: {
842
+ name: ::String,
843
+ channel_name: ::String,
844
+ next: ::String?
845
+ }?,
846
+ lambda: {
847
+ name: ::String,
848
+ lambda_name: ::String,
849
+ batch_size: ::Integer,
850
+ next: ::String?
851
+ }?,
852
+ datastore: {
853
+ name: ::String,
854
+ datastore_name: ::String
855
+ }?,
856
+ add_attributes: {
857
+ name: ::String,
858
+ attributes: Hash[::String, ::String],
859
+ next: ::String?
860
+ }?,
861
+ remove_attributes: {
862
+ name: ::String,
863
+ attributes: Array[::String],
864
+ next: ::String?
865
+ }?,
866
+ select_attributes: {
867
+ name: ::String,
868
+ attributes: Array[::String],
869
+ next: ::String?
870
+ }?,
871
+ filter: {
872
+ name: ::String,
873
+ filter: ::String,
874
+ next: ::String?
875
+ }?,
876
+ math: {
877
+ name: ::String,
878
+ attribute: ::String,
879
+ math: ::String,
880
+ next: ::String?
881
+ }?,
882
+ device_registry_enrich: {
883
+ name: ::String,
884
+ attribute: ::String,
885
+ thing_name: ::String,
886
+ role_arn: ::String,
887
+ next: ::String?
888
+ }?,
889
+ device_shadow_enrich: {
890
+ name: ::String,
891
+ attribute: ::String,
892
+ thing_name: ::String,
893
+ role_arn: ::String,
894
+ next: ::String?
895
+ }?
896
+ },
897
+ ]
898
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
899
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
900
+ end
901
+ end
902
+ end
903
+