aws-sdk-iotwireless 1.59.0 → 1.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +64 -17
- data/lib/aws-sdk-iotwireless/client_api.rb +36 -0
- data/lib/aws-sdk-iotwireless/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-iotwireless/endpoints.rb +2 -1230
- data/lib/aws-sdk-iotwireless/plugins/endpoints.rb +1 -230
- data/lib/aws-sdk-iotwireless/types.rb +131 -12
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/client.rbs +31 -7
- data/sig/types.rbs +30 -4
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::IoTWireless::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,235 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_aws_account_with_partner_account
|
74
|
-
Aws::IoTWireless::Endpoints::AssociateAwsAccountWithPartnerAccount.build(context)
|
75
|
-
when :associate_multicast_group_with_fuota_task
|
76
|
-
Aws::IoTWireless::Endpoints::AssociateMulticastGroupWithFuotaTask.build(context)
|
77
|
-
when :associate_wireless_device_with_fuota_task
|
78
|
-
Aws::IoTWireless::Endpoints::AssociateWirelessDeviceWithFuotaTask.build(context)
|
79
|
-
when :associate_wireless_device_with_multicast_group
|
80
|
-
Aws::IoTWireless::Endpoints::AssociateWirelessDeviceWithMulticastGroup.build(context)
|
81
|
-
when :associate_wireless_device_with_thing
|
82
|
-
Aws::IoTWireless::Endpoints::AssociateWirelessDeviceWithThing.build(context)
|
83
|
-
when :associate_wireless_gateway_with_certificate
|
84
|
-
Aws::IoTWireless::Endpoints::AssociateWirelessGatewayWithCertificate.build(context)
|
85
|
-
when :associate_wireless_gateway_with_thing
|
86
|
-
Aws::IoTWireless::Endpoints::AssociateWirelessGatewayWithThing.build(context)
|
87
|
-
when :cancel_multicast_group_session
|
88
|
-
Aws::IoTWireless::Endpoints::CancelMulticastGroupSession.build(context)
|
89
|
-
when :create_destination
|
90
|
-
Aws::IoTWireless::Endpoints::CreateDestination.build(context)
|
91
|
-
when :create_device_profile
|
92
|
-
Aws::IoTWireless::Endpoints::CreateDeviceProfile.build(context)
|
93
|
-
when :create_fuota_task
|
94
|
-
Aws::IoTWireless::Endpoints::CreateFuotaTask.build(context)
|
95
|
-
when :create_multicast_group
|
96
|
-
Aws::IoTWireless::Endpoints::CreateMulticastGroup.build(context)
|
97
|
-
when :create_network_analyzer_configuration
|
98
|
-
Aws::IoTWireless::Endpoints::CreateNetworkAnalyzerConfiguration.build(context)
|
99
|
-
when :create_service_profile
|
100
|
-
Aws::IoTWireless::Endpoints::CreateServiceProfile.build(context)
|
101
|
-
when :create_wireless_device
|
102
|
-
Aws::IoTWireless::Endpoints::CreateWirelessDevice.build(context)
|
103
|
-
when :create_wireless_gateway
|
104
|
-
Aws::IoTWireless::Endpoints::CreateWirelessGateway.build(context)
|
105
|
-
when :create_wireless_gateway_task
|
106
|
-
Aws::IoTWireless::Endpoints::CreateWirelessGatewayTask.build(context)
|
107
|
-
when :create_wireless_gateway_task_definition
|
108
|
-
Aws::IoTWireless::Endpoints::CreateWirelessGatewayTaskDefinition.build(context)
|
109
|
-
when :delete_destination
|
110
|
-
Aws::IoTWireless::Endpoints::DeleteDestination.build(context)
|
111
|
-
when :delete_device_profile
|
112
|
-
Aws::IoTWireless::Endpoints::DeleteDeviceProfile.build(context)
|
113
|
-
when :delete_fuota_task
|
114
|
-
Aws::IoTWireless::Endpoints::DeleteFuotaTask.build(context)
|
115
|
-
when :delete_multicast_group
|
116
|
-
Aws::IoTWireless::Endpoints::DeleteMulticastGroup.build(context)
|
117
|
-
when :delete_network_analyzer_configuration
|
118
|
-
Aws::IoTWireless::Endpoints::DeleteNetworkAnalyzerConfiguration.build(context)
|
119
|
-
when :delete_queued_messages
|
120
|
-
Aws::IoTWireless::Endpoints::DeleteQueuedMessages.build(context)
|
121
|
-
when :delete_service_profile
|
122
|
-
Aws::IoTWireless::Endpoints::DeleteServiceProfile.build(context)
|
123
|
-
when :delete_wireless_device
|
124
|
-
Aws::IoTWireless::Endpoints::DeleteWirelessDevice.build(context)
|
125
|
-
when :delete_wireless_device_import_task
|
126
|
-
Aws::IoTWireless::Endpoints::DeleteWirelessDeviceImportTask.build(context)
|
127
|
-
when :delete_wireless_gateway
|
128
|
-
Aws::IoTWireless::Endpoints::DeleteWirelessGateway.build(context)
|
129
|
-
when :delete_wireless_gateway_task
|
130
|
-
Aws::IoTWireless::Endpoints::DeleteWirelessGatewayTask.build(context)
|
131
|
-
when :delete_wireless_gateway_task_definition
|
132
|
-
Aws::IoTWireless::Endpoints::DeleteWirelessGatewayTaskDefinition.build(context)
|
133
|
-
when :deregister_wireless_device
|
134
|
-
Aws::IoTWireless::Endpoints::DeregisterWirelessDevice.build(context)
|
135
|
-
when :disassociate_aws_account_from_partner_account
|
136
|
-
Aws::IoTWireless::Endpoints::DisassociateAwsAccountFromPartnerAccount.build(context)
|
137
|
-
when :disassociate_multicast_group_from_fuota_task
|
138
|
-
Aws::IoTWireless::Endpoints::DisassociateMulticastGroupFromFuotaTask.build(context)
|
139
|
-
when :disassociate_wireless_device_from_fuota_task
|
140
|
-
Aws::IoTWireless::Endpoints::DisassociateWirelessDeviceFromFuotaTask.build(context)
|
141
|
-
when :disassociate_wireless_device_from_multicast_group
|
142
|
-
Aws::IoTWireless::Endpoints::DisassociateWirelessDeviceFromMulticastGroup.build(context)
|
143
|
-
when :disassociate_wireless_device_from_thing
|
144
|
-
Aws::IoTWireless::Endpoints::DisassociateWirelessDeviceFromThing.build(context)
|
145
|
-
when :disassociate_wireless_gateway_from_certificate
|
146
|
-
Aws::IoTWireless::Endpoints::DisassociateWirelessGatewayFromCertificate.build(context)
|
147
|
-
when :disassociate_wireless_gateway_from_thing
|
148
|
-
Aws::IoTWireless::Endpoints::DisassociateWirelessGatewayFromThing.build(context)
|
149
|
-
when :get_destination
|
150
|
-
Aws::IoTWireless::Endpoints::GetDestination.build(context)
|
151
|
-
when :get_device_profile
|
152
|
-
Aws::IoTWireless::Endpoints::GetDeviceProfile.build(context)
|
153
|
-
when :get_event_configuration_by_resource_types
|
154
|
-
Aws::IoTWireless::Endpoints::GetEventConfigurationByResourceTypes.build(context)
|
155
|
-
when :get_fuota_task
|
156
|
-
Aws::IoTWireless::Endpoints::GetFuotaTask.build(context)
|
157
|
-
when :get_log_levels_by_resource_types
|
158
|
-
Aws::IoTWireless::Endpoints::GetLogLevelsByResourceTypes.build(context)
|
159
|
-
when :get_metric_configuration
|
160
|
-
Aws::IoTWireless::Endpoints::GetMetricConfiguration.build(context)
|
161
|
-
when :get_metrics
|
162
|
-
Aws::IoTWireless::Endpoints::GetMetrics.build(context)
|
163
|
-
when :get_multicast_group
|
164
|
-
Aws::IoTWireless::Endpoints::GetMulticastGroup.build(context)
|
165
|
-
when :get_multicast_group_session
|
166
|
-
Aws::IoTWireless::Endpoints::GetMulticastGroupSession.build(context)
|
167
|
-
when :get_network_analyzer_configuration
|
168
|
-
Aws::IoTWireless::Endpoints::GetNetworkAnalyzerConfiguration.build(context)
|
169
|
-
when :get_partner_account
|
170
|
-
Aws::IoTWireless::Endpoints::GetPartnerAccount.build(context)
|
171
|
-
when :get_position
|
172
|
-
Aws::IoTWireless::Endpoints::GetPosition.build(context)
|
173
|
-
when :get_position_configuration
|
174
|
-
Aws::IoTWireless::Endpoints::GetPositionConfiguration.build(context)
|
175
|
-
when :get_position_estimate
|
176
|
-
Aws::IoTWireless::Endpoints::GetPositionEstimate.build(context)
|
177
|
-
when :get_resource_event_configuration
|
178
|
-
Aws::IoTWireless::Endpoints::GetResourceEventConfiguration.build(context)
|
179
|
-
when :get_resource_log_level
|
180
|
-
Aws::IoTWireless::Endpoints::GetResourceLogLevel.build(context)
|
181
|
-
when :get_resource_position
|
182
|
-
Aws::IoTWireless::Endpoints::GetResourcePosition.build(context)
|
183
|
-
when :get_service_endpoint
|
184
|
-
Aws::IoTWireless::Endpoints::GetServiceEndpoint.build(context)
|
185
|
-
when :get_service_profile
|
186
|
-
Aws::IoTWireless::Endpoints::GetServiceProfile.build(context)
|
187
|
-
when :get_wireless_device
|
188
|
-
Aws::IoTWireless::Endpoints::GetWirelessDevice.build(context)
|
189
|
-
when :get_wireless_device_import_task
|
190
|
-
Aws::IoTWireless::Endpoints::GetWirelessDeviceImportTask.build(context)
|
191
|
-
when :get_wireless_device_statistics
|
192
|
-
Aws::IoTWireless::Endpoints::GetWirelessDeviceStatistics.build(context)
|
193
|
-
when :get_wireless_gateway
|
194
|
-
Aws::IoTWireless::Endpoints::GetWirelessGateway.build(context)
|
195
|
-
when :get_wireless_gateway_certificate
|
196
|
-
Aws::IoTWireless::Endpoints::GetWirelessGatewayCertificate.build(context)
|
197
|
-
when :get_wireless_gateway_firmware_information
|
198
|
-
Aws::IoTWireless::Endpoints::GetWirelessGatewayFirmwareInformation.build(context)
|
199
|
-
when :get_wireless_gateway_statistics
|
200
|
-
Aws::IoTWireless::Endpoints::GetWirelessGatewayStatistics.build(context)
|
201
|
-
when :get_wireless_gateway_task
|
202
|
-
Aws::IoTWireless::Endpoints::GetWirelessGatewayTask.build(context)
|
203
|
-
when :get_wireless_gateway_task_definition
|
204
|
-
Aws::IoTWireless::Endpoints::GetWirelessGatewayTaskDefinition.build(context)
|
205
|
-
when :list_destinations
|
206
|
-
Aws::IoTWireless::Endpoints::ListDestinations.build(context)
|
207
|
-
when :list_device_profiles
|
208
|
-
Aws::IoTWireless::Endpoints::ListDeviceProfiles.build(context)
|
209
|
-
when :list_devices_for_wireless_device_import_task
|
210
|
-
Aws::IoTWireless::Endpoints::ListDevicesForWirelessDeviceImportTask.build(context)
|
211
|
-
when :list_event_configurations
|
212
|
-
Aws::IoTWireless::Endpoints::ListEventConfigurations.build(context)
|
213
|
-
when :list_fuota_tasks
|
214
|
-
Aws::IoTWireless::Endpoints::ListFuotaTasks.build(context)
|
215
|
-
when :list_multicast_groups
|
216
|
-
Aws::IoTWireless::Endpoints::ListMulticastGroups.build(context)
|
217
|
-
when :list_multicast_groups_by_fuota_task
|
218
|
-
Aws::IoTWireless::Endpoints::ListMulticastGroupsByFuotaTask.build(context)
|
219
|
-
when :list_network_analyzer_configurations
|
220
|
-
Aws::IoTWireless::Endpoints::ListNetworkAnalyzerConfigurations.build(context)
|
221
|
-
when :list_partner_accounts
|
222
|
-
Aws::IoTWireless::Endpoints::ListPartnerAccounts.build(context)
|
223
|
-
when :list_position_configurations
|
224
|
-
Aws::IoTWireless::Endpoints::ListPositionConfigurations.build(context)
|
225
|
-
when :list_queued_messages
|
226
|
-
Aws::IoTWireless::Endpoints::ListQueuedMessages.build(context)
|
227
|
-
when :list_service_profiles
|
228
|
-
Aws::IoTWireless::Endpoints::ListServiceProfiles.build(context)
|
229
|
-
when :list_tags_for_resource
|
230
|
-
Aws::IoTWireless::Endpoints::ListTagsForResource.build(context)
|
231
|
-
when :list_wireless_device_import_tasks
|
232
|
-
Aws::IoTWireless::Endpoints::ListWirelessDeviceImportTasks.build(context)
|
233
|
-
when :list_wireless_devices
|
234
|
-
Aws::IoTWireless::Endpoints::ListWirelessDevices.build(context)
|
235
|
-
when :list_wireless_gateway_task_definitions
|
236
|
-
Aws::IoTWireless::Endpoints::ListWirelessGatewayTaskDefinitions.build(context)
|
237
|
-
when :list_wireless_gateways
|
238
|
-
Aws::IoTWireless::Endpoints::ListWirelessGateways.build(context)
|
239
|
-
when :put_position_configuration
|
240
|
-
Aws::IoTWireless::Endpoints::PutPositionConfiguration.build(context)
|
241
|
-
when :put_resource_log_level
|
242
|
-
Aws::IoTWireless::Endpoints::PutResourceLogLevel.build(context)
|
243
|
-
when :reset_all_resource_log_levels
|
244
|
-
Aws::IoTWireless::Endpoints::ResetAllResourceLogLevels.build(context)
|
245
|
-
when :reset_resource_log_level
|
246
|
-
Aws::IoTWireless::Endpoints::ResetResourceLogLevel.build(context)
|
247
|
-
when :send_data_to_multicast_group
|
248
|
-
Aws::IoTWireless::Endpoints::SendDataToMulticastGroup.build(context)
|
249
|
-
when :send_data_to_wireless_device
|
250
|
-
Aws::IoTWireless::Endpoints::SendDataToWirelessDevice.build(context)
|
251
|
-
when :start_bulk_associate_wireless_device_with_multicast_group
|
252
|
-
Aws::IoTWireless::Endpoints::StartBulkAssociateWirelessDeviceWithMulticastGroup.build(context)
|
253
|
-
when :start_bulk_disassociate_wireless_device_from_multicast_group
|
254
|
-
Aws::IoTWireless::Endpoints::StartBulkDisassociateWirelessDeviceFromMulticastGroup.build(context)
|
255
|
-
when :start_fuota_task
|
256
|
-
Aws::IoTWireless::Endpoints::StartFuotaTask.build(context)
|
257
|
-
when :start_multicast_group_session
|
258
|
-
Aws::IoTWireless::Endpoints::StartMulticastGroupSession.build(context)
|
259
|
-
when :start_single_wireless_device_import_task
|
260
|
-
Aws::IoTWireless::Endpoints::StartSingleWirelessDeviceImportTask.build(context)
|
261
|
-
when :start_wireless_device_import_task
|
262
|
-
Aws::IoTWireless::Endpoints::StartWirelessDeviceImportTask.build(context)
|
263
|
-
when :tag_resource
|
264
|
-
Aws::IoTWireless::Endpoints::TagResource.build(context)
|
265
|
-
when :test_wireless_device
|
266
|
-
Aws::IoTWireless::Endpoints::TestWirelessDevice.build(context)
|
267
|
-
when :untag_resource
|
268
|
-
Aws::IoTWireless::Endpoints::UntagResource.build(context)
|
269
|
-
when :update_destination
|
270
|
-
Aws::IoTWireless::Endpoints::UpdateDestination.build(context)
|
271
|
-
when :update_event_configuration_by_resource_types
|
272
|
-
Aws::IoTWireless::Endpoints::UpdateEventConfigurationByResourceTypes.build(context)
|
273
|
-
when :update_fuota_task
|
274
|
-
Aws::IoTWireless::Endpoints::UpdateFuotaTask.build(context)
|
275
|
-
when :update_log_levels_by_resource_types
|
276
|
-
Aws::IoTWireless::Endpoints::UpdateLogLevelsByResourceTypes.build(context)
|
277
|
-
when :update_metric_configuration
|
278
|
-
Aws::IoTWireless::Endpoints::UpdateMetricConfiguration.build(context)
|
279
|
-
when :update_multicast_group
|
280
|
-
Aws::IoTWireless::Endpoints::UpdateMulticastGroup.build(context)
|
281
|
-
when :update_network_analyzer_configuration
|
282
|
-
Aws::IoTWireless::Endpoints::UpdateNetworkAnalyzerConfiguration.build(context)
|
283
|
-
when :update_partner_account
|
284
|
-
Aws::IoTWireless::Endpoints::UpdatePartnerAccount.build(context)
|
285
|
-
when :update_position
|
286
|
-
Aws::IoTWireless::Endpoints::UpdatePosition.build(context)
|
287
|
-
when :update_resource_event_configuration
|
288
|
-
Aws::IoTWireless::Endpoints::UpdateResourceEventConfiguration.build(context)
|
289
|
-
when :update_resource_position
|
290
|
-
Aws::IoTWireless::Endpoints::UpdateResourcePosition.build(context)
|
291
|
-
when :update_wireless_device
|
292
|
-
Aws::IoTWireless::Endpoints::UpdateWirelessDevice.build(context)
|
293
|
-
when :update_wireless_device_import_task
|
294
|
-
Aws::IoTWireless::Endpoints::UpdateWirelessDeviceImportTask.build(context)
|
295
|
-
when :update_wireless_gateway
|
296
|
-
Aws::IoTWireless::Endpoints::UpdateWirelessGateway.build(context)
|
297
|
-
end
|
298
|
-
end
|
299
70
|
end
|
300
71
|
|
301
72
|
def add_handlers(handlers, _config)
|
@@ -715,6 +715,12 @@ module Aws::IoTWireless
|
|
715
715
|
# </note>
|
716
716
|
# @return [Integer]
|
717
717
|
#
|
718
|
+
# @!attribute [rw] descriptor
|
719
|
+
# The Descriptor specifies some metadata about the File being
|
720
|
+
# transferred using FUOTA e.g. the software version. It is sent
|
721
|
+
# transparently to the device. It is a binary field encoded in base64
|
722
|
+
# @return [String]
|
723
|
+
#
|
718
724
|
class CreateFuotaTaskRequest < Struct.new(
|
719
725
|
:name,
|
720
726
|
:description,
|
@@ -725,7 +731,8 @@ module Aws::IoTWireless
|
|
725
731
|
:tags,
|
726
732
|
:redundancy_percent,
|
727
733
|
:fragment_size_bytes,
|
728
|
-
:fragment_interval_ms
|
734
|
+
:fragment_interval_ms,
|
735
|
+
:descriptor)
|
729
736
|
SENSITIVE = []
|
730
737
|
include Aws::Structure
|
731
738
|
end
|
@@ -1761,6 +1768,55 @@ module Aws::IoTWireless
|
|
1761
1768
|
include Aws::Structure
|
1762
1769
|
end
|
1763
1770
|
|
1771
|
+
# The log options for a FUOTA task event and can be used to set log
|
1772
|
+
# levels for a specific fuota task event.
|
1773
|
+
#
|
1774
|
+
# For a LoRaWAN FuotaTask type, possible event for a log message is
|
1775
|
+
# `Fuota`.
|
1776
|
+
#
|
1777
|
+
# @!attribute [rw] event
|
1778
|
+
# The event for a log message, if the log message is tied to a fuota
|
1779
|
+
# task.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @!attribute [rw] log_level
|
1783
|
+
# The log level for a log message. The log levels can be disabled, or
|
1784
|
+
# set to `ERROR` to display less verbose logs containing only error
|
1785
|
+
# information, or to `INFO` for more detailed logs.
|
1786
|
+
# @return [String]
|
1787
|
+
#
|
1788
|
+
class FuotaTaskEventLogOption < Struct.new(
|
1789
|
+
:event,
|
1790
|
+
:log_level)
|
1791
|
+
SENSITIVE = []
|
1792
|
+
include Aws::Structure
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
# The log options for fuota tasks and can be used to set log levels for
|
1796
|
+
# a specific type of fuota task.
|
1797
|
+
#
|
1798
|
+
# @!attribute [rw] type
|
1799
|
+
# The fuota task type.
|
1800
|
+
# @return [String]
|
1801
|
+
#
|
1802
|
+
# @!attribute [rw] log_level
|
1803
|
+
# The log level for a log message. The log levels can be disabled, or
|
1804
|
+
# set to `ERROR` to display less verbose logs containing only error
|
1805
|
+
# information, or to `INFO` for more detailed logs.
|
1806
|
+
# @return [String]
|
1807
|
+
#
|
1808
|
+
# @!attribute [rw] events
|
1809
|
+
# The list of FUOTA task event log options.
|
1810
|
+
# @return [Array<Types::FuotaTaskEventLogOption>]
|
1811
|
+
#
|
1812
|
+
class FuotaTaskLogOption < Struct.new(
|
1813
|
+
:type,
|
1814
|
+
:log_level,
|
1815
|
+
:events)
|
1816
|
+
SENSITIVE = []
|
1817
|
+
include Aws::Structure
|
1818
|
+
end
|
1819
|
+
|
1764
1820
|
# Gateway list item object that specifies the frequency and list of
|
1765
1821
|
# gateways for which the downlink message should be sent.
|
1766
1822
|
#
|
@@ -1974,6 +2030,12 @@ module Aws::IoTWireless
|
|
1974
2030
|
# </note>
|
1975
2031
|
# @return [Integer]
|
1976
2032
|
#
|
2033
|
+
# @!attribute [rw] descriptor
|
2034
|
+
# The Descriptor specifies some metadata about the File being
|
2035
|
+
# transferred using FUOTA e.g. the software version. It is sent
|
2036
|
+
# transparently to the device. It is a binary field encoded in base64
|
2037
|
+
# @return [String]
|
2038
|
+
#
|
1977
2039
|
class GetFuotaTaskResponse < Struct.new(
|
1978
2040
|
:arn,
|
1979
2041
|
:id,
|
@@ -1986,7 +2048,8 @@ module Aws::IoTWireless
|
|
1986
2048
|
:created_at,
|
1987
2049
|
:redundancy_percent,
|
1988
2050
|
:fragment_size_bytes,
|
1989
|
-
:fragment_interval_ms
|
2051
|
+
:fragment_interval_ms,
|
2052
|
+
:descriptor)
|
1990
2053
|
SENSITIVE = []
|
1991
2054
|
include Aws::Structure
|
1992
2055
|
end
|
@@ -2009,10 +2072,15 @@ module Aws::IoTWireless
|
|
2009
2072
|
# The list of wireless device log options.
|
2010
2073
|
# @return [Array<Types::WirelessDeviceLogOption>]
|
2011
2074
|
#
|
2075
|
+
# @!attribute [rw] fuota_task_log_options
|
2076
|
+
# The list of fuota task log options.
|
2077
|
+
# @return [Array<Types::FuotaTaskLogOption>]
|
2078
|
+
#
|
2012
2079
|
class GetLogLevelsByResourceTypesResponse < Struct.new(
|
2013
2080
|
:default_log_level,
|
2014
2081
|
:wireless_gateway_log_options,
|
2015
|
-
:wireless_device_log_options
|
2082
|
+
:wireless_device_log_options,
|
2083
|
+
:fuota_task_log_options)
|
2016
2084
|
SENSITIVE = []
|
2017
2085
|
include Aws::Structure
|
2018
2086
|
end
|
@@ -2415,8 +2483,8 @@ module Aws::IoTWireless
|
|
2415
2483
|
# @return [String]
|
2416
2484
|
#
|
2417
2485
|
# @!attribute [rw] resource_type
|
2418
|
-
# The type of the resource, which can be `WirelessDevice
|
2419
|
-
# `WirelessGateway`.
|
2486
|
+
# The type of the resource, which can be `WirelessDevice`,
|
2487
|
+
# `WirelessGateway` or `FuotaTask`.
|
2420
2488
|
# @return [String]
|
2421
2489
|
#
|
2422
2490
|
class GetResourceLogLevelRequest < Struct.new(
|
@@ -4362,9 +4430,16 @@ module Aws::IoTWireless
|
|
4362
4430
|
# DlClass for LoRaWAM, valid values are ClassB and ClassC.
|
4363
4431
|
# @return [String]
|
4364
4432
|
#
|
4433
|
+
# @!attribute [rw] participating_gateways
|
4434
|
+
# Specify the list of gateways to which you want to send the multicast
|
4435
|
+
# downlink messages. The multicast message will be sent to each
|
4436
|
+
# gateway in the sequence provided in the list.
|
4437
|
+
# @return [Types::ParticipatingGatewaysMulticast]
|
4438
|
+
#
|
4365
4439
|
class LoRaWANMulticast < Struct.new(
|
4366
4440
|
:rf_region,
|
4367
|
-
:dl_class
|
4441
|
+
:dl_class,
|
4442
|
+
:participating_gateways)
|
4368
4443
|
SENSITIVE = []
|
4369
4444
|
include Aws::Structure
|
4370
4445
|
end
|
@@ -4389,11 +4464,18 @@ module Aws::IoTWireless
|
|
4389
4464
|
# Number of devices that are associated to the multicast group.
|
4390
4465
|
# @return [Integer]
|
4391
4466
|
#
|
4467
|
+
# @!attribute [rw] participating_gateways
|
4468
|
+
# Specify the list of gateways to which you want to send the multicast
|
4469
|
+
# downlink messages. The multicast message will be sent to each
|
4470
|
+
# gateway in the sequence provided in the list.
|
4471
|
+
# @return [Types::ParticipatingGatewaysMulticast]
|
4472
|
+
#
|
4392
4473
|
class LoRaWANMulticastGet < Struct.new(
|
4393
4474
|
:rf_region,
|
4394
4475
|
:dl_class,
|
4395
4476
|
:number_of_devices_requested,
|
4396
|
-
:number_of_devices_in_group
|
4477
|
+
:number_of_devices_in_group,
|
4478
|
+
:participating_gateways)
|
4397
4479
|
SENSITIVE = []
|
4398
4480
|
include Aws::Structure
|
4399
4481
|
end
|
@@ -4955,6 +5037,31 @@ module Aws::IoTWireless
|
|
4955
5037
|
include Aws::Structure
|
4956
5038
|
end
|
4957
5039
|
|
5040
|
+
# Specify the list of gateways to which you want to send the multicast
|
5041
|
+
# downlink messages. The multicast message will be sent to each gateway
|
5042
|
+
# in the sequence provided in the list.
|
5043
|
+
#
|
5044
|
+
# @!attribute [rw] gateway_list
|
5045
|
+
# The list of gateways that you want to use for sending the multicast
|
5046
|
+
# downlink. Each downlink will be sent to all the gateways in the list
|
5047
|
+
# with transmission interval between them. If list is empty the
|
5048
|
+
# gateway list will be dynamically selected similar to the case of no
|
5049
|
+
# ParticipatingGateways
|
5050
|
+
# @return [Array<String>]
|
5051
|
+
#
|
5052
|
+
# @!attribute [rw] transmission_interval
|
5053
|
+
# The duration of time for which AWS IoT Core for LoRaWAN will wait
|
5054
|
+
# before transmitting the multicast payload to the next gateway in the
|
5055
|
+
# list.
|
5056
|
+
# @return [Integer]
|
5057
|
+
#
|
5058
|
+
class ParticipatingGatewaysMulticast < Struct.new(
|
5059
|
+
:gateway_list,
|
5060
|
+
:transmission_interval)
|
5061
|
+
SENSITIVE = []
|
5062
|
+
include Aws::Structure
|
5063
|
+
end
|
5064
|
+
|
4958
5065
|
# The wrapper for a position configuration.
|
4959
5066
|
#
|
4960
5067
|
# @!attribute [rw] resource_identifier
|
@@ -5103,8 +5210,8 @@ module Aws::IoTWireless
|
|
5103
5210
|
# @return [String]
|
5104
5211
|
#
|
5105
5212
|
# @!attribute [rw] resource_type
|
5106
|
-
# The type of the resource, which can be `WirelessDevice
|
5107
|
-
# `WirelessGateway`.
|
5213
|
+
# The type of the resource, which can be `WirelessDevice`,
|
5214
|
+
# `WirelessGateway`, or `FuotaTask`.
|
5108
5215
|
# @return [String]
|
5109
5216
|
#
|
5110
5217
|
# @!attribute [rw] log_level
|
@@ -5136,8 +5243,8 @@ module Aws::IoTWireless
|
|
5136
5243
|
# @return [String]
|
5137
5244
|
#
|
5138
5245
|
# @!attribute [rw] resource_type
|
5139
|
-
# The type of the resource, which can be `WirelessDevice
|
5140
|
-
# `WirelessGateway`.
|
5246
|
+
# The type of the resource, which can be `WirelessDevice`,
|
5247
|
+
# `WirelessGateway`, or `FuotaTask`.
|
5141
5248
|
# @return [String]
|
5142
5249
|
#
|
5143
5250
|
class ResetResourceLogLevelRequest < Struct.new(
|
@@ -6384,6 +6491,12 @@ module Aws::IoTWireless
|
|
6384
6491
|
# </note>
|
6385
6492
|
# @return [Integer]
|
6386
6493
|
#
|
6494
|
+
# @!attribute [rw] descriptor
|
6495
|
+
# The Descriptor specifies some metadata about the File being
|
6496
|
+
# transferred using FUOTA e.g. the software version. It is sent
|
6497
|
+
# transparently to the device. It is a binary field encoded in base64
|
6498
|
+
# @return [String]
|
6499
|
+
#
|
6387
6500
|
class UpdateFuotaTaskRequest < Struct.new(
|
6388
6501
|
:id,
|
6389
6502
|
:name,
|
@@ -6393,7 +6506,8 @@ module Aws::IoTWireless
|
|
6393
6506
|
:firmware_update_role,
|
6394
6507
|
:redundancy_percent,
|
6395
6508
|
:fragment_size_bytes,
|
6396
|
-
:fragment_interval_ms
|
6509
|
+
:fragment_interval_ms,
|
6510
|
+
:descriptor)
|
6397
6511
|
SENSITIVE = []
|
6398
6512
|
include Aws::Structure
|
6399
6513
|
end
|
@@ -6406,6 +6520,10 @@ module Aws::IoTWireless
|
|
6406
6520
|
# information, or to `INFO` for more detailed logs.
|
6407
6521
|
# @return [String]
|
6408
6522
|
#
|
6523
|
+
# @!attribute [rw] fuota_task_log_options
|
6524
|
+
# The list of fuota task log options.
|
6525
|
+
# @return [Array<Types::FuotaTaskLogOption>]
|
6526
|
+
#
|
6409
6527
|
# @!attribute [rw] wireless_device_log_options
|
6410
6528
|
# The list of wireless device log options.
|
6411
6529
|
# @return [Array<Types::WirelessDeviceLogOption>]
|
@@ -6416,6 +6534,7 @@ module Aws::IoTWireless
|
|
6416
6534
|
#
|
6417
6535
|
class UpdateLogLevelsByResourceTypesRequest < Struct.new(
|
6418
6536
|
:default_log_level,
|
6537
|
+
:fuota_task_log_options,
|
6419
6538
|
:wireless_device_log_options,
|
6420
6539
|
:wireless_gateway_log_options)
|
6421
6540
|
SENSITIVE = []
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -252,7 +252,8 @@ module Aws
|
|
252
252
|
],
|
253
253
|
?redundancy_percent: ::Integer,
|
254
254
|
?fragment_size_bytes: ::Integer,
|
255
|
-
?fragment_interval_ms: ::Integer
|
255
|
+
?fragment_interval_ms: ::Integer,
|
256
|
+
?descriptor: ::String
|
256
257
|
) -> _CreateFuotaTaskResponseSuccess
|
257
258
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFuotaTaskResponseSuccess
|
258
259
|
|
@@ -268,7 +269,11 @@ module Aws
|
|
268
269
|
?client_request_token: ::String,
|
269
270
|
lo_ra_wan: {
|
270
271
|
rf_region: ("EU868" | "US915" | "AU915" | "AS923-1" | "AS923-2" | "AS923-3" | "AS923-4" | "EU433" | "CN470" | "CN779" | "RU864" | "KR920" | "IN865")?,
|
271
|
-
dl_class: ("ClassB" | "ClassC")
|
272
|
+
dl_class: ("ClassB" | "ClassC")?,
|
273
|
+
participating_gateways: {
|
274
|
+
gateway_list: Array[::String]?,
|
275
|
+
transmission_interval: ::Integer?
|
276
|
+
}?
|
272
277
|
},
|
273
278
|
?tags: Array[
|
274
279
|
{
|
@@ -732,6 +737,7 @@ module Aws
|
|
732
737
|
def redundancy_percent: () -> ::Integer
|
733
738
|
def fragment_size_bytes: () -> ::Integer
|
734
739
|
def fragment_interval_ms: () -> ::Integer
|
740
|
+
def descriptor: () -> ::String
|
735
741
|
end
|
736
742
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#get_fuota_task-instance_method
|
737
743
|
def get_fuota_task: (
|
@@ -744,6 +750,7 @@ module Aws
|
|
744
750
|
def default_log_level: () -> ("INFO" | "ERROR" | "DISABLED")
|
745
751
|
def wireless_gateway_log_options: () -> ::Array[Types::WirelessGatewayLogOption]
|
746
752
|
def wireless_device_log_options: () -> ::Array[Types::WirelessDeviceLogOption]
|
753
|
+
def fuota_task_log_options: () -> ::Array[Types::FuotaTaskLogOption]
|
747
754
|
end
|
748
755
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#get_log_levels_by_resource_types-instance_method
|
749
756
|
def get_log_levels_by_resource_types: (
|
@@ -1025,7 +1032,7 @@ module Aws
|
|
1025
1032
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#get_resource_event_configuration-instance_method
|
1026
1033
|
def get_resource_event_configuration: (
|
1027
1034
|
identifier: ::String,
|
1028
|
-
identifier_type: ("PartnerAccountId" | "DevEui" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId"),
|
1035
|
+
identifier_type: ("PartnerAccountId" | "DevEui" | "FuotaTaskId" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId"),
|
1029
1036
|
?partner_type: ("Sidewalk")
|
1030
1037
|
) -> _GetResourceEventConfigurationResponseSuccess
|
1031
1038
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourceEventConfigurationResponseSuccess
|
@@ -1255,7 +1262,7 @@ module Aws
|
|
1255
1262
|
end
|
1256
1263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#list_event_configurations-instance_method
|
1257
1264
|
def list_event_configurations: (
|
1258
|
-
resource_type: ("SidewalkAccount" | "WirelessDevice" | "WirelessGateway"),
|
1265
|
+
resource_type: ("FuotaTask" | "SidewalkAccount" | "WirelessDevice" | "WirelessGateway"),
|
1259
1266
|
?max_results: ::Integer,
|
1260
1267
|
?next_token: ::String
|
1261
1268
|
) -> _ListEventConfigurationsResponseSuccess
|
@@ -1720,7 +1727,8 @@ module Aws
|
|
1720
1727
|
?firmware_update_role: ::String,
|
1721
1728
|
?redundancy_percent: ::Integer,
|
1722
1729
|
?fragment_size_bytes: ::Integer,
|
1723
|
-
?fragment_interval_ms: ::Integer
|
1730
|
+
?fragment_interval_ms: ::Integer,
|
1731
|
+
?descriptor: ::String
|
1724
1732
|
) -> _UpdateFuotaTaskResponseSuccess
|
1725
1733
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFuotaTaskResponseSuccess
|
1726
1734
|
|
@@ -1730,6 +1738,18 @@ module Aws
|
|
1730
1738
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#update_log_levels_by_resource_types-instance_method
|
1731
1739
|
def update_log_levels_by_resource_types: (
|
1732
1740
|
?default_log_level: ("INFO" | "ERROR" | "DISABLED"),
|
1741
|
+
?fuota_task_log_options: Array[
|
1742
|
+
{
|
1743
|
+
type: ("LoRaWAN"),
|
1744
|
+
log_level: ("INFO" | "ERROR" | "DISABLED"),
|
1745
|
+
events: Array[
|
1746
|
+
{
|
1747
|
+
event: ("Fuota"),
|
1748
|
+
log_level: ("INFO" | "ERROR" | "DISABLED")
|
1749
|
+
},
|
1750
|
+
]?
|
1751
|
+
},
|
1752
|
+
],
|
1733
1753
|
?wireless_device_log_options: Array[
|
1734
1754
|
{
|
1735
1755
|
type: ("Sidewalk" | "LoRaWAN"),
|
@@ -1778,7 +1798,11 @@ module Aws
|
|
1778
1798
|
?description: ::String,
|
1779
1799
|
?lo_ra_wan: {
|
1780
1800
|
rf_region: ("EU868" | "US915" | "AU915" | "AS923-1" | "AS923-2" | "AS923-3" | "AS923-4" | "EU433" | "CN470" | "CN779" | "RU864" | "KR920" | "IN865")?,
|
1781
|
-
dl_class: ("ClassB" | "ClassC")
|
1801
|
+
dl_class: ("ClassB" | "ClassC")?,
|
1802
|
+
participating_gateways: {
|
1803
|
+
gateway_list: Array[::String]?,
|
1804
|
+
transmission_interval: ::Integer?
|
1805
|
+
}?
|
1782
1806
|
}
|
1783
1807
|
) -> _UpdateMulticastGroupResponseSuccess
|
1784
1808
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMulticastGroupResponseSuccess
|
@@ -1834,7 +1858,7 @@ module Aws
|
|
1834
1858
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#update_resource_event_configuration-instance_method
|
1835
1859
|
def update_resource_event_configuration: (
|
1836
1860
|
identifier: ::String,
|
1837
|
-
identifier_type: ("PartnerAccountId" | "DevEui" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId"),
|
1861
|
+
identifier_type: ("PartnerAccountId" | "DevEui" | "FuotaTaskId" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId"),
|
1838
1862
|
?partner_type: ("Sidewalk"),
|
1839
1863
|
?device_registration_state: {
|
1840
1864
|
sidewalk: {
|