aws-sdk-iotanalytics 1.29.0 → 1.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iotanalytics.rb +5 -2
- data/lib/aws-sdk-iotanalytics/client.rb +29 -10
- data/lib/aws-sdk-iotanalytics/client_api.rb +2 -0
- data/lib/aws-sdk-iotanalytics/errors.rb +2 -0
- data/lib/aws-sdk-iotanalytics/resource.rb +2 -0
- data/lib/aws-sdk-iotanalytics/types.rb +121 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e86faf6c0754c8971575f34245350a125738573698f33c4a3fec20ee3950aa4
|
4
|
+
data.tar.gz: 61dda8d6e5a4797996696c8ef7d7170a98b02b818987548683d15088f2ee1064
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d49ec4fbf9ad7e56a1c8c716fa8fcfbdcb427432f9ed113e824b196ad32af8b1103426d039c6e0c813420defc11c07c8bbae36f925cacef327e4a7b09ec63242
|
7
|
+
data.tar.gz: e11a40d8a05d430a88d1232ecb391f00fbd0ddba3d48614be1a3c076bad5b328056d6c317c46da2b44cdb7d5d0bbbaf1526aa91d01e8e62cd75f859ec8037430
|
data/lib/aws-sdk-iotanalytics.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-iotanalytics/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::IoTAnalytics
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.34.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::IoTAnalytics
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::IoTAnalytics
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::IoTAnalytics
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::IoTAnalytics
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -1507,7 +1526,7 @@ module Aws::IoTAnalytics
|
|
1507
1526
|
# only short-running Lambda functions (those with a timeout of less than
|
1508
1527
|
# 30 seconds or less) can be used.
|
1509
1528
|
#
|
1510
|
-
# @option params [required, Array<String,
|
1529
|
+
# @option params [required, Array<String, StringIO, File>] :payloads
|
1511
1530
|
# The sample message payloads on which the pipeline activity is run.
|
1512
1531
|
#
|
1513
1532
|
# @return [Types::RunPipelineActivityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2037,7 +2056,7 @@ module Aws::IoTAnalytics
|
|
2037
2056
|
params: params,
|
2038
2057
|
config: config)
|
2039
2058
|
context[:gem_name] = 'aws-sdk-iotanalytics'
|
2040
|
-
context[:gem_version] = '1.
|
2059
|
+
context[:gem_version] = '1.34.0'
|
2041
2060
|
Seahorse::Client::Request.new(handlers, context)
|
2042
2061
|
end
|
2043
2062
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -44,6 +46,7 @@ module Aws::IoTAnalytics
|
|
44
46
|
:name,
|
45
47
|
:attributes,
|
46
48
|
:next)
|
49
|
+
SENSITIVE = []
|
47
50
|
include Aws::Structure
|
48
51
|
end
|
49
52
|
|
@@ -66,6 +69,7 @@ module Aws::IoTAnalytics
|
|
66
69
|
:message_id,
|
67
70
|
:error_code,
|
68
71
|
:error_message)
|
72
|
+
SENSITIVE = []
|
69
73
|
include Aws::Structure
|
70
74
|
end
|
71
75
|
|
@@ -116,6 +120,7 @@ module Aws::IoTAnalytics
|
|
116
120
|
class BatchPutMessageRequest < Struct.new(
|
117
121
|
:channel_name,
|
118
122
|
:messages)
|
123
|
+
SENSITIVE = []
|
119
124
|
include Aws::Structure
|
120
125
|
end
|
121
126
|
|
@@ -126,6 +131,7 @@ module Aws::IoTAnalytics
|
|
126
131
|
#
|
127
132
|
class BatchPutMessageResponse < Struct.new(
|
128
133
|
:batch_put_message_error_entries)
|
134
|
+
SENSITIVE = []
|
129
135
|
include Aws::Structure
|
130
136
|
end
|
131
137
|
|
@@ -149,6 +155,7 @@ module Aws::IoTAnalytics
|
|
149
155
|
class CancelPipelineReprocessingRequest < Struct.new(
|
150
156
|
:pipeline_name,
|
151
157
|
:reprocessing_id)
|
158
|
+
SENSITIVE = []
|
152
159
|
include Aws::Structure
|
153
160
|
end
|
154
161
|
|
@@ -196,6 +203,7 @@ module Aws::IoTAnalytics
|
|
196
203
|
:retention_period,
|
197
204
|
:creation_time,
|
198
205
|
:last_update_time)
|
206
|
+
SENSITIVE = []
|
199
207
|
include Aws::Structure
|
200
208
|
end
|
201
209
|
|
@@ -227,6 +235,7 @@ module Aws::IoTAnalytics
|
|
227
235
|
:name,
|
228
236
|
:channel_name,
|
229
237
|
:next)
|
238
|
+
SENSITIVE = []
|
230
239
|
include Aws::Structure
|
231
240
|
end
|
232
241
|
|
@@ -238,6 +247,7 @@ module Aws::IoTAnalytics
|
|
238
247
|
#
|
239
248
|
class ChannelStatistics < Struct.new(
|
240
249
|
:size)
|
250
|
+
SENSITIVE = []
|
241
251
|
include Aws::Structure
|
242
252
|
end
|
243
253
|
|
@@ -277,6 +287,7 @@ module Aws::IoTAnalytics
|
|
277
287
|
class ChannelStorage < Struct.new(
|
278
288
|
:service_managed_s3,
|
279
289
|
:customer_managed_s3)
|
290
|
+
SENSITIVE = []
|
280
291
|
include Aws::Structure
|
281
292
|
end
|
282
293
|
|
@@ -294,6 +305,7 @@ module Aws::IoTAnalytics
|
|
294
305
|
class ChannelStorageSummary < Struct.new(
|
295
306
|
:service_managed_s3,
|
296
307
|
:customer_managed_s3)
|
308
|
+
SENSITIVE = []
|
297
309
|
include Aws::Structure
|
298
310
|
end
|
299
311
|
|
@@ -325,6 +337,7 @@ module Aws::IoTAnalytics
|
|
325
337
|
:status,
|
326
338
|
:creation_time,
|
327
339
|
:last_update_time)
|
340
|
+
SENSITIVE = []
|
328
341
|
include Aws::Structure
|
329
342
|
end
|
330
343
|
|
@@ -387,6 +400,7 @@ module Aws::IoTAnalytics
|
|
387
400
|
:execution_role_arn,
|
388
401
|
:resource_configuration,
|
389
402
|
:variables)
|
403
|
+
SENSITIVE = []
|
390
404
|
include Aws::Structure
|
391
405
|
end
|
392
406
|
|
@@ -442,6 +456,7 @@ module Aws::IoTAnalytics
|
|
442
456
|
:channel_storage,
|
443
457
|
:retention_period,
|
444
458
|
:tags)
|
459
|
+
SENSITIVE = []
|
445
460
|
include Aws::Structure
|
446
461
|
end
|
447
462
|
|
@@ -461,6 +476,7 @@ module Aws::IoTAnalytics
|
|
461
476
|
:channel_name,
|
462
477
|
:channel_arn,
|
463
478
|
:retention_period)
|
479
|
+
SENSITIVE = []
|
464
480
|
include Aws::Structure
|
465
481
|
end
|
466
482
|
|
@@ -477,6 +493,7 @@ module Aws::IoTAnalytics
|
|
477
493
|
#
|
478
494
|
class CreateDatasetContentRequest < Struct.new(
|
479
495
|
:dataset_name)
|
496
|
+
SENSITIVE = []
|
480
497
|
include Aws::Structure
|
481
498
|
end
|
482
499
|
|
@@ -486,6 +503,7 @@ module Aws::IoTAnalytics
|
|
486
503
|
#
|
487
504
|
class CreateDatasetContentResponse < Struct.new(
|
488
505
|
:version_id)
|
506
|
+
SENSITIVE = []
|
489
507
|
include Aws::Structure
|
490
508
|
end
|
491
509
|
|
@@ -627,6 +645,7 @@ module Aws::IoTAnalytics
|
|
627
645
|
:retention_period,
|
628
646
|
:versioning_configuration,
|
629
647
|
:tags)
|
648
|
+
SENSITIVE = []
|
630
649
|
include Aws::Structure
|
631
650
|
end
|
632
651
|
|
@@ -646,6 +665,7 @@ module Aws::IoTAnalytics
|
|
646
665
|
:dataset_name,
|
647
666
|
:dataset_arn,
|
648
667
|
:retention_period)
|
668
|
+
SENSITIVE = []
|
649
669
|
include Aws::Structure
|
650
670
|
end
|
651
671
|
|
@@ -701,6 +721,7 @@ module Aws::IoTAnalytics
|
|
701
721
|
:datastore_storage,
|
702
722
|
:retention_period,
|
703
723
|
:tags)
|
724
|
+
SENSITIVE = []
|
704
725
|
include Aws::Structure
|
705
726
|
end
|
706
727
|
|
@@ -720,6 +741,7 @@ module Aws::IoTAnalytics
|
|
720
741
|
:datastore_name,
|
721
742
|
:datastore_arn,
|
722
743
|
:retention_period)
|
744
|
+
SENSITIVE = []
|
723
745
|
include Aws::Structure
|
724
746
|
end
|
725
747
|
|
@@ -825,6 +847,7 @@ module Aws::IoTAnalytics
|
|
825
847
|
:pipeline_name,
|
826
848
|
:pipeline_activities,
|
827
849
|
:tags)
|
850
|
+
SENSITIVE = []
|
828
851
|
include Aws::Structure
|
829
852
|
end
|
830
853
|
|
@@ -839,6 +862,7 @@ module Aws::IoTAnalytics
|
|
839
862
|
class CreatePipelineResponse < Struct.new(
|
840
863
|
:pipeline_name,
|
841
864
|
:pipeline_arn)
|
865
|
+
SENSITIVE = []
|
842
866
|
include Aws::Structure
|
843
867
|
end
|
844
868
|
|
@@ -877,6 +901,7 @@ module Aws::IoTAnalytics
|
|
877
901
|
:bucket,
|
878
902
|
:key_prefix,
|
879
903
|
:role_arn)
|
904
|
+
SENSITIVE = []
|
880
905
|
include Aws::Structure
|
881
906
|
end
|
882
907
|
|
@@ -902,6 +927,7 @@ module Aws::IoTAnalytics
|
|
902
927
|
:bucket,
|
903
928
|
:key_prefix,
|
904
929
|
:role_arn)
|
930
|
+
SENSITIVE = []
|
905
931
|
include Aws::Structure
|
906
932
|
end
|
907
933
|
|
@@ -940,6 +966,7 @@ module Aws::IoTAnalytics
|
|
940
966
|
:bucket,
|
941
967
|
:key_prefix,
|
942
968
|
:role_arn)
|
969
|
+
SENSITIVE = []
|
943
970
|
include Aws::Structure
|
944
971
|
end
|
945
972
|
|
@@ -965,6 +992,7 @@ module Aws::IoTAnalytics
|
|
965
992
|
:bucket,
|
966
993
|
:key_prefix,
|
967
994
|
:role_arn)
|
995
|
+
SENSITIVE = []
|
968
996
|
include Aws::Structure
|
969
997
|
end
|
970
998
|
|
@@ -1030,6 +1058,7 @@ module Aws::IoTAnalytics
|
|
1030
1058
|
:last_update_time,
|
1031
1059
|
:retention_period,
|
1032
1060
|
:versioning_configuration)
|
1061
|
+
SENSITIVE = []
|
1033
1062
|
include Aws::Structure
|
1034
1063
|
end
|
1035
1064
|
|
@@ -1096,6 +1125,7 @@ module Aws::IoTAnalytics
|
|
1096
1125
|
:action_name,
|
1097
1126
|
:query_action,
|
1098
1127
|
:container_action)
|
1128
|
+
SENSITIVE = []
|
1099
1129
|
include Aws::Structure
|
1100
1130
|
end
|
1101
1131
|
|
@@ -1115,6 +1145,7 @@ module Aws::IoTAnalytics
|
|
1115
1145
|
class DatasetActionSummary < Struct.new(
|
1116
1146
|
:action_name,
|
1117
1147
|
:action_type)
|
1148
|
+
SENSITIVE = []
|
1118
1149
|
include Aws::Structure
|
1119
1150
|
end
|
1120
1151
|
|
@@ -1152,6 +1183,7 @@ module Aws::IoTAnalytics
|
|
1152
1183
|
class DatasetContentDeliveryDestination < Struct.new(
|
1153
1184
|
:iot_events_destination_configuration,
|
1154
1185
|
:s3_destination_configuration)
|
1186
|
+
SENSITIVE = []
|
1155
1187
|
include Aws::Structure
|
1156
1188
|
end
|
1157
1189
|
|
@@ -1191,6 +1223,7 @@ module Aws::IoTAnalytics
|
|
1191
1223
|
class DatasetContentDeliveryRule < Struct.new(
|
1192
1224
|
:entry_name,
|
1193
1225
|
:destination)
|
1226
|
+
SENSITIVE = []
|
1194
1227
|
include Aws::Structure
|
1195
1228
|
end
|
1196
1229
|
|
@@ -1209,6 +1242,7 @@ module Aws::IoTAnalytics
|
|
1209
1242
|
class DatasetContentStatus < Struct.new(
|
1210
1243
|
:state,
|
1211
1244
|
:reason)
|
1245
|
+
SENSITIVE = []
|
1212
1246
|
include Aws::Structure
|
1213
1247
|
end
|
1214
1248
|
|
@@ -1242,6 +1276,7 @@ module Aws::IoTAnalytics
|
|
1242
1276
|
:creation_time,
|
1243
1277
|
:schedule_time,
|
1244
1278
|
:completion_time)
|
1279
|
+
SENSITIVE = []
|
1245
1280
|
include Aws::Structure
|
1246
1281
|
end
|
1247
1282
|
|
@@ -1262,6 +1297,7 @@ module Aws::IoTAnalytics
|
|
1262
1297
|
#
|
1263
1298
|
class DatasetContentVersionValue < Struct.new(
|
1264
1299
|
:dataset_name)
|
1300
|
+
SENSITIVE = []
|
1265
1301
|
include Aws::Structure
|
1266
1302
|
end
|
1267
1303
|
|
@@ -1278,6 +1314,7 @@ module Aws::IoTAnalytics
|
|
1278
1314
|
class DatasetEntry < Struct.new(
|
1279
1315
|
:entry_name,
|
1280
1316
|
:data_uri)
|
1317
|
+
SENSITIVE = []
|
1281
1318
|
include Aws::Structure
|
1282
1319
|
end
|
1283
1320
|
|
@@ -1317,6 +1354,7 @@ module Aws::IoTAnalytics
|
|
1317
1354
|
:last_update_time,
|
1318
1355
|
:triggers,
|
1319
1356
|
:actions)
|
1357
|
+
SENSITIVE = []
|
1320
1358
|
include Aws::Structure
|
1321
1359
|
end
|
1322
1360
|
|
@@ -1347,6 +1385,7 @@ module Aws::IoTAnalytics
|
|
1347
1385
|
class DatasetTrigger < Struct.new(
|
1348
1386
|
:schedule,
|
1349
1387
|
:dataset)
|
1388
|
+
SENSITIVE = []
|
1350
1389
|
include Aws::Structure
|
1351
1390
|
end
|
1352
1391
|
|
@@ -1405,6 +1444,7 @@ module Aws::IoTAnalytics
|
|
1405
1444
|
:retention_period,
|
1406
1445
|
:creation_time,
|
1407
1446
|
:last_update_time)
|
1447
|
+
SENSITIVE = []
|
1408
1448
|
include Aws::Structure
|
1409
1449
|
end
|
1410
1450
|
|
@@ -1430,6 +1470,7 @@ module Aws::IoTAnalytics
|
|
1430
1470
|
class DatastoreActivity < Struct.new(
|
1431
1471
|
:name,
|
1432
1472
|
:datastore_name)
|
1473
|
+
SENSITIVE = []
|
1433
1474
|
include Aws::Structure
|
1434
1475
|
end
|
1435
1476
|
|
@@ -1441,6 +1482,7 @@ module Aws::IoTAnalytics
|
|
1441
1482
|
#
|
1442
1483
|
class DatastoreStatistics < Struct.new(
|
1443
1484
|
:size)
|
1485
|
+
SENSITIVE = []
|
1444
1486
|
include Aws::Structure
|
1445
1487
|
end
|
1446
1488
|
|
@@ -1480,6 +1522,7 @@ module Aws::IoTAnalytics
|
|
1480
1522
|
class DatastoreStorage < Struct.new(
|
1481
1523
|
:service_managed_s3,
|
1482
1524
|
:customer_managed_s3)
|
1525
|
+
SENSITIVE = []
|
1483
1526
|
include Aws::Structure
|
1484
1527
|
end
|
1485
1528
|
|
@@ -1497,6 +1540,7 @@ module Aws::IoTAnalytics
|
|
1497
1540
|
class DatastoreStorageSummary < Struct.new(
|
1498
1541
|
:service_managed_s3,
|
1499
1542
|
:customer_managed_s3)
|
1543
|
+
SENSITIVE = []
|
1500
1544
|
include Aws::Structure
|
1501
1545
|
end
|
1502
1546
|
|
@@ -1528,6 +1572,7 @@ module Aws::IoTAnalytics
|
|
1528
1572
|
:status,
|
1529
1573
|
:creation_time,
|
1530
1574
|
:last_update_time)
|
1575
|
+
SENSITIVE = []
|
1531
1576
|
include Aws::Structure
|
1532
1577
|
end
|
1533
1578
|
|
@@ -1544,6 +1589,7 @@ module Aws::IoTAnalytics
|
|
1544
1589
|
#
|
1545
1590
|
class DeleteChannelRequest < Struct.new(
|
1546
1591
|
:channel_name)
|
1592
|
+
SENSITIVE = []
|
1547
1593
|
include Aws::Structure
|
1548
1594
|
end
|
1549
1595
|
|
@@ -1569,6 +1615,7 @@ module Aws::IoTAnalytics
|
|
1569
1615
|
class DeleteDatasetContentRequest < Struct.new(
|
1570
1616
|
:dataset_name,
|
1571
1617
|
:version_id)
|
1618
|
+
SENSITIVE = []
|
1572
1619
|
include Aws::Structure
|
1573
1620
|
end
|
1574
1621
|
|
@@ -1585,6 +1632,7 @@ module Aws::IoTAnalytics
|
|
1585
1632
|
#
|
1586
1633
|
class DeleteDatasetRequest < Struct.new(
|
1587
1634
|
:dataset_name)
|
1635
|
+
SENSITIVE = []
|
1588
1636
|
include Aws::Structure
|
1589
1637
|
end
|
1590
1638
|
|
@@ -1601,6 +1649,7 @@ module Aws::IoTAnalytics
|
|
1601
1649
|
#
|
1602
1650
|
class DeleteDatastoreRequest < Struct.new(
|
1603
1651
|
:datastore_name)
|
1652
|
+
SENSITIVE = []
|
1604
1653
|
include Aws::Structure
|
1605
1654
|
end
|
1606
1655
|
|
@@ -1617,6 +1666,7 @@ module Aws::IoTAnalytics
|
|
1617
1666
|
#
|
1618
1667
|
class DeletePipelineRequest < Struct.new(
|
1619
1668
|
:pipeline_name)
|
1669
|
+
SENSITIVE = []
|
1620
1670
|
include Aws::Structure
|
1621
1671
|
end
|
1622
1672
|
|
@@ -1654,6 +1704,7 @@ module Aws::IoTAnalytics
|
|
1654
1704
|
class DeltaTime < Struct.new(
|
1655
1705
|
:offset_seconds,
|
1656
1706
|
:time_expression)
|
1707
|
+
SENSITIVE = []
|
1657
1708
|
include Aws::Structure
|
1658
1709
|
end
|
1659
1710
|
|
@@ -1678,6 +1729,7 @@ module Aws::IoTAnalytics
|
|
1678
1729
|
class DescribeChannelRequest < Struct.new(
|
1679
1730
|
:channel_name,
|
1680
1731
|
:include_statistics)
|
1732
|
+
SENSITIVE = []
|
1681
1733
|
include Aws::Structure
|
1682
1734
|
end
|
1683
1735
|
|
@@ -1693,6 +1745,7 @@ module Aws::IoTAnalytics
|
|
1693
1745
|
class DescribeChannelResponse < Struct.new(
|
1694
1746
|
:channel,
|
1695
1747
|
:statistics)
|
1748
|
+
SENSITIVE = []
|
1696
1749
|
include Aws::Structure
|
1697
1750
|
end
|
1698
1751
|
|
@@ -1709,6 +1762,7 @@ module Aws::IoTAnalytics
|
|
1709
1762
|
#
|
1710
1763
|
class DescribeDatasetRequest < Struct.new(
|
1711
1764
|
:dataset_name)
|
1765
|
+
SENSITIVE = []
|
1712
1766
|
include Aws::Structure
|
1713
1767
|
end
|
1714
1768
|
|
@@ -1718,6 +1772,7 @@ module Aws::IoTAnalytics
|
|
1718
1772
|
#
|
1719
1773
|
class DescribeDatasetResponse < Struct.new(
|
1720
1774
|
:dataset)
|
1775
|
+
SENSITIVE = []
|
1721
1776
|
include Aws::Structure
|
1722
1777
|
end
|
1723
1778
|
|
@@ -1742,6 +1797,7 @@ module Aws::IoTAnalytics
|
|
1742
1797
|
class DescribeDatastoreRequest < Struct.new(
|
1743
1798
|
:datastore_name,
|
1744
1799
|
:include_statistics)
|
1800
|
+
SENSITIVE = []
|
1745
1801
|
include Aws::Structure
|
1746
1802
|
end
|
1747
1803
|
|
@@ -1757,6 +1813,7 @@ module Aws::IoTAnalytics
|
|
1757
1813
|
class DescribeDatastoreResponse < Struct.new(
|
1758
1814
|
:datastore,
|
1759
1815
|
:statistics)
|
1816
|
+
SENSITIVE = []
|
1760
1817
|
include Aws::Structure
|
1761
1818
|
end
|
1762
1819
|
|
@@ -1770,6 +1827,7 @@ module Aws::IoTAnalytics
|
|
1770
1827
|
#
|
1771
1828
|
class DescribeLoggingOptionsResponse < Struct.new(
|
1772
1829
|
:logging_options)
|
1830
|
+
SENSITIVE = []
|
1773
1831
|
include Aws::Structure
|
1774
1832
|
end
|
1775
1833
|
|
@@ -1786,6 +1844,7 @@ module Aws::IoTAnalytics
|
|
1786
1844
|
#
|
1787
1845
|
class DescribePipelineRequest < Struct.new(
|
1788
1846
|
:pipeline_name)
|
1847
|
+
SENSITIVE = []
|
1789
1848
|
include Aws::Structure
|
1790
1849
|
end
|
1791
1850
|
|
@@ -1795,6 +1854,7 @@ module Aws::IoTAnalytics
|
|
1795
1854
|
#
|
1796
1855
|
class DescribePipelineResponse < Struct.new(
|
1797
1856
|
:pipeline)
|
1857
|
+
SENSITIVE = []
|
1798
1858
|
include Aws::Structure
|
1799
1859
|
end
|
1800
1860
|
|
@@ -1840,6 +1900,7 @@ module Aws::IoTAnalytics
|
|
1840
1900
|
:thing_name,
|
1841
1901
|
:role_arn,
|
1842
1902
|
:next)
|
1903
|
+
SENSITIVE = []
|
1843
1904
|
include Aws::Structure
|
1844
1905
|
end
|
1845
1906
|
|
@@ -1884,6 +1945,7 @@ module Aws::IoTAnalytics
|
|
1884
1945
|
:thing_name,
|
1885
1946
|
:role_arn,
|
1886
1947
|
:next)
|
1948
|
+
SENSITIVE = []
|
1887
1949
|
include Aws::Structure
|
1888
1950
|
end
|
1889
1951
|
|
@@ -1900,6 +1962,7 @@ module Aws::IoTAnalytics
|
|
1900
1962
|
class EstimatedResourceSize < Struct.new(
|
1901
1963
|
:estimated_size_in_bytes,
|
1902
1964
|
:estimated_on)
|
1965
|
+
SENSITIVE = []
|
1903
1966
|
include Aws::Structure
|
1904
1967
|
end
|
1905
1968
|
|
@@ -1931,6 +1994,7 @@ module Aws::IoTAnalytics
|
|
1931
1994
|
:name,
|
1932
1995
|
:filter,
|
1933
1996
|
:next)
|
1997
|
+
SENSITIVE = []
|
1934
1998
|
include Aws::Structure
|
1935
1999
|
end
|
1936
2000
|
|
@@ -1956,6 +2020,7 @@ module Aws::IoTAnalytics
|
|
1956
2020
|
class GetDatasetContentRequest < Struct.new(
|
1957
2021
|
:dataset_name,
|
1958
2022
|
:version_id)
|
2023
|
+
SENSITIVE = []
|
1959
2024
|
include Aws::Structure
|
1960
2025
|
end
|
1961
2026
|
|
@@ -1975,6 +2040,7 @@ module Aws::IoTAnalytics
|
|
1975
2040
|
:entries,
|
1976
2041
|
:timestamp,
|
1977
2042
|
:status)
|
2043
|
+
SENSITIVE = []
|
1978
2044
|
include Aws::Structure
|
1979
2045
|
end
|
1980
2046
|
|
@@ -2005,6 +2071,7 @@ module Aws::IoTAnalytics
|
|
2005
2071
|
class GlueConfiguration < Struct.new(
|
2006
2072
|
:table_name,
|
2007
2073
|
:database_name)
|
2074
|
+
SENSITIVE = []
|
2008
2075
|
include Aws::Structure
|
2009
2076
|
end
|
2010
2077
|
|
@@ -2015,6 +2082,7 @@ module Aws::IoTAnalytics
|
|
2015
2082
|
#
|
2016
2083
|
class InternalFailureException < Struct.new(
|
2017
2084
|
:message)
|
2085
|
+
SENSITIVE = []
|
2018
2086
|
include Aws::Structure
|
2019
2087
|
end
|
2020
2088
|
|
@@ -2025,6 +2093,7 @@ module Aws::IoTAnalytics
|
|
2025
2093
|
#
|
2026
2094
|
class InvalidRequestException < Struct.new(
|
2027
2095
|
:message)
|
2096
|
+
SENSITIVE = []
|
2028
2097
|
include Aws::Structure
|
2029
2098
|
end
|
2030
2099
|
|
@@ -2052,6 +2121,7 @@ module Aws::IoTAnalytics
|
|
2052
2121
|
class IotEventsDestinationConfiguration < Struct.new(
|
2053
2122
|
:input_name,
|
2054
2123
|
:role_arn)
|
2124
|
+
SENSITIVE = []
|
2055
2125
|
include Aws::Structure
|
2056
2126
|
end
|
2057
2127
|
|
@@ -2092,6 +2162,7 @@ module Aws::IoTAnalytics
|
|
2092
2162
|
:lambda_name,
|
2093
2163
|
:batch_size,
|
2094
2164
|
:next)
|
2165
|
+
SENSITIVE = []
|
2095
2166
|
include Aws::Structure
|
2096
2167
|
end
|
2097
2168
|
|
@@ -2102,6 +2173,7 @@ module Aws::IoTAnalytics
|
|
2102
2173
|
#
|
2103
2174
|
class LimitExceededException < Struct.new(
|
2104
2175
|
:message)
|
2176
|
+
SENSITIVE = []
|
2105
2177
|
include Aws::Structure
|
2106
2178
|
end
|
2107
2179
|
|
@@ -2126,6 +2198,7 @@ module Aws::IoTAnalytics
|
|
2126
2198
|
class ListChannelsRequest < Struct.new(
|
2127
2199
|
:next_token,
|
2128
2200
|
:max_results)
|
2201
|
+
SENSITIVE = []
|
2129
2202
|
include Aws::Structure
|
2130
2203
|
end
|
2131
2204
|
|
@@ -2141,6 +2214,7 @@ module Aws::IoTAnalytics
|
|
2141
2214
|
class ListChannelsResponse < Struct.new(
|
2142
2215
|
:channel_summaries,
|
2143
2216
|
:next_token)
|
2217
|
+
SENSITIVE = []
|
2144
2218
|
include Aws::Structure
|
2145
2219
|
end
|
2146
2220
|
|
@@ -2186,6 +2260,7 @@ module Aws::IoTAnalytics
|
|
2186
2260
|
:max_results,
|
2187
2261
|
:scheduled_on_or_after,
|
2188
2262
|
:scheduled_before)
|
2263
|
+
SENSITIVE = []
|
2189
2264
|
include Aws::Structure
|
2190
2265
|
end
|
2191
2266
|
|
@@ -2201,6 +2276,7 @@ module Aws::IoTAnalytics
|
|
2201
2276
|
class ListDatasetContentsResponse < Struct.new(
|
2202
2277
|
:dataset_content_summaries,
|
2203
2278
|
:next_token)
|
2279
|
+
SENSITIVE = []
|
2204
2280
|
include Aws::Structure
|
2205
2281
|
end
|
2206
2282
|
|
@@ -2225,6 +2301,7 @@ module Aws::IoTAnalytics
|
|
2225
2301
|
class ListDatasetsRequest < Struct.new(
|
2226
2302
|
:next_token,
|
2227
2303
|
:max_results)
|
2304
|
+
SENSITIVE = []
|
2228
2305
|
include Aws::Structure
|
2229
2306
|
end
|
2230
2307
|
|
@@ -2240,6 +2317,7 @@ module Aws::IoTAnalytics
|
|
2240
2317
|
class ListDatasetsResponse < Struct.new(
|
2241
2318
|
:dataset_summaries,
|
2242
2319
|
:next_token)
|
2320
|
+
SENSITIVE = []
|
2243
2321
|
include Aws::Structure
|
2244
2322
|
end
|
2245
2323
|
|
@@ -2264,6 +2342,7 @@ module Aws::IoTAnalytics
|
|
2264
2342
|
class ListDatastoresRequest < Struct.new(
|
2265
2343
|
:next_token,
|
2266
2344
|
:max_results)
|
2345
|
+
SENSITIVE = []
|
2267
2346
|
include Aws::Structure
|
2268
2347
|
end
|
2269
2348
|
|
@@ -2279,6 +2358,7 @@ module Aws::IoTAnalytics
|
|
2279
2358
|
class ListDatastoresResponse < Struct.new(
|
2280
2359
|
:datastore_summaries,
|
2281
2360
|
:next_token)
|
2361
|
+
SENSITIVE = []
|
2282
2362
|
include Aws::Structure
|
2283
2363
|
end
|
2284
2364
|
|
@@ -2303,6 +2383,7 @@ module Aws::IoTAnalytics
|
|
2303
2383
|
class ListPipelinesRequest < Struct.new(
|
2304
2384
|
:next_token,
|
2305
2385
|
:max_results)
|
2386
|
+
SENSITIVE = []
|
2306
2387
|
include Aws::Structure
|
2307
2388
|
end
|
2308
2389
|
|
@@ -2318,6 +2399,7 @@ module Aws::IoTAnalytics
|
|
2318
2399
|
class ListPipelinesResponse < Struct.new(
|
2319
2400
|
:pipeline_summaries,
|
2320
2401
|
:next_token)
|
2402
|
+
SENSITIVE = []
|
2321
2403
|
include Aws::Structure
|
2322
2404
|
end
|
2323
2405
|
|
@@ -2334,6 +2416,7 @@ module Aws::IoTAnalytics
|
|
2334
2416
|
#
|
2335
2417
|
class ListTagsForResourceRequest < Struct.new(
|
2336
2418
|
:resource_arn)
|
2419
|
+
SENSITIVE = []
|
2337
2420
|
include Aws::Structure
|
2338
2421
|
end
|
2339
2422
|
|
@@ -2343,6 +2426,7 @@ module Aws::IoTAnalytics
|
|
2343
2426
|
#
|
2344
2427
|
class ListTagsForResourceResponse < Struct.new(
|
2345
2428
|
:tags)
|
2429
|
+
SENSITIVE = []
|
2346
2430
|
include Aws::Structure
|
2347
2431
|
end
|
2348
2432
|
|
@@ -2374,6 +2458,7 @@ module Aws::IoTAnalytics
|
|
2374
2458
|
:role_arn,
|
2375
2459
|
:level,
|
2376
2460
|
:enabled)
|
2461
|
+
SENSITIVE = []
|
2377
2462
|
include Aws::Structure
|
2378
2463
|
end
|
2379
2464
|
|
@@ -2413,6 +2498,7 @@ module Aws::IoTAnalytics
|
|
2413
2498
|
:attribute,
|
2414
2499
|
:math,
|
2415
2500
|
:next)
|
2501
|
+
SENSITIVE = []
|
2416
2502
|
include Aws::Structure
|
2417
2503
|
end
|
2418
2504
|
|
@@ -2440,6 +2526,7 @@ module Aws::IoTAnalytics
|
|
2440
2526
|
class Message < Struct.new(
|
2441
2527
|
:message_id,
|
2442
2528
|
:payload)
|
2529
|
+
SENSITIVE = []
|
2443
2530
|
include Aws::Structure
|
2444
2531
|
end
|
2445
2532
|
|
@@ -2460,6 +2547,7 @@ module Aws::IoTAnalytics
|
|
2460
2547
|
#
|
2461
2548
|
class OutputFileUriValue < Struct.new(
|
2462
2549
|
:file_name)
|
2550
|
+
SENSITIVE = []
|
2463
2551
|
include Aws::Structure
|
2464
2552
|
end
|
2465
2553
|
|
@@ -2496,6 +2584,7 @@ module Aws::IoTAnalytics
|
|
2496
2584
|
:reprocessing_summaries,
|
2497
2585
|
:creation_time,
|
2498
2586
|
:last_update_time)
|
2587
|
+
SENSITIVE = []
|
2499
2588
|
include Aws::Structure
|
2500
2589
|
end
|
2501
2590
|
|
@@ -2618,6 +2707,7 @@ module Aws::IoTAnalytics
|
|
2618
2707
|
:math,
|
2619
2708
|
:device_registry_enrich,
|
2620
2709
|
:device_shadow_enrich)
|
2710
|
+
SENSITIVE = []
|
2621
2711
|
include Aws::Structure
|
2622
2712
|
end
|
2623
2713
|
|
@@ -2644,6 +2734,7 @@ module Aws::IoTAnalytics
|
|
2644
2734
|
:reprocessing_summaries,
|
2645
2735
|
:creation_time,
|
2646
2736
|
:last_update_time)
|
2737
|
+
SENSITIVE = []
|
2647
2738
|
include Aws::Structure
|
2648
2739
|
end
|
2649
2740
|
|
@@ -2664,6 +2755,7 @@ module Aws::IoTAnalytics
|
|
2664
2755
|
#
|
2665
2756
|
class PutLoggingOptionsRequest < Struct.new(
|
2666
2757
|
:logging_options)
|
2758
|
+
SENSITIVE = []
|
2667
2759
|
include Aws::Structure
|
2668
2760
|
end
|
2669
2761
|
|
@@ -2687,6 +2779,7 @@ module Aws::IoTAnalytics
|
|
2687
2779
|
#
|
2688
2780
|
class QueryFilter < Struct.new(
|
2689
2781
|
:delta_time)
|
2782
|
+
SENSITIVE = []
|
2690
2783
|
include Aws::Structure
|
2691
2784
|
end
|
2692
2785
|
|
@@ -2717,6 +2810,7 @@ module Aws::IoTAnalytics
|
|
2717
2810
|
:name,
|
2718
2811
|
:attributes,
|
2719
2812
|
:next)
|
2813
|
+
SENSITIVE = []
|
2720
2814
|
include Aws::Structure
|
2721
2815
|
end
|
2722
2816
|
|
@@ -2738,6 +2832,7 @@ module Aws::IoTAnalytics
|
|
2738
2832
|
:id,
|
2739
2833
|
:status,
|
2740
2834
|
:creation_time)
|
2835
|
+
SENSITIVE = []
|
2741
2836
|
include Aws::Structure
|
2742
2837
|
end
|
2743
2838
|
|
@@ -2758,6 +2853,7 @@ module Aws::IoTAnalytics
|
|
2758
2853
|
:message,
|
2759
2854
|
:resource_id,
|
2760
2855
|
:resource_arn)
|
2856
|
+
SENSITIVE = []
|
2761
2857
|
include Aws::Structure
|
2762
2858
|
end
|
2763
2859
|
|
@@ -2786,6 +2882,7 @@ module Aws::IoTAnalytics
|
|
2786
2882
|
class ResourceConfiguration < Struct.new(
|
2787
2883
|
:compute_type,
|
2788
2884
|
:volume_size_in_gb)
|
2885
|
+
SENSITIVE = []
|
2789
2886
|
include Aws::Structure
|
2790
2887
|
end
|
2791
2888
|
|
@@ -2796,6 +2893,7 @@ module Aws::IoTAnalytics
|
|
2796
2893
|
#
|
2797
2894
|
class ResourceNotFoundException < Struct.new(
|
2798
2895
|
:message)
|
2896
|
+
SENSITIVE = []
|
2799
2897
|
include Aws::Structure
|
2800
2898
|
end
|
2801
2899
|
|
@@ -2821,6 +2919,7 @@ module Aws::IoTAnalytics
|
|
2821
2919
|
class RetentionPeriod < Struct.new(
|
2822
2920
|
:unlimited,
|
2823
2921
|
:number_of_days)
|
2922
|
+
SENSITIVE = []
|
2824
2923
|
include Aws::Structure
|
2825
2924
|
end
|
2826
2925
|
|
@@ -2906,6 +3005,7 @@ module Aws::IoTAnalytics
|
|
2906
3005
|
class RunPipelineActivityRequest < Struct.new(
|
2907
3006
|
:pipeline_activity,
|
2908
3007
|
:payloads)
|
3008
|
+
SENSITIVE = []
|
2909
3009
|
include Aws::Structure
|
2910
3010
|
end
|
2911
3011
|
|
@@ -2923,6 +3023,7 @@ module Aws::IoTAnalytics
|
|
2923
3023
|
class RunPipelineActivityResponse < Struct.new(
|
2924
3024
|
:payloads,
|
2925
3025
|
:log_result)
|
3026
|
+
SENSITIVE = []
|
2926
3027
|
include Aws::Structure
|
2927
3028
|
end
|
2928
3029
|
|
@@ -2973,6 +3074,7 @@ module Aws::IoTAnalytics
|
|
2973
3074
|
:key,
|
2974
3075
|
:glue_configuration,
|
2975
3076
|
:role_arn)
|
3077
|
+
SENSITIVE = []
|
2976
3078
|
include Aws::Structure
|
2977
3079
|
end
|
2978
3080
|
|
@@ -3009,6 +3111,7 @@ module Aws::IoTAnalytics
|
|
3009
3111
|
:max_messages,
|
3010
3112
|
:start_time,
|
3011
3113
|
:end_time)
|
3114
|
+
SENSITIVE = []
|
3012
3115
|
include Aws::Structure
|
3013
3116
|
end
|
3014
3117
|
|
@@ -3019,6 +3122,7 @@ module Aws::IoTAnalytics
|
|
3019
3122
|
#
|
3020
3123
|
class SampleChannelDataResponse < Struct.new(
|
3021
3124
|
:payloads)
|
3125
|
+
SENSITIVE = []
|
3022
3126
|
include Aws::Structure
|
3023
3127
|
end
|
3024
3128
|
|
@@ -3043,6 +3147,7 @@ module Aws::IoTAnalytics
|
|
3043
3147
|
#
|
3044
3148
|
class Schedule < Struct.new(
|
3045
3149
|
:expression)
|
3150
|
+
SENSITIVE = []
|
3046
3151
|
include Aws::Structure
|
3047
3152
|
end
|
3048
3153
|
|
@@ -3074,6 +3179,7 @@ module Aws::IoTAnalytics
|
|
3074
3179
|
:name,
|
3075
3180
|
:attributes,
|
3076
3181
|
:next)
|
3182
|
+
SENSITIVE = []
|
3077
3183
|
include Aws::Structure
|
3078
3184
|
end
|
3079
3185
|
|
@@ -3111,6 +3217,7 @@ module Aws::IoTAnalytics
|
|
3111
3217
|
#
|
3112
3218
|
class ServiceUnavailableException < Struct.new(
|
3113
3219
|
:message)
|
3220
|
+
SENSITIVE = []
|
3114
3221
|
include Aws::Structure
|
3115
3222
|
end
|
3116
3223
|
|
@@ -3142,6 +3249,7 @@ module Aws::IoTAnalytics
|
|
3142
3249
|
class SqlQueryDatasetAction < Struct.new(
|
3143
3250
|
:sql_query,
|
3144
3251
|
:filters)
|
3252
|
+
SENSITIVE = []
|
3145
3253
|
include Aws::Structure
|
3146
3254
|
end
|
3147
3255
|
|
@@ -3170,6 +3278,7 @@ module Aws::IoTAnalytics
|
|
3170
3278
|
:pipeline_name,
|
3171
3279
|
:start_time,
|
3172
3280
|
:end_time)
|
3281
|
+
SENSITIVE = []
|
3173
3282
|
include Aws::Structure
|
3174
3283
|
end
|
3175
3284
|
|
@@ -3179,6 +3288,7 @@ module Aws::IoTAnalytics
|
|
3179
3288
|
#
|
3180
3289
|
class StartPipelineReprocessingResponse < Struct.new(
|
3181
3290
|
:reprocessing_id)
|
3291
|
+
SENSITIVE = []
|
3182
3292
|
include Aws::Structure
|
3183
3293
|
end
|
3184
3294
|
|
@@ -3203,6 +3313,7 @@ module Aws::IoTAnalytics
|
|
3203
3313
|
class Tag < Struct.new(
|
3204
3314
|
:key,
|
3205
3315
|
:value)
|
3316
|
+
SENSITIVE = []
|
3206
3317
|
include Aws::Structure
|
3207
3318
|
end
|
3208
3319
|
|
@@ -3230,6 +3341,7 @@ module Aws::IoTAnalytics
|
|
3230
3341
|
class TagResourceRequest < Struct.new(
|
3231
3342
|
:resource_arn,
|
3232
3343
|
:tags)
|
3344
|
+
SENSITIVE = []
|
3233
3345
|
include Aws::Structure
|
3234
3346
|
end
|
3235
3347
|
|
@@ -3242,6 +3354,7 @@ module Aws::IoTAnalytics
|
|
3242
3354
|
#
|
3243
3355
|
class ThrottlingException < Struct.new(
|
3244
3356
|
:message)
|
3357
|
+
SENSITIVE = []
|
3245
3358
|
include Aws::Structure
|
3246
3359
|
end
|
3247
3360
|
|
@@ -3262,6 +3375,7 @@ module Aws::IoTAnalytics
|
|
3262
3375
|
#
|
3263
3376
|
class TriggeringDataset < Struct.new(
|
3264
3377
|
:name)
|
3378
|
+
SENSITIVE = []
|
3265
3379
|
include Aws::Structure
|
3266
3380
|
end
|
3267
3381
|
|
@@ -3284,6 +3398,7 @@ module Aws::IoTAnalytics
|
|
3284
3398
|
class UntagResourceRequest < Struct.new(
|
3285
3399
|
:resource_arn,
|
3286
3400
|
:tag_keys)
|
3401
|
+
SENSITIVE = []
|
3287
3402
|
include Aws::Structure
|
3288
3403
|
end
|
3289
3404
|
|
@@ -3330,6 +3445,7 @@ module Aws::IoTAnalytics
|
|
3330
3445
|
:channel_name,
|
3331
3446
|
:channel_storage,
|
3332
3447
|
:retention_period)
|
3448
|
+
SENSITIVE = []
|
3333
3449
|
include Aws::Structure
|
3334
3450
|
end
|
3335
3451
|
|
@@ -3453,6 +3569,7 @@ module Aws::IoTAnalytics
|
|
3453
3569
|
:content_delivery_rules,
|
3454
3570
|
:retention_period,
|
3455
3571
|
:versioning_configuration)
|
3572
|
+
SENSITIVE = []
|
3456
3573
|
include Aws::Structure
|
3457
3574
|
end
|
3458
3575
|
|
@@ -3497,6 +3614,7 @@ module Aws::IoTAnalytics
|
|
3497
3614
|
:datastore_name,
|
3498
3615
|
:retention_period,
|
3499
3616
|
:datastore_storage)
|
3617
|
+
SENSITIVE = []
|
3500
3618
|
include Aws::Structure
|
3501
3619
|
end
|
3502
3620
|
|
@@ -3591,6 +3709,7 @@ module Aws::IoTAnalytics
|
|
3591
3709
|
class UpdatePipelineRequest < Struct.new(
|
3592
3710
|
:pipeline_name,
|
3593
3711
|
:pipeline_activities)
|
3712
|
+
SENSITIVE = []
|
3594
3713
|
include Aws::Structure
|
3595
3714
|
end
|
3596
3715
|
|
@@ -3642,6 +3761,7 @@ module Aws::IoTAnalytics
|
|
3642
3761
|
:double_value,
|
3643
3762
|
:dataset_content_version_value,
|
3644
3763
|
:output_file_uri_value)
|
3764
|
+
SENSITIVE = []
|
3645
3765
|
include Aws::Structure
|
3646
3766
|
end
|
3647
3767
|
|
@@ -3667,6 +3787,7 @@ module Aws::IoTAnalytics
|
|
3667
3787
|
class VersioningConfiguration < Struct.new(
|
3668
3788
|
:unlimited,
|
3669
3789
|
:max_versions)
|
3790
|
+
SENSITIVE = []
|
3670
3791
|
include Aws::Structure
|
3671
3792
|
end
|
3672
3793
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotanalytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.109.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|