aws-sdk-ioteventsdata 1.28.0 → 1.29.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: ec0b02278e60f567248379b149e4a9dec4dca91beb835a2157f7369f12fe2dc4
4
- data.tar.gz: 9448ad39af4fb78dc9d880972c5269d48d74343a161ef174c590fcba7636b02d
3
+ metadata.gz: 8b5a768469de2742ae4336d7b532e7d13826ae693cd4eeaaf752364ad6722c25
4
+ data.tar.gz: 6c08a1c5b5a4b577b07e72b575193598ae661889f8403f42853c12eef29933da
5
5
  SHA512:
6
- metadata.gz: cccb33622343d411b1a3751f16bfd7615a98f8b8f083189f74a1bb95cf4df29c13a78884140e262b440e9102a613bbc7460e83066a15a4416d12120dd7a0fa44
7
- data.tar.gz: 4fe23b94f1f832ec63372a3891648f40d2c78eb1c5105579bc5c2b2d1f877ec477c447a78d0c072a85ab828611191050401b89784aa7d17b34867c8928a6596c
6
+ metadata.gz: a33c2b794bb6f1a8b6d19e0d546086af6e99545f0c3dc319a221dbd12fdced47605335890e34a90fcde8348763a9591af2df4ccf83f587fe06d936b8d71ecc3b
7
+ data.tar.gz: 94d2047d5c5517617c0596ee04caebbc261cb3dfa7d0324c0980b10df4e16a9d28bd928334ea287ad8daa44d703b0a794e164f11db157aa4e6e28e14bfb96f70
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.28.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -150,4 +157,4 @@ Unreleased Changes
150
157
  1.0.0 (2019-05-30)
151
158
  ------------------
152
159
 
153
- * Feature - Initial release of `aws-sdk-ioteventsdata`.
160
+ * Feature - Initial release of `aws-sdk-ioteventsdata`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -897,7 +897,7 @@ module Aws::IoTEventsData
897
897
  params: params,
898
898
  config: config)
899
899
  context[:gem_name] = 'aws-sdk-ioteventsdata'
900
- context[:gem_version] = '1.28.0'
900
+ context[:gem_version] = '1.29.0'
901
901
  Seahorse::Client::Request.new(handlers, context)
902
902
  end
903
903
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::IoTEventsData
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://data.iotevents-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://data.iotevents-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://data.iotevents.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://data.iotevents.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2RhdGEuaW90ZXZlbnRzLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
88
- Oi8vZGF0YS5pb3RldmVudHMtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVz
89
- dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
90
- LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
91
- IjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
92
- dCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
93
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
94
- RHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
95
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
96
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
97
- ZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVl
98
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwi
99
- OiJodHRwczovL2RhdGEuaW90ZXZlbnRzLntSZWdpb259LntQYXJ0aXRpb25S
100
- ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
101
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
102
- IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
103
- YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
104
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
105
- Imh0dHBzOi8vZGF0YS5pb3RldmVudHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
106
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
107
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -24,16 +24,6 @@ module Aws::IoTEventsData
24
24
 
25
25
  # Information needed to acknowledge the alarm.
26
26
  #
27
- # @note When making an API call, you may pass AcknowledgeAlarmActionRequest
28
- # data as a hash:
29
- #
30
- # {
31
- # request_id: "RequestId", # required
32
- # alarm_model_name: "AlarmModelName", # required
33
- # key_value: "KeyValue",
34
- # note: "Note",
35
- # }
36
- #
37
27
  # @!attribute [rw] request_id
38
28
  # The request ID. Each ID must be unique within each batch.
39
29
  # @return [String]
@@ -230,20 +220,6 @@ module Aws::IoTEventsData
230
220
  include Aws::Structure
231
221
  end
232
222
 
233
- # @note When making an API call, you may pass BatchAcknowledgeAlarmRequest
234
- # data as a hash:
235
- #
236
- # {
237
- # acknowledge_action_requests: [ # required
238
- # {
239
- # request_id: "RequestId", # required
240
- # alarm_model_name: "AlarmModelName", # required
241
- # key_value: "KeyValue",
242
- # note: "Note",
243
- # },
244
- # ],
245
- # }
246
- #
247
223
  # @!attribute [rw] acknowledge_action_requests
248
224
  # The list of acknowledge action requests. You can specify up to 10
249
225
  # requests per operation.
@@ -335,19 +311,6 @@ module Aws::IoTEventsData
335
311
  include Aws::Structure
336
312
  end
337
313
 
338
- # @note When making an API call, you may pass BatchDeleteDetectorRequest
339
- # data as a hash:
340
- #
341
- # {
342
- # detectors: [ # required
343
- # {
344
- # message_id: "MessageId", # required
345
- # detector_model_name: "DetectorModelName", # required
346
- # key_value: "KeyValue",
347
- # },
348
- # ],
349
- # }
350
- #
351
314
  # @!attribute [rw] detectors
352
315
  # The list of one or more detectors to be deleted.
353
316
  # @return [Array<Types::DeleteDetectorRequest>]
@@ -370,20 +333,6 @@ module Aws::IoTEventsData
370
333
  include Aws::Structure
371
334
  end
372
335
 
373
- # @note When making an API call, you may pass BatchDisableAlarmRequest
374
- # data as a hash:
375
- #
376
- # {
377
- # disable_action_requests: [ # required
378
- # {
379
- # request_id: "RequestId", # required
380
- # alarm_model_name: "AlarmModelName", # required
381
- # key_value: "KeyValue",
382
- # note: "Note",
383
- # },
384
- # ],
385
- # }
386
- #
387
336
  # @!attribute [rw] disable_action_requests
388
337
  # The list of disable action requests. You can specify up to 10
389
338
  # requests per operation.
@@ -407,20 +356,6 @@ module Aws::IoTEventsData
407
356
  include Aws::Structure
408
357
  end
409
358
 
410
- # @note When making an API call, you may pass BatchEnableAlarmRequest
411
- # data as a hash:
412
- #
413
- # {
414
- # enable_action_requests: [ # required
415
- # {
416
- # request_id: "RequestId", # required
417
- # alarm_model_name: "AlarmModelName", # required
418
- # key_value: "KeyValue",
419
- # note: "Note",
420
- # },
421
- # ],
422
- # }
423
- #
424
359
  # @!attribute [rw] enable_action_requests
425
360
  # The list of enable action requests. You can specify up to 10
426
361
  # requests per operation.
@@ -467,22 +402,6 @@ module Aws::IoTEventsData
467
402
  include Aws::Structure
468
403
  end
469
404
 
470
- # @note When making an API call, you may pass BatchPutMessageRequest
471
- # data as a hash:
472
- #
473
- # {
474
- # messages: [ # required
475
- # {
476
- # message_id: "MessageId", # required
477
- # input_name: "EphemeralInputName", # required
478
- # payload: "data", # required
479
- # timestamp: {
480
- # time_in_millis: 1,
481
- # },
482
- # },
483
- # ],
484
- # }
485
- #
486
405
  # @!attribute [rw] messages
487
406
  # The list of messages to send. Each message has the following format:
488
407
  # `'\{ "messageId": "string", "inputName": "string", "payload":
@@ -505,20 +424,6 @@ module Aws::IoTEventsData
505
424
  include Aws::Structure
506
425
  end
507
426
 
508
- # @note When making an API call, you may pass BatchResetAlarmRequest
509
- # data as a hash:
510
- #
511
- # {
512
- # reset_action_requests: [ # required
513
- # {
514
- # request_id: "RequestId", # required
515
- # alarm_model_name: "AlarmModelName", # required
516
- # key_value: "KeyValue",
517
- # note: "Note",
518
- # },
519
- # ],
520
- # }
521
- #
522
427
  # @!attribute [rw] reset_action_requests
523
428
  # The list of reset action requests. You can specify up to 10 requests
524
429
  # per operation.
@@ -542,21 +447,6 @@ module Aws::IoTEventsData
542
447
  include Aws::Structure
543
448
  end
544
449
 
545
- # @note When making an API call, you may pass BatchSnoozeAlarmRequest
546
- # data as a hash:
547
- #
548
- # {
549
- # snooze_action_requests: [ # required
550
- # {
551
- # request_id: "RequestId", # required
552
- # alarm_model_name: "AlarmModelName", # required
553
- # key_value: "KeyValue",
554
- # note: "Note",
555
- # snooze_duration: 1, # required
556
- # },
557
- # ],
558
- # }
559
- #
560
450
  # @!attribute [rw] snooze_action_requests
561
451
  # The list of snooze action requests. You can specify up to 10
562
452
  # requests per operation.
@@ -605,34 +495,6 @@ module Aws::IoTEventsData
605
495
  include Aws::Structure
606
496
  end
607
497
 
608
- # @note When making an API call, you may pass BatchUpdateDetectorRequest
609
- # data as a hash:
610
- #
611
- # {
612
- # detectors: [ # required
613
- # {
614
- # message_id: "MessageId", # required
615
- # detector_model_name: "DetectorModelName", # required
616
- # key_value: "KeyValue",
617
- # state: { # required
618
- # state_name: "StateName", # required
619
- # variables: [ # required
620
- # {
621
- # name: "VariableName", # required
622
- # value: "VariableValue", # required
623
- # },
624
- # ],
625
- # timers: [ # required
626
- # {
627
- # name: "TimerName", # required
628
- # seconds: 1, # required
629
- # },
630
- # ],
631
- # },
632
- # },
633
- # ],
634
- # }
635
- #
636
498
  # @!attribute [rw] detectors
637
499
  # The list of detectors (instances) to update, along with the values
638
500
  # to update.
@@ -717,15 +579,6 @@ module Aws::IoTEventsData
717
579
 
718
580
  # Information used to delete the detector model.
719
581
  #
720
- # @note When making an API call, you may pass DeleteDetectorRequest
721
- # data as a hash:
722
- #
723
- # {
724
- # message_id: "MessageId", # required
725
- # detector_model_name: "DetectorModelName", # required
726
- # key_value: "KeyValue",
727
- # }
728
- #
729
582
  # @!attribute [rw] message_id
730
583
  # The ID to assign to the `DeleteDetectorRequest`. Each `"messageId"`
731
584
  # must be unique within each batch sent.
@@ -752,14 +605,6 @@ module Aws::IoTEventsData
752
605
  include Aws::Structure
753
606
  end
754
607
 
755
- # @note When making an API call, you may pass DescribeAlarmRequest
756
- # data as a hash:
757
- #
758
- # {
759
- # alarm_model_name: "AlarmModelName", # required
760
- # key_value: "KeyValue",
761
- # }
762
- #
763
608
  # @!attribute [rw] alarm_model_name
764
609
  # The name of the alarm model.
765
610
  # @return [String]
@@ -790,14 +635,6 @@ module Aws::IoTEventsData
790
635
  include Aws::Structure
791
636
  end
792
637
 
793
- # @note When making an API call, you may pass DescribeDetectorRequest
794
- # data as a hash:
795
- #
796
- # {
797
- # detector_model_name: "DetectorModelName", # required
798
- # key_value: "KeyValue",
799
- # }
800
- #
801
638
  # @!attribute [rw] detector_model_name
802
639
  # The name of the detector model whose detectors (instances) you want
803
640
  # information about.
@@ -890,25 +727,6 @@ module Aws::IoTEventsData
890
727
  # The new state, variable values, and timer settings of the detector
891
728
  # (instance).
892
729
  #
893
- # @note When making an API call, you may pass DetectorStateDefinition
894
- # data as a hash:
895
- #
896
- # {
897
- # state_name: "StateName", # required
898
- # variables: [ # required
899
- # {
900
- # name: "VariableName", # required
901
- # value: "VariableValue", # required
902
- # },
903
- # ],
904
- # timers: [ # required
905
- # {
906
- # name: "TimerName", # required
907
- # seconds: 1, # required
908
- # },
909
- # ],
910
- # }
911
- #
912
730
  # @!attribute [rw] state_name
913
731
  # The name of the new state of the detector (instance).
914
732
  # @return [String]
@@ -997,16 +815,6 @@ module Aws::IoTEventsData
997
815
 
998
816
  # Information used to disable the alarm.
999
817
  #
1000
- # @note When making an API call, you may pass DisableAlarmActionRequest
1001
- # data as a hash:
1002
- #
1003
- # {
1004
- # request_id: "RequestId", # required
1005
- # alarm_model_name: "AlarmModelName", # required
1006
- # key_value: "KeyValue",
1007
- # note: "Note",
1008
- # }
1009
- #
1010
818
  # @!attribute [rw] request_id
1011
819
  # The request ID. Each ID must be unique within each batch.
1012
820
  # @return [String]
@@ -1051,16 +859,6 @@ module Aws::IoTEventsData
1051
859
 
1052
860
  # Information needed to enable the alarm.
1053
861
  #
1054
- # @note When making an API call, you may pass EnableAlarmActionRequest
1055
- # data as a hash:
1056
- #
1057
- # {
1058
- # request_id: "RequestId", # required
1059
- # alarm_model_name: "AlarmModelName", # required
1060
- # key_value: "KeyValue",
1061
- # note: "Note",
1062
- # }
1063
- #
1064
862
  # @!attribute [rw] request_id
1065
863
  # The request ID. Each ID must be unique within each batch.
1066
864
  # @return [String]
@@ -1115,15 +913,6 @@ module Aws::IoTEventsData
1115
913
  include Aws::Structure
1116
914
  end
1117
915
 
1118
- # @note When making an API call, you may pass ListAlarmsRequest
1119
- # data as a hash:
1120
- #
1121
- # {
1122
- # alarm_model_name: "AlarmModelName", # required
1123
- # next_token: "NextToken",
1124
- # max_results: 1,
1125
- # }
1126
- #
1127
916
  # @!attribute [rw] alarm_model_name
1128
917
  # The name of the alarm model.
1129
918
  # @return [String]
@@ -1160,16 +949,6 @@ module Aws::IoTEventsData
1160
949
  include Aws::Structure
1161
950
  end
1162
951
 
1163
- # @note When making an API call, you may pass ListDetectorsRequest
1164
- # data as a hash:
1165
- #
1166
- # {
1167
- # detector_model_name: "DetectorModelName", # required
1168
- # state_name: "StateName",
1169
- # next_token: "NextToken",
1170
- # max_results: 1,
1171
- # }
1172
- #
1173
952
  # @!attribute [rw] detector_model_name
1174
953
  # The name of the detector model whose detectors (instances) are
1175
954
  # listed.
@@ -1215,18 +994,6 @@ module Aws::IoTEventsData
1215
994
 
1216
995
  # Information about a message.
1217
996
  #
1218
- # @note When making an API call, you may pass Message
1219
- # data as a hash:
1220
- #
1221
- # {
1222
- # message_id: "MessageId", # required
1223
- # input_name: "EphemeralInputName", # required
1224
- # payload: "data", # required
1225
- # timestamp: {
1226
- # time_in_millis: 1,
1227
- # },
1228
- # }
1229
- #
1230
997
  # @!attribute [rw] message_id
1231
998
  # The ID to assign to the message. Within each batch sent, each
1232
999
  # `"messageId"` must be unique.
@@ -1269,16 +1036,6 @@ module Aws::IoTEventsData
1269
1036
 
1270
1037
  # Information needed to reset the alarm.
1271
1038
  #
1272
- # @note When making an API call, you may pass ResetAlarmActionRequest
1273
- # data as a hash:
1274
- #
1275
- # {
1276
- # request_id: "RequestId", # required
1277
- # alarm_model_name: "AlarmModelName", # required
1278
- # key_value: "KeyValue",
1279
- # note: "Note",
1280
- # }
1281
- #
1282
1039
  # @!attribute [rw] request_id
1283
1040
  # The request ID. Each ID must be unique within each batch.
1284
1041
  # @return [String]
@@ -1388,17 +1145,6 @@ module Aws::IoTEventsData
1388
1145
 
1389
1146
  # Information needed to snooze the alarm.
1390
1147
  #
1391
- # @note When making an API call, you may pass SnoozeAlarmActionRequest
1392
- # data as a hash:
1393
- #
1394
- # {
1395
- # request_id: "RequestId", # required
1396
- # alarm_model_name: "AlarmModelName", # required
1397
- # key_value: "KeyValue",
1398
- # note: "Note",
1399
- # snooze_duration: 1, # required
1400
- # }
1401
- #
1402
1148
  # @!attribute [rw] request_id
1403
1149
  # The request ID. Each ID must be unique within each batch.
1404
1150
  # @return [String]
@@ -1498,14 +1244,6 @@ module Aws::IoTEventsData
1498
1244
 
1499
1245
  # The new setting of a timer.
1500
1246
  #
1501
- # @note When making an API call, you may pass TimerDefinition
1502
- # data as a hash:
1503
- #
1504
- # {
1505
- # name: "TimerName", # required
1506
- # seconds: 1, # required
1507
- # }
1508
- #
1509
1247
  # @!attribute [rw] name
1510
1248
  # The name of the timer.
1511
1249
  # @return [String]
@@ -1524,13 +1262,6 @@ module Aws::IoTEventsData
1524
1262
 
1525
1263
  # Contains information about a timestamp.
1526
1264
  #
1527
- # @note When making an API call, you may pass TimestampValue
1528
- # data as a hash:
1529
- #
1530
- # {
1531
- # time_in_millis: 1,
1532
- # }
1533
- #
1534
1265
  # @!attribute [rw] time_in_millis
1535
1266
  # The value of the timestamp, in the Unix epoch format.
1536
1267
  # @return [Integer]
@@ -1543,30 +1274,6 @@ module Aws::IoTEventsData
1543
1274
 
1544
1275
  # Information used to update the detector (instance).
1545
1276
  #
1546
- # @note When making an API call, you may pass UpdateDetectorRequest
1547
- # data as a hash:
1548
- #
1549
- # {
1550
- # message_id: "MessageId", # required
1551
- # detector_model_name: "DetectorModelName", # required
1552
- # key_value: "KeyValue",
1553
- # state: { # required
1554
- # state_name: "StateName", # required
1555
- # variables: [ # required
1556
- # {
1557
- # name: "VariableName", # required
1558
- # value: "VariableValue", # required
1559
- # },
1560
- # ],
1561
- # timers: [ # required
1562
- # {
1563
- # name: "TimerName", # required
1564
- # seconds: 1, # required
1565
- # },
1566
- # ],
1567
- # },
1568
- # }
1569
- #
1570
1277
  # @!attribute [rw] message_id
1571
1278
  # The ID to assign to the detector update `"message"`. Each
1572
1279
  # `"messageId"` must be unique within each batch sent.
@@ -1615,14 +1322,6 @@ module Aws::IoTEventsData
1615
1322
 
1616
1323
  # The new value of the variable.
1617
1324
  #
1618
- # @note When making an API call, you may pass VariableDefinition
1619
- # data as a hash:
1620
- #
1621
- # {
1622
- # name: "VariableName", # required
1623
- # value: "VariableValue", # required
1624
- # }
1625
- #
1626
1325
  # @!attribute [rw] name
1627
1326
  # The name of the variable.
1628
1327
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ioteventsdata/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTEventsData
54
54
 
55
- GEM_VERSION = '1.28.0'
55
+ GEM_VERSION = '1.29.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ioteventsdata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.29.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core