aws-sdk-iotevents 1.15.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48d0a8de12b5962e9860ed10712418bf4f25090ba6c4dea0721cc9caed37e9b2
|
4
|
+
data.tar.gz: b1207b793e6cafb08f40fa44c3f0ae06c3722a5da7e5267bbf8d3e021ec38fc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce7edd0bd073a491c67c37cd78d724998d755d39d4f277a6e45441511f01eebadf790aba3cc30ed687eb6339b1be6a896460c7d13651fbfbc98a0b79dab052d8
|
7
|
+
data.tar.gz: 6e6f9ef65a8ba10e22c35fb8e15c75ecd4d896ba3b0f03b8f5cd17de163253d0763e7c354295262636ce19a94c599adb69bef1be07be9a015b215e575a2c8936
|
data/lib/aws-sdk-iotevents.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-iotevents/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::IoTEvents
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.20.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::IoTEvents
|
|
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::IoTEvents
|
|
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::IoTEvents
|
|
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::IoTEvents
|
|
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
|
@@ -2054,7 +2073,7 @@ module Aws::IoTEvents
|
|
2054
2073
|
params: params,
|
2055
2074
|
config: config)
|
2056
2075
|
context[:gem_name] = 'aws-sdk-iotevents'
|
2057
|
-
context[:gem_version] = '1.
|
2076
|
+
context[:gem_version] = '1.20.0'
|
2058
2077
|
Seahorse::Client::Request.new(handlers, context)
|
2059
2078
|
end
|
2060
2079
|
|
@@ -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:
|
@@ -211,6 +213,7 @@ module Aws::IoTEvents
|
|
211
213
|
:dynamo_db,
|
212
214
|
:dynamo_d_bv_2,
|
213
215
|
:iot_site_wise)
|
216
|
+
SENSITIVE = []
|
214
217
|
include Aws::Structure
|
215
218
|
end
|
216
219
|
|
@@ -255,6 +258,7 @@ module Aws::IoTEvents
|
|
255
258
|
class AssetPropertyTimestamp < Struct.new(
|
256
259
|
:time_in_seconds,
|
257
260
|
:offset_in_nanos)
|
261
|
+
SENSITIVE = []
|
258
262
|
include Aws::Structure
|
259
263
|
end
|
260
264
|
|
@@ -312,6 +316,7 @@ module Aws::IoTEvents
|
|
312
316
|
:value,
|
313
317
|
:timestamp,
|
314
318
|
:quality)
|
319
|
+
SENSITIVE = []
|
315
320
|
include Aws::Structure
|
316
321
|
end
|
317
322
|
|
@@ -378,6 +383,7 @@ module Aws::IoTEvents
|
|
378
383
|
:integer_value,
|
379
384
|
:double_value,
|
380
385
|
:boolean_value)
|
386
|
+
SENSITIVE = []
|
381
387
|
include Aws::Structure
|
382
388
|
end
|
383
389
|
|
@@ -408,6 +414,7 @@ module Aws::IoTEvents
|
|
408
414
|
#
|
409
415
|
class Attribute < Struct.new(
|
410
416
|
:json_path)
|
417
|
+
SENSITIVE = []
|
411
418
|
include Aws::Structure
|
412
419
|
end
|
413
420
|
|
@@ -426,6 +433,7 @@ module Aws::IoTEvents
|
|
426
433
|
#
|
427
434
|
class ClearTimerAction < Struct.new(
|
428
435
|
:timer_name)
|
436
|
+
SENSITIVE = []
|
429
437
|
include Aws::Structure
|
430
438
|
end
|
431
439
|
|
@@ -944,6 +952,7 @@ module Aws::IoTEvents
|
|
944
952
|
:role_arn,
|
945
953
|
:tags,
|
946
954
|
:evaluation_method)
|
955
|
+
SENSITIVE = []
|
947
956
|
include Aws::Structure
|
948
957
|
end
|
949
958
|
|
@@ -953,6 +962,7 @@ module Aws::IoTEvents
|
|
953
962
|
#
|
954
963
|
class CreateDetectorModelResponse < Struct.new(
|
955
964
|
:detector_model_configuration)
|
965
|
+
SENSITIVE = []
|
956
966
|
include Aws::Structure
|
957
967
|
end
|
958
968
|
|
@@ -998,6 +1008,7 @@ module Aws::IoTEvents
|
|
998
1008
|
:input_description,
|
999
1009
|
:input_definition,
|
1000
1010
|
:tags)
|
1011
|
+
SENSITIVE = []
|
1001
1012
|
include Aws::Structure
|
1002
1013
|
end
|
1003
1014
|
|
@@ -1007,6 +1018,7 @@ module Aws::IoTEvents
|
|
1007
1018
|
#
|
1008
1019
|
class CreateInputResponse < Struct.new(
|
1009
1020
|
:input_configuration)
|
1021
|
+
SENSITIVE = []
|
1010
1022
|
include Aws::Structure
|
1011
1023
|
end
|
1012
1024
|
|
@@ -1023,6 +1035,7 @@ module Aws::IoTEvents
|
|
1023
1035
|
#
|
1024
1036
|
class DeleteDetectorModelRequest < Struct.new(
|
1025
1037
|
:detector_model_name)
|
1038
|
+
SENSITIVE = []
|
1026
1039
|
include Aws::Structure
|
1027
1040
|
end
|
1028
1041
|
|
@@ -1041,6 +1054,7 @@ module Aws::IoTEvents
|
|
1041
1054
|
#
|
1042
1055
|
class DeleteInputRequest < Struct.new(
|
1043
1056
|
:input_name)
|
1057
|
+
SENSITIVE = []
|
1044
1058
|
include Aws::Structure
|
1045
1059
|
end
|
1046
1060
|
|
@@ -1065,6 +1079,7 @@ module Aws::IoTEvents
|
|
1065
1079
|
class DescribeDetectorModelRequest < Struct.new(
|
1066
1080
|
:detector_model_name,
|
1067
1081
|
:detector_model_version)
|
1082
|
+
SENSITIVE = []
|
1068
1083
|
include Aws::Structure
|
1069
1084
|
end
|
1070
1085
|
|
@@ -1074,6 +1089,7 @@ module Aws::IoTEvents
|
|
1074
1089
|
#
|
1075
1090
|
class DescribeDetectorModelResponse < Struct.new(
|
1076
1091
|
:detector_model)
|
1092
|
+
SENSITIVE = []
|
1077
1093
|
include Aws::Structure
|
1078
1094
|
end
|
1079
1095
|
|
@@ -1090,6 +1106,7 @@ module Aws::IoTEvents
|
|
1090
1106
|
#
|
1091
1107
|
class DescribeInputRequest < Struct.new(
|
1092
1108
|
:input_name)
|
1109
|
+
SENSITIVE = []
|
1093
1110
|
include Aws::Structure
|
1094
1111
|
end
|
1095
1112
|
|
@@ -1099,6 +1116,7 @@ module Aws::IoTEvents
|
|
1099
1116
|
#
|
1100
1117
|
class DescribeInputResponse < Struct.new(
|
1101
1118
|
:input)
|
1119
|
+
SENSITIVE = []
|
1102
1120
|
include Aws::Structure
|
1103
1121
|
end
|
1104
1122
|
|
@@ -1112,6 +1130,7 @@ module Aws::IoTEvents
|
|
1112
1130
|
#
|
1113
1131
|
class DescribeLoggingOptionsResponse < Struct.new(
|
1114
1132
|
:logging_options)
|
1133
|
+
SENSITIVE = []
|
1115
1134
|
include Aws::Structure
|
1116
1135
|
end
|
1117
1136
|
|
@@ -1138,6 +1157,7 @@ module Aws::IoTEvents
|
|
1138
1157
|
class DetectorDebugOption < Struct.new(
|
1139
1158
|
:detector_model_name,
|
1140
1159
|
:key_value)
|
1160
|
+
SENSITIVE = []
|
1141
1161
|
include Aws::Structure
|
1142
1162
|
end
|
1143
1163
|
|
@@ -1154,6 +1174,7 @@ module Aws::IoTEvents
|
|
1154
1174
|
class DetectorModel < Struct.new(
|
1155
1175
|
:detector_model_definition,
|
1156
1176
|
:detector_model_configuration)
|
1177
|
+
SENSITIVE = []
|
1157
1178
|
include Aws::Structure
|
1158
1179
|
end
|
1159
1180
|
|
@@ -1222,6 +1243,7 @@ module Aws::IoTEvents
|
|
1222
1243
|
:status,
|
1223
1244
|
:key,
|
1224
1245
|
:evaluation_method)
|
1246
|
+
SENSITIVE = []
|
1225
1247
|
include Aws::Structure
|
1226
1248
|
end
|
1227
1249
|
|
@@ -1698,6 +1720,7 @@ module Aws::IoTEvents
|
|
1698
1720
|
class DetectorModelDefinition < Struct.new(
|
1699
1721
|
:states,
|
1700
1722
|
:initial_state_name)
|
1723
|
+
SENSITIVE = []
|
1701
1724
|
include Aws::Structure
|
1702
1725
|
end
|
1703
1726
|
|
@@ -1719,6 +1742,7 @@ module Aws::IoTEvents
|
|
1719
1742
|
:detector_model_name,
|
1720
1743
|
:detector_model_description,
|
1721
1744
|
:creation_time)
|
1745
|
+
SENSITIVE = []
|
1722
1746
|
include Aws::Structure
|
1723
1747
|
end
|
1724
1748
|
|
@@ -1767,6 +1791,7 @@ module Aws::IoTEvents
|
|
1767
1791
|
:last_update_time,
|
1768
1792
|
:status,
|
1769
1793
|
:evaluation_method)
|
1794
|
+
SENSITIVE = []
|
1770
1795
|
include Aws::Structure
|
1771
1796
|
end
|
1772
1797
|
|
@@ -1919,6 +1944,7 @@ module Aws::IoTEvents
|
|
1919
1944
|
:payload_field,
|
1920
1945
|
:table_name,
|
1921
1946
|
:payload)
|
1947
|
+
SENSITIVE = []
|
1922
1948
|
include Aws::Structure
|
1923
1949
|
end
|
1924
1950
|
|
@@ -1968,6 +1994,7 @@ module Aws::IoTEvents
|
|
1968
1994
|
class DynamoDBv2Action < Struct.new(
|
1969
1995
|
:table_name,
|
1970
1996
|
:payload)
|
1997
|
+
SENSITIVE = []
|
1971
1998
|
include Aws::Structure
|
1972
1999
|
end
|
1973
2000
|
|
@@ -2105,6 +2132,7 @@ module Aws::IoTEvents
|
|
2105
2132
|
:event_name,
|
2106
2133
|
:condition,
|
2107
2134
|
:actions)
|
2135
|
+
SENSITIVE = []
|
2108
2136
|
include Aws::Structure
|
2109
2137
|
end
|
2110
2138
|
|
@@ -2145,6 +2173,7 @@ module Aws::IoTEvents
|
|
2145
2173
|
:delivery_stream_name,
|
2146
2174
|
:separator,
|
2147
2175
|
:payload)
|
2176
|
+
SENSITIVE = []
|
2148
2177
|
include Aws::Structure
|
2149
2178
|
end
|
2150
2179
|
|
@@ -2161,6 +2190,7 @@ module Aws::IoTEvents
|
|
2161
2190
|
class Input < Struct.new(
|
2162
2191
|
:input_configuration,
|
2163
2192
|
:input_definition)
|
2193
|
+
SENSITIVE = []
|
2164
2194
|
include Aws::Structure
|
2165
2195
|
end
|
2166
2196
|
|
@@ -2197,6 +2227,7 @@ module Aws::IoTEvents
|
|
2197
2227
|
:creation_time,
|
2198
2228
|
:last_update_time,
|
2199
2229
|
:status)
|
2230
|
+
SENSITIVE = []
|
2200
2231
|
include Aws::Structure
|
2201
2232
|
end
|
2202
2233
|
|
@@ -2224,6 +2255,7 @@ module Aws::IoTEvents
|
|
2224
2255
|
#
|
2225
2256
|
class InputDefinition < Struct.new(
|
2226
2257
|
:attributes)
|
2258
|
+
SENSITIVE = []
|
2227
2259
|
include Aws::Structure
|
2228
2260
|
end
|
2229
2261
|
|
@@ -2260,6 +2292,7 @@ module Aws::IoTEvents
|
|
2260
2292
|
:creation_time,
|
2261
2293
|
:last_update_time,
|
2262
2294
|
:status)
|
2295
|
+
SENSITIVE = []
|
2263
2296
|
include Aws::Structure
|
2264
2297
|
end
|
2265
2298
|
|
@@ -2271,6 +2304,7 @@ module Aws::IoTEvents
|
|
2271
2304
|
#
|
2272
2305
|
class InternalFailureException < Struct.new(
|
2273
2306
|
:message)
|
2307
|
+
SENSITIVE = []
|
2274
2308
|
include Aws::Structure
|
2275
2309
|
end
|
2276
2310
|
|
@@ -2282,6 +2316,7 @@ module Aws::IoTEvents
|
|
2282
2316
|
#
|
2283
2317
|
class InvalidRequestException < Struct.new(
|
2284
2318
|
:message)
|
2319
|
+
SENSITIVE = []
|
2285
2320
|
include Aws::Structure
|
2286
2321
|
end
|
2287
2322
|
|
@@ -2311,6 +2346,7 @@ module Aws::IoTEvents
|
|
2311
2346
|
class IotEventsAction < Struct.new(
|
2312
2347
|
:input_name,
|
2313
2348
|
:payload)
|
2349
|
+
SENSITIVE = []
|
2314
2350
|
include Aws::Structure
|
2315
2351
|
end
|
2316
2352
|
|
@@ -2392,6 +2428,7 @@ module Aws::IoTEvents
|
|
2392
2428
|
:property_id,
|
2393
2429
|
:property_alias,
|
2394
2430
|
:property_value)
|
2431
|
+
SENSITIVE = []
|
2395
2432
|
include Aws::Structure
|
2396
2433
|
end
|
2397
2434
|
|
@@ -2423,6 +2460,7 @@ module Aws::IoTEvents
|
|
2423
2460
|
class IotTopicPublishAction < Struct.new(
|
2424
2461
|
:mqtt_topic,
|
2425
2462
|
:payload)
|
2463
|
+
SENSITIVE = []
|
2426
2464
|
include Aws::Structure
|
2427
2465
|
end
|
2428
2466
|
|
@@ -2452,6 +2490,7 @@ module Aws::IoTEvents
|
|
2452
2490
|
class LambdaAction < Struct.new(
|
2453
2491
|
:function_arn,
|
2454
2492
|
:payload)
|
2493
|
+
SENSITIVE = []
|
2455
2494
|
include Aws::Structure
|
2456
2495
|
end
|
2457
2496
|
|
@@ -2463,6 +2502,7 @@ module Aws::IoTEvents
|
|
2463
2502
|
#
|
2464
2503
|
class LimitExceededException < Struct.new(
|
2465
2504
|
:message)
|
2505
|
+
SENSITIVE = []
|
2466
2506
|
include Aws::Structure
|
2467
2507
|
end
|
2468
2508
|
|
@@ -2491,6 +2531,7 @@ module Aws::IoTEvents
|
|
2491
2531
|
:detector_model_name,
|
2492
2532
|
:next_token,
|
2493
2533
|
:max_results)
|
2534
|
+
SENSITIVE = []
|
2494
2535
|
include Aws::Structure
|
2495
2536
|
end
|
2496
2537
|
|
@@ -2506,6 +2547,7 @@ module Aws::IoTEvents
|
|
2506
2547
|
class ListDetectorModelVersionsResponse < Struct.new(
|
2507
2548
|
:detector_model_version_summaries,
|
2508
2549
|
:next_token)
|
2550
|
+
SENSITIVE = []
|
2509
2551
|
include Aws::Structure
|
2510
2552
|
end
|
2511
2553
|
|
@@ -2528,6 +2570,7 @@ module Aws::IoTEvents
|
|
2528
2570
|
class ListDetectorModelsRequest < Struct.new(
|
2529
2571
|
:next_token,
|
2530
2572
|
:max_results)
|
2573
|
+
SENSITIVE = []
|
2531
2574
|
include Aws::Structure
|
2532
2575
|
end
|
2533
2576
|
|
@@ -2543,6 +2586,7 @@ module Aws::IoTEvents
|
|
2543
2586
|
class ListDetectorModelsResponse < Struct.new(
|
2544
2587
|
:detector_model_summaries,
|
2545
2588
|
:next_token)
|
2589
|
+
SENSITIVE = []
|
2546
2590
|
include Aws::Structure
|
2547
2591
|
end
|
2548
2592
|
|
@@ -2565,6 +2609,7 @@ module Aws::IoTEvents
|
|
2565
2609
|
class ListInputsRequest < Struct.new(
|
2566
2610
|
:next_token,
|
2567
2611
|
:max_results)
|
2612
|
+
SENSITIVE = []
|
2568
2613
|
include Aws::Structure
|
2569
2614
|
end
|
2570
2615
|
|
@@ -2580,6 +2625,7 @@ module Aws::IoTEvents
|
|
2580
2625
|
class ListInputsResponse < Struct.new(
|
2581
2626
|
:input_summaries,
|
2582
2627
|
:next_token)
|
2628
|
+
SENSITIVE = []
|
2583
2629
|
include Aws::Structure
|
2584
2630
|
end
|
2585
2631
|
|
@@ -2596,6 +2642,7 @@ module Aws::IoTEvents
|
|
2596
2642
|
#
|
2597
2643
|
class ListTagsForResourceRequest < Struct.new(
|
2598
2644
|
:resource_arn)
|
2645
|
+
SENSITIVE = []
|
2599
2646
|
include Aws::Structure
|
2600
2647
|
end
|
2601
2648
|
|
@@ -2605,6 +2652,7 @@ module Aws::IoTEvents
|
|
2605
2652
|
#
|
2606
2653
|
class ListTagsForResourceResponse < Struct.new(
|
2607
2654
|
:tags)
|
2655
|
+
SENSITIVE = []
|
2608
2656
|
include Aws::Structure
|
2609
2657
|
end
|
2610
2658
|
|
@@ -2648,6 +2696,7 @@ module Aws::IoTEvents
|
|
2648
2696
|
:level,
|
2649
2697
|
:enabled,
|
2650
2698
|
:detector_debug_options)
|
2699
|
+
SENSITIVE = []
|
2651
2700
|
include Aws::Structure
|
2652
2701
|
end
|
2653
2702
|
|
@@ -2777,6 +2826,7 @@ module Aws::IoTEvents
|
|
2777
2826
|
#
|
2778
2827
|
class OnEnterLifecycle < Struct.new(
|
2779
2828
|
:events)
|
2829
|
+
SENSITIVE = []
|
2780
2830
|
include Aws::Structure
|
2781
2831
|
end
|
2782
2832
|
|
@@ -2906,6 +2956,7 @@ module Aws::IoTEvents
|
|
2906
2956
|
#
|
2907
2957
|
class OnExitLifecycle < Struct.new(
|
2908
2958
|
:events)
|
2959
|
+
SENSITIVE = []
|
2909
2960
|
include Aws::Structure
|
2910
2961
|
end
|
2911
2962
|
|
@@ -3152,6 +3203,7 @@ module Aws::IoTEvents
|
|
3152
3203
|
class OnInputLifecycle < Struct.new(
|
3153
3204
|
:events,
|
3154
3205
|
:transition_events)
|
3206
|
+
SENSITIVE = []
|
3155
3207
|
include Aws::Structure
|
3156
3208
|
end
|
3157
3209
|
|
@@ -3187,6 +3239,7 @@ module Aws::IoTEvents
|
|
3187
3239
|
class Payload < Struct.new(
|
3188
3240
|
:content_expression,
|
3189
3241
|
:type)
|
3242
|
+
SENSITIVE = []
|
3190
3243
|
include Aws::Structure
|
3191
3244
|
end
|
3192
3245
|
|
@@ -3213,6 +3266,7 @@ module Aws::IoTEvents
|
|
3213
3266
|
#
|
3214
3267
|
class PutLoggingOptionsRequest < Struct.new(
|
3215
3268
|
:logging_options)
|
3269
|
+
SENSITIVE = []
|
3216
3270
|
include Aws::Structure
|
3217
3271
|
end
|
3218
3272
|
|
@@ -3233,6 +3287,7 @@ module Aws::IoTEvents
|
|
3233
3287
|
#
|
3234
3288
|
class ResetTimerAction < Struct.new(
|
3235
3289
|
:timer_name)
|
3290
|
+
SENSITIVE = []
|
3236
3291
|
include Aws::Structure
|
3237
3292
|
end
|
3238
3293
|
|
@@ -3254,6 +3309,7 @@ module Aws::IoTEvents
|
|
3254
3309
|
:message,
|
3255
3310
|
:resource_id,
|
3256
3311
|
:resource_arn)
|
3312
|
+
SENSITIVE = []
|
3257
3313
|
include Aws::Structure
|
3258
3314
|
end
|
3259
3315
|
|
@@ -3265,6 +3321,7 @@ module Aws::IoTEvents
|
|
3265
3321
|
#
|
3266
3322
|
class ResourceInUseException < Struct.new(
|
3267
3323
|
:message)
|
3324
|
+
SENSITIVE = []
|
3268
3325
|
include Aws::Structure
|
3269
3326
|
end
|
3270
3327
|
|
@@ -3276,6 +3333,7 @@ module Aws::IoTEvents
|
|
3276
3333
|
#
|
3277
3334
|
class ResourceNotFoundException < Struct.new(
|
3278
3335
|
:message)
|
3336
|
+
SENSITIVE = []
|
3279
3337
|
include Aws::Structure
|
3280
3338
|
end
|
3281
3339
|
|
@@ -3304,6 +3362,7 @@ module Aws::IoTEvents
|
|
3304
3362
|
class SNSTopicPublishAction < Struct.new(
|
3305
3363
|
:target_arn,
|
3306
3364
|
:payload)
|
3365
|
+
SENSITIVE = []
|
3307
3366
|
include Aws::Structure
|
3308
3367
|
end
|
3309
3368
|
|
@@ -3315,6 +3374,7 @@ module Aws::IoTEvents
|
|
3315
3374
|
#
|
3316
3375
|
class ServiceUnavailableException < Struct.new(
|
3317
3376
|
:message)
|
3377
|
+
SENSITIVE = []
|
3318
3378
|
include Aws::Structure
|
3319
3379
|
end
|
3320
3380
|
|
@@ -3353,6 +3413,7 @@ module Aws::IoTEvents
|
|
3353
3413
|
:timer_name,
|
3354
3414
|
:seconds,
|
3355
3415
|
:duration_expression)
|
3416
|
+
SENSITIVE = []
|
3356
3417
|
include Aws::Structure
|
3357
3418
|
end
|
3358
3419
|
|
@@ -3377,6 +3438,7 @@ module Aws::IoTEvents
|
|
3377
3438
|
class SetVariableAction < Struct.new(
|
3378
3439
|
:variable_name,
|
3379
3440
|
:value)
|
3441
|
+
SENSITIVE = []
|
3380
3442
|
include Aws::Structure
|
3381
3443
|
end
|
3382
3444
|
|
@@ -3413,6 +3475,7 @@ module Aws::IoTEvents
|
|
3413
3475
|
:queue_url,
|
3414
3476
|
:use_base_64,
|
3415
3477
|
:payload)
|
3478
|
+
SENSITIVE = []
|
3416
3479
|
include Aws::Structure
|
3417
3480
|
end
|
3418
3481
|
|
@@ -3896,6 +3959,7 @@ module Aws::IoTEvents
|
|
3896
3959
|
:on_input,
|
3897
3960
|
:on_enter,
|
3898
3961
|
:on_exit)
|
3962
|
+
SENSITIVE = []
|
3899
3963
|
include Aws::Structure
|
3900
3964
|
end
|
3901
3965
|
|
@@ -3920,6 +3984,7 @@ module Aws::IoTEvents
|
|
3920
3984
|
class Tag < Struct.new(
|
3921
3985
|
:key,
|
3922
3986
|
:value)
|
3987
|
+
SENSITIVE = []
|
3923
3988
|
include Aws::Structure
|
3924
3989
|
end
|
3925
3990
|
|
@@ -3947,6 +4012,7 @@ module Aws::IoTEvents
|
|
3947
4012
|
class TagResourceRequest < Struct.new(
|
3948
4013
|
:resource_arn,
|
3949
4014
|
:tags)
|
4015
|
+
SENSITIVE = []
|
3950
4016
|
include Aws::Structure
|
3951
4017
|
end
|
3952
4018
|
|
@@ -3960,6 +4026,7 @@ module Aws::IoTEvents
|
|
3960
4026
|
#
|
3961
4027
|
class ThrottlingException < Struct.new(
|
3962
4028
|
:message)
|
4029
|
+
SENSITIVE = []
|
3963
4030
|
include Aws::Structure
|
3964
4031
|
end
|
3965
4032
|
|
@@ -4101,6 +4168,7 @@ module Aws::IoTEvents
|
|
4101
4168
|
:condition,
|
4102
4169
|
:actions,
|
4103
4170
|
:next_state)
|
4171
|
+
SENSITIVE = []
|
4104
4172
|
include Aws::Structure
|
4105
4173
|
end
|
4106
4174
|
|
@@ -4112,6 +4180,7 @@ module Aws::IoTEvents
|
|
4112
4180
|
#
|
4113
4181
|
class UnsupportedOperationException < Struct.new(
|
4114
4182
|
:message)
|
4183
|
+
SENSITIVE = []
|
4115
4184
|
include Aws::Structure
|
4116
4185
|
end
|
4117
4186
|
|
@@ -4134,6 +4203,7 @@ module Aws::IoTEvents
|
|
4134
4203
|
class UntagResourceRequest < Struct.new(
|
4135
4204
|
:resource_arn,
|
4136
4205
|
:tag_keys)
|
4206
|
+
SENSITIVE = []
|
4137
4207
|
include Aws::Structure
|
4138
4208
|
end
|
4139
4209
|
|
@@ -4632,6 +4702,7 @@ module Aws::IoTEvents
|
|
4632
4702
|
:detector_model_description,
|
4633
4703
|
:role_arn,
|
4634
4704
|
:evaluation_method)
|
4705
|
+
SENSITIVE = []
|
4635
4706
|
include Aws::Structure
|
4636
4707
|
end
|
4637
4708
|
|
@@ -4641,6 +4712,7 @@ module Aws::IoTEvents
|
|
4641
4712
|
#
|
4642
4713
|
class UpdateDetectorModelResponse < Struct.new(
|
4643
4714
|
:detector_model_configuration)
|
4715
|
+
SENSITIVE = []
|
4644
4716
|
include Aws::Structure
|
4645
4717
|
end
|
4646
4718
|
|
@@ -4675,6 +4747,7 @@ module Aws::IoTEvents
|
|
4675
4747
|
:input_name,
|
4676
4748
|
:input_description,
|
4677
4749
|
:input_definition)
|
4750
|
+
SENSITIVE = []
|
4678
4751
|
include Aws::Structure
|
4679
4752
|
end
|
4680
4753
|
|
@@ -4684,6 +4757,7 @@ module Aws::IoTEvents
|
|
4684
4757
|
#
|
4685
4758
|
class UpdateInputResponse < Struct.new(
|
4686
4759
|
:input_configuration)
|
4760
|
+
SENSITIVE = []
|
4687
4761
|
include Aws::Structure
|
4688
4762
|
end
|
4689
4763
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotevents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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
|