aws-sdk-iotwireless 1.59.0 → 1.61.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: 9f1e7b3f882a8c7e6ce8e1fee0d34b3f6e0ead08be6846fa23ba8da30b3a3741
4
- data.tar.gz: bf7224a8eef6464f2ad3256aa160659aa275b99895ef59a61500ca41c1ecb60e
3
+ metadata.gz: da510b9bfc96385cac5f68a8f2f31905ea357cb161effa7a55b7cb09f92b6909
4
+ data.tar.gz: 1c6c7306f5585b0737cc13c4b6f8d5f043c895e2bc7cd3c0e4faf507e0bd6360
5
5
  SHA512:
6
- metadata.gz: a254793575855904f4179dd618dcdc3cd8dc1328b38ce6cdbf8fd56dd2cb562929500fdf963321e1bf3b37523b18f7ff13bbddece969e357bb264e54f2d004f2
7
- data.tar.gz: 054b05042a4e24cc8b93487a91638afc0ac017717b2644bd0e2bc7cd574725236b1c1a38405bb07b840dd3340bc4b44084a6896b866e95d5518e78dc39986485
6
+ metadata.gz: 9a0531f61e44d01400f54dcf79d6ce839cd738fc09de555bc467ecdc4aec8453e3a1ed686a4705a22593d0096992150a35737f5bec82ef09e0b13f7b08c04645
7
+ data.tar.gz: 531d5e9fa6ca8b23c253cbcd4cb3f38e4cb9079ecf31ba326a246f0b2288d4f3a19d0a6e3c03341792e235bc42927464e6844bb26fbb727b6bd28ffbcd0df98b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2024-11-14)
5
+ ------------------
6
+
7
+ * Feature - New FuotaTask resource type to enable logging for your FUOTA tasks. A ParticipatingGatewaysforMulticast parameter to choose the list of gateways to receive the multicast downlink message and the transmission interval between them. Descriptor field which will be sent to devices during FUOTA transfer.
8
+
9
+ 1.60.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.59.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.61.0
@@ -900,6 +900,11 @@ module Aws::IoTWireless
900
900
  #
901
901
  # </note>
902
902
  #
903
+ # @option params [String] :descriptor
904
+ # The Descriptor specifies some metadata about the File being
905
+ # transferred using FUOTA e.g. the software version. It is sent
906
+ # transparently to the device. It is a binary field encoded in base64
907
+ #
903
908
  # @return [Types::CreateFuotaTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
904
909
  #
905
910
  # * {Types::CreateFuotaTaskResponse#arn #arn} => String
@@ -925,6 +930,7 @@ module Aws::IoTWireless
925
930
  # redundancy_percent: 1,
926
931
  # fragment_size_bytes: 1,
927
932
  # fragment_interval_ms: 1,
933
+ # descriptor: "FileDescriptor",
928
934
  # })
929
935
  #
930
936
  # @example Response structure
@@ -986,6 +992,10 @@ module Aws::IoTWireless
986
992
  # lo_ra_wan: { # required
987
993
  # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
988
994
  # dl_class: "ClassB", # accepts ClassB, ClassC
995
+ # participating_gateways: {
996
+ # gateway_list: ["WirelessGatewayId"],
997
+ # transmission_interval: 1,
998
+ # },
989
999
  # },
990
1000
  # tags: [
991
1001
  # {
@@ -2096,6 +2106,7 @@ module Aws::IoTWireless
2096
2106
  # * {Types::GetFuotaTaskResponse#redundancy_percent #redundancy_percent} => Integer
2097
2107
  # * {Types::GetFuotaTaskResponse#fragment_size_bytes #fragment_size_bytes} => Integer
2098
2108
  # * {Types::GetFuotaTaskResponse#fragment_interval_ms #fragment_interval_ms} => Integer
2109
+ # * {Types::GetFuotaTaskResponse#descriptor #descriptor} => String
2099
2110
  #
2100
2111
  # @example Request syntax with placeholder values
2101
2112
  #
@@ -2118,6 +2129,7 @@ module Aws::IoTWireless
2118
2129
  # resp.redundancy_percent #=> Integer
2119
2130
  # resp.fragment_size_bytes #=> Integer
2120
2131
  # resp.fragment_interval_ms #=> Integer
2132
+ # resp.descriptor #=> String
2121
2133
  #
2122
2134
  # @overload get_fuota_task(params = {})
2123
2135
  # @param [Hash] params ({})
@@ -2135,6 +2147,7 @@ module Aws::IoTWireless
2135
2147
  # * {Types::GetLogLevelsByResourceTypesResponse#default_log_level #default_log_level} => String
2136
2148
  # * {Types::GetLogLevelsByResourceTypesResponse#wireless_gateway_log_options #wireless_gateway_log_options} => Array&lt;Types::WirelessGatewayLogOption&gt;
2137
2149
  # * {Types::GetLogLevelsByResourceTypesResponse#wireless_device_log_options #wireless_device_log_options} => Array&lt;Types::WirelessDeviceLogOption&gt;
2150
+ # * {Types::GetLogLevelsByResourceTypesResponse#fuota_task_log_options #fuota_task_log_options} => Array&lt;Types::FuotaTaskLogOption&gt;
2138
2151
  #
2139
2152
  # @example Response structure
2140
2153
  #
@@ -2151,6 +2164,12 @@ module Aws::IoTWireless
2151
2164
  # resp.wireless_device_log_options[0].events #=> Array
2152
2165
  # resp.wireless_device_log_options[0].events[0].event #=> String, one of "Join", "Rejoin", "Uplink_Data", "Downlink_Data", "Registration"
2153
2166
  # resp.wireless_device_log_options[0].events[0].log_level #=> String, one of "INFO", "ERROR", "DISABLED"
2167
+ # resp.fuota_task_log_options #=> Array
2168
+ # resp.fuota_task_log_options[0].type #=> String, one of "LoRaWAN"
2169
+ # resp.fuota_task_log_options[0].log_level #=> String, one of "INFO", "ERROR", "DISABLED"
2170
+ # resp.fuota_task_log_options[0].events #=> Array
2171
+ # resp.fuota_task_log_options[0].events[0].event #=> String, one of "Fuota"
2172
+ # resp.fuota_task_log_options[0].events[0].log_level #=> String, one of "INFO", "ERROR", "DISABLED"
2154
2173
  #
2155
2174
  # @overload get_log_levels_by_resource_types(params = {})
2156
2175
  # @param [Hash] params ({})
@@ -2268,6 +2287,9 @@ module Aws::IoTWireless
2268
2287
  # resp.lo_ra_wan.dl_class #=> String, one of "ClassB", "ClassC"
2269
2288
  # resp.lo_ra_wan.number_of_devices_requested #=> Integer
2270
2289
  # resp.lo_ra_wan.number_of_devices_in_group #=> Integer
2290
+ # resp.lo_ra_wan.participating_gateways.gateway_list #=> Array
2291
+ # resp.lo_ra_wan.participating_gateways.gateway_list[0] #=> String
2292
+ # resp.lo_ra_wan.participating_gateways.transmission_interval #=> Integer
2271
2293
  # resp.created_at #=> Time
2272
2294
  #
2273
2295
  # @overload get_multicast_group(params = {})
@@ -2694,7 +2716,7 @@ module Aws::IoTWireless
2694
2716
  #
2695
2717
  # resp = client.get_resource_event_configuration({
2696
2718
  # identifier: "Identifier", # required
2697
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
2719
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, FuotaTaskId, GatewayEui, WirelessDeviceId, WirelessGatewayId
2698
2720
  # partner_type: "Sidewalk", # accepts Sidewalk
2699
2721
  # })
2700
2722
  #
@@ -2719,8 +2741,8 @@ module Aws::IoTWireless
2719
2741
  end
2720
2742
 
2721
2743
  # Fetches the log-level override, if any, for a given resource-ID and
2722
- # resource-type. It can be used for a wireless device or a wireless
2723
- # gateway.
2744
+ # resource-type. It can be used for a wireless device, wireless gateway
2745
+ # or fuota task.
2724
2746
  #
2725
2747
  # @option params [required, String] :resource_identifier
2726
2748
  # The identifier of the resource. For a Wireless Device, it is the
@@ -2728,8 +2750,8 @@ module Aws::IoTWireless
2728
2750
  # ID.
2729
2751
  #
2730
2752
  # @option params [required, String] :resource_type
2731
- # The type of the resource, which can be `WirelessDevice` or
2732
- # `WirelessGateway`.
2753
+ # The type of the resource, which can be `WirelessDevice`,
2754
+ # `WirelessGateway` or `FuotaTask`.
2733
2755
  #
2734
2756
  # @return [Types::GetResourceLogLevelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2735
2757
  #
@@ -3440,7 +3462,7 @@ module Aws::IoTWireless
3440
3462
  # @example Request syntax with placeholder values
3441
3463
  #
3442
3464
  # resp = client.list_event_configurations({
3443
- # resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
3465
+ # resource_type: "FuotaTask", # required, accepts FuotaTask, SidewalkAccount, WirelessDevice, WirelessGateway
3444
3466
  # max_results: 1,
3445
3467
  # next_token: "NextToken",
3446
3468
  # })
@@ -3450,7 +3472,7 @@ module Aws::IoTWireless
3450
3472
  # resp.next_token #=> String
3451
3473
  # resp.event_configurations_list #=> Array
3452
3474
  # resp.event_configurations_list[0].identifier #=> String
3453
- # resp.event_configurations_list[0].identifier_type #=> String, one of "PartnerAccountId", "DevEui", "GatewayEui", "WirelessDeviceId", "WirelessGatewayId"
3475
+ # resp.event_configurations_list[0].identifier_type #=> String, one of "PartnerAccountId", "DevEui", "FuotaTaskId", "GatewayEui", "WirelessDeviceId", "WirelessGatewayId"
3454
3476
  # resp.event_configurations_list[0].partner_type #=> String, one of "Sidewalk"
3455
3477
  # resp.event_configurations_list[0].events.device_registration_state.sidewalk.amazon_id_event_topic #=> String, one of "Enabled", "Disabled"
3456
3478
  # resp.event_configurations_list[0].events.device_registration_state.wireless_device_id_event_topic #=> String, one of "Enabled", "Disabled"
@@ -4130,8 +4152,8 @@ module Aws::IoTWireless
4130
4152
  # ID.
4131
4153
  #
4132
4154
  # @option params [required, String] :resource_type
4133
- # The type of the resource, which can be `WirelessDevice` or
4134
- # `WirelessGateway`.
4155
+ # The type of the resource, which can be `WirelessDevice`,
4156
+ # `WirelessGateway`, or `FuotaTask`.
4135
4157
  #
4136
4158
  # @option params [required, String] :log_level
4137
4159
  # The log level for a log message. The log levels can be disabled, or
@@ -4155,8 +4177,8 @@ module Aws::IoTWireless
4155
4177
  req.send_request(options)
4156
4178
  end
4157
4179
 
4158
- # Removes the log-level overrides for all resources; both wireless
4159
- # devices and wireless gateways.
4180
+ # Removes the log-level overrides for all resources; wireless devices,
4181
+ # wireless gateways, and fuota tasks.
4160
4182
  #
4161
4183
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4162
4184
  #
@@ -4168,8 +4190,8 @@ module Aws::IoTWireless
4168
4190
  end
4169
4191
 
4170
4192
  # Removes the log-level override, if any, for a specific resource-ID and
4171
- # resource-type. It can be used for a wireless device or a wireless
4172
- # gateway.
4193
+ # resource-type. It can be used for a wireless device, a wireless
4194
+ # gateway, or a fuota task.
4173
4195
  #
4174
4196
  # @option params [required, String] :resource_identifier
4175
4197
  # The identifier of the resource. For a Wireless Device, it is the
@@ -4177,8 +4199,8 @@ module Aws::IoTWireless
4177
4199
  # ID.
4178
4200
  #
4179
4201
  # @option params [required, String] :resource_type
4180
- # The type of the resource, which can be `WirelessDevice` or
4181
- # `WirelessGateway`.
4202
+ # The type of the resource, which can be `WirelessDevice`,
4203
+ # `WirelessGateway`, or `FuotaTask`.
4182
4204
  #
4183
4205
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4184
4206
  #
@@ -4779,6 +4801,11 @@ module Aws::IoTWireless
4779
4801
  #
4780
4802
  # </note>
4781
4803
  #
4804
+ # @option params [String] :descriptor
4805
+ # The Descriptor specifies some metadata about the File being
4806
+ # transferred using FUOTA e.g. the software version. It is sent
4807
+ # transparently to the device. It is a binary field encoded in base64
4808
+ #
4782
4809
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4783
4810
  #
4784
4811
  # @example Request syntax with placeholder values
@@ -4795,6 +4822,7 @@ module Aws::IoTWireless
4795
4822
  # redundancy_percent: 1,
4796
4823
  # fragment_size_bytes: 1,
4797
4824
  # fragment_interval_ms: 1,
4825
+ # descriptor: "FileDescriptor",
4798
4826
  # })
4799
4827
  #
4800
4828
  # @overload update_fuota_task(params = {})
@@ -4814,6 +4842,9 @@ module Aws::IoTWireless
4814
4842
  # set to `ERROR` to display less verbose logs containing only error
4815
4843
  # information, or to `INFO` for more detailed logs.
4816
4844
  #
4845
+ # @option params [Array<Types::FuotaTaskLogOption>] :fuota_task_log_options
4846
+ # The list of fuota task log options.
4847
+ #
4817
4848
  # @option params [Array<Types::WirelessDeviceLogOption>] :wireless_device_log_options
4818
4849
  # The list of wireless device log options.
4819
4850
  #
@@ -4826,6 +4857,18 @@ module Aws::IoTWireless
4826
4857
  #
4827
4858
  # resp = client.update_log_levels_by_resource_types({
4828
4859
  # default_log_level: "INFO", # accepts INFO, ERROR, DISABLED
4860
+ # fuota_task_log_options: [
4861
+ # {
4862
+ # type: "LoRaWAN", # required, accepts LoRaWAN
4863
+ # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
4864
+ # events: [
4865
+ # {
4866
+ # event: "Fuota", # required, accepts Fuota
4867
+ # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
4868
+ # },
4869
+ # ],
4870
+ # },
4871
+ # ],
4829
4872
  # wireless_device_log_options: [
4830
4873
  # {
4831
4874
  # type: "Sidewalk", # required, accepts Sidewalk, LoRaWAN
@@ -4906,6 +4949,10 @@ module Aws::IoTWireless
4906
4949
  # lo_ra_wan: {
4907
4950
  # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1, AS923-2, AS923-3, AS923-4, EU433, CN470, CN779, RU864, KR920, IN865
4908
4951
  # dl_class: "ClassB", # accepts ClassB, ClassC
4952
+ # participating_gateways: {
4953
+ # gateway_list: ["WirelessGatewayId"],
4954
+ # transmission_interval: 1,
4955
+ # },
4909
4956
  # },
4910
4957
  # })
4911
4958
  #
@@ -5085,7 +5132,7 @@ module Aws::IoTWireless
5085
5132
  #
5086
5133
  # resp = client.update_resource_event_configuration({
5087
5134
  # identifier: "Identifier", # required
5088
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
5135
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, FuotaTaskId, GatewayEui, WirelessDeviceId, WirelessGatewayId
5089
5136
  # partner_type: "Sidewalk", # accepts Sidewalk
5090
5137
  # device_registration_state: {
5091
5138
  # sidewalk: {
@@ -5321,7 +5368,7 @@ module Aws::IoTWireless
5321
5368
  tracer: tracer
5322
5369
  )
5323
5370
  context[:gem_name] = 'aws-sdk-iotwireless'
5324
- context[:gem_version] = '1.59.0'
5371
+ context[:gem_version] = '1.61.0'
5325
5372
  Seahorse::Client::Request.new(handlers, context)
5326
5373
  end
5327
5374
 
@@ -210,6 +210,7 @@ module Aws::IoTWireless
210
210
  FPorts = Shapes::StructureShape.new(name: 'FPorts')
211
211
  FactoryPresetFreqsList = Shapes::ListShape.new(name: 'FactoryPresetFreqsList')
212
212
  FactorySupport = Shapes::BooleanShape.new(name: 'FactorySupport')
213
+ FileDescriptor = Shapes::StringShape.new(name: 'FileDescriptor')
213
214
  Fingerprint = Shapes::StringShape.new(name: 'Fingerprint')
214
215
  FirmwareUpdateImage = Shapes::StringShape.new(name: 'FirmwareUpdateImage')
215
216
  FirmwareUpdateRole = Shapes::StringShape.new(name: 'FirmwareUpdateRole')
@@ -218,14 +219,21 @@ module Aws::IoTWireless
218
219
  FuotaDeviceStatus = Shapes::StringShape.new(name: 'FuotaDeviceStatus')
219
220
  FuotaTask = Shapes::StructureShape.new(name: 'FuotaTask')
220
221
  FuotaTaskArn = Shapes::StringShape.new(name: 'FuotaTaskArn')
222
+ FuotaTaskEvent = Shapes::StringShape.new(name: 'FuotaTaskEvent')
223
+ FuotaTaskEventLogOption = Shapes::StructureShape.new(name: 'FuotaTaskEventLogOption')
224
+ FuotaTaskEventLogOptionList = Shapes::ListShape.new(name: 'FuotaTaskEventLogOptionList')
221
225
  FuotaTaskId = Shapes::StringShape.new(name: 'FuotaTaskId')
222
226
  FuotaTaskList = Shapes::ListShape.new(name: 'FuotaTaskList')
227
+ FuotaTaskLogOption = Shapes::StructureShape.new(name: 'FuotaTaskLogOption')
228
+ FuotaTaskLogOptionList = Shapes::ListShape.new(name: 'FuotaTaskLogOptionList')
223
229
  FuotaTaskName = Shapes::StringShape.new(name: 'FuotaTaskName')
224
230
  FuotaTaskStatus = Shapes::StringShape.new(name: 'FuotaTaskStatus')
231
+ FuotaTaskType = Shapes::StringShape.new(name: 'FuotaTaskType')
225
232
  GPST = Shapes::FloatShape.new(name: 'GPST')
226
233
  GatewayEui = Shapes::StringShape.new(name: 'GatewayEui')
227
234
  GatewayList = Shapes::ListShape.new(name: 'GatewayList')
228
235
  GatewayListItem = Shapes::StructureShape.new(name: 'GatewayListItem')
236
+ GatewayListMulticast = Shapes::ListShape.new(name: 'GatewayListMulticast')
229
237
  GatewayMaxEirp = Shapes::FloatShape.new(name: 'GatewayMaxEirp')
230
238
  GenAppKey = Shapes::StringShape.new(name: 'GenAppKey')
231
239
  GeoJsonPayload = Shapes::BlobShape.new(name: 'GeoJsonPayload')
@@ -455,6 +463,7 @@ module Aws::IoTWireless
455
463
  PSC = Shapes::IntegerShape.new(name: 'PSC')
456
464
  PackageVersion = Shapes::StringShape.new(name: 'PackageVersion')
457
465
  ParticipatingGateways = Shapes::StructureShape.new(name: 'ParticipatingGateways')
466
+ ParticipatingGatewaysMulticast = Shapes::StructureShape.new(name: 'ParticipatingGatewaysMulticast')
458
467
  PartnerAccountArn = Shapes::StringShape.new(name: 'PartnerAccountArn')
459
468
  PartnerAccountId = Shapes::StringShape.new(name: 'PartnerAccountId')
460
469
  PartnerType = Shapes::StringShape.new(name: 'PartnerType')
@@ -610,6 +619,7 @@ module Aws::IoTWireless
610
619
  TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
611
620
  TraceContent = Shapes::StructureShape.new(name: 'TraceContent')
612
621
  TransmissionInterval = Shapes::IntegerShape.new(name: 'TransmissionInterval')
622
+ TransmissionIntervalMulticast = Shapes::IntegerShape.new(name: 'TransmissionIntervalMulticast')
613
623
  TransmitMode = Shapes::IntegerShape.new(name: 'TransmitMode')
614
624
  UARFCN = Shapes::IntegerShape.new(name: 'UARFCN')
615
625
  UARFCNDL = Shapes::IntegerShape.new(name: 'UARFCNDL')
@@ -868,6 +878,7 @@ module Aws::IoTWireless
868
878
  CreateFuotaTaskRequest.add_member(:redundancy_percent, Shapes::ShapeRef.new(shape: RedundancyPercent, location_name: "RedundancyPercent"))
869
879
  CreateFuotaTaskRequest.add_member(:fragment_size_bytes, Shapes::ShapeRef.new(shape: FragmentSizeBytes, location_name: "FragmentSizeBytes"))
870
880
  CreateFuotaTaskRequest.add_member(:fragment_interval_ms, Shapes::ShapeRef.new(shape: FragmentIntervalMS, location_name: "FragmentIntervalMS"))
881
+ CreateFuotaTaskRequest.add_member(:descriptor, Shapes::ShapeRef.new(shape: FileDescriptor, location_name: "Descriptor"))
871
882
  CreateFuotaTaskRequest.struct_class = Types::CreateFuotaTaskRequest
872
883
 
873
884
  CreateFuotaTaskResponse.add_member(:arn, Shapes::ShapeRef.new(shape: FuotaTaskArn, location_name: "Arn"))
@@ -1141,14 +1152,29 @@ module Aws::IoTWireless
1141
1152
  FuotaTask.add_member(:name, Shapes::ShapeRef.new(shape: FuotaTaskName, location_name: "Name"))
1142
1153
  FuotaTask.struct_class = Types::FuotaTask
1143
1154
 
1155
+ FuotaTaskEventLogOption.add_member(:event, Shapes::ShapeRef.new(shape: FuotaTaskEvent, required: true, location_name: "Event"))
1156
+ FuotaTaskEventLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
1157
+ FuotaTaskEventLogOption.struct_class = Types::FuotaTaskEventLogOption
1158
+
1159
+ FuotaTaskEventLogOptionList.member = Shapes::ShapeRef.new(shape: FuotaTaskEventLogOption)
1160
+
1144
1161
  FuotaTaskList.member = Shapes::ShapeRef.new(shape: FuotaTask)
1145
1162
 
1163
+ FuotaTaskLogOption.add_member(:type, Shapes::ShapeRef.new(shape: FuotaTaskType, required: true, location_name: "Type"))
1164
+ FuotaTaskLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
1165
+ FuotaTaskLogOption.add_member(:events, Shapes::ShapeRef.new(shape: FuotaTaskEventLogOptionList, location_name: "Events"))
1166
+ FuotaTaskLogOption.struct_class = Types::FuotaTaskLogOption
1167
+
1168
+ FuotaTaskLogOptionList.member = Shapes::ShapeRef.new(shape: FuotaTaskLogOption)
1169
+
1146
1170
  GatewayList.member = Shapes::ShapeRef.new(shape: GatewayListItem)
1147
1171
 
1148
1172
  GatewayListItem.add_member(:gateway_id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location_name: "GatewayId"))
1149
1173
  GatewayListItem.add_member(:downlink_frequency, Shapes::ShapeRef.new(shape: DownlinkFrequency, required: true, location_name: "DownlinkFrequency"))
1150
1174
  GatewayListItem.struct_class = Types::GatewayListItem
1151
1175
 
1176
+ GatewayListMulticast.member = Shapes::ShapeRef.new(shape: WirelessGatewayId)
1177
+
1152
1178
  GetDestinationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DestinationName, required: true, location: "uri", location_name: "Name"))
1153
1179
  GetDestinationRequest.struct_class = Types::GetDestinationRequest
1154
1180
 
@@ -1194,6 +1220,7 @@ module Aws::IoTWireless
1194
1220
  GetFuotaTaskResponse.add_member(:redundancy_percent, Shapes::ShapeRef.new(shape: RedundancyPercent, location_name: "RedundancyPercent"))
1195
1221
  GetFuotaTaskResponse.add_member(:fragment_size_bytes, Shapes::ShapeRef.new(shape: FragmentSizeBytes, location_name: "FragmentSizeBytes"))
1196
1222
  GetFuotaTaskResponse.add_member(:fragment_interval_ms, Shapes::ShapeRef.new(shape: FragmentIntervalMS, location_name: "FragmentIntervalMS"))
1223
+ GetFuotaTaskResponse.add_member(:descriptor, Shapes::ShapeRef.new(shape: FileDescriptor, location_name: "Descriptor"))
1197
1224
  GetFuotaTaskResponse.struct_class = Types::GetFuotaTaskResponse
1198
1225
 
1199
1226
  GetLogLevelsByResourceTypesRequest.struct_class = Types::GetLogLevelsByResourceTypesRequest
@@ -1201,6 +1228,7 @@ module Aws::IoTWireless
1201
1228
  GetLogLevelsByResourceTypesResponse.add_member(:default_log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "DefaultLogLevel"))
1202
1229
  GetLogLevelsByResourceTypesResponse.add_member(:wireless_gateway_log_options, Shapes::ShapeRef.new(shape: WirelessGatewayLogOptionList, location_name: "WirelessGatewayLogOptions"))
1203
1230
  GetLogLevelsByResourceTypesResponse.add_member(:wireless_device_log_options, Shapes::ShapeRef.new(shape: WirelessDeviceLogOptionList, location_name: "WirelessDeviceLogOptions"))
1231
+ GetLogLevelsByResourceTypesResponse.add_member(:fuota_task_log_options, Shapes::ShapeRef.new(shape: FuotaTaskLogOptionList, location_name: "FuotaTaskLogOptions"))
1204
1232
  GetLogLevelsByResourceTypesResponse.struct_class = Types::GetLogLevelsByResourceTypesResponse
1205
1233
 
1206
1234
  GetMetricConfigurationRequest.struct_class = Types::GetMetricConfigurationRequest
@@ -1747,12 +1775,14 @@ module Aws::IoTWireless
1747
1775
 
1748
1776
  LoRaWANMulticast.add_member(:rf_region, Shapes::ShapeRef.new(shape: SupportedRfRegion, location_name: "RfRegion"))
1749
1777
  LoRaWANMulticast.add_member(:dl_class, Shapes::ShapeRef.new(shape: DlClass, location_name: "DlClass"))
1778
+ LoRaWANMulticast.add_member(:participating_gateways, Shapes::ShapeRef.new(shape: ParticipatingGatewaysMulticast, location_name: "ParticipatingGateways"))
1750
1779
  LoRaWANMulticast.struct_class = Types::LoRaWANMulticast
1751
1780
 
1752
1781
  LoRaWANMulticastGet.add_member(:rf_region, Shapes::ShapeRef.new(shape: SupportedRfRegion, location_name: "RfRegion"))
1753
1782
  LoRaWANMulticastGet.add_member(:dl_class, Shapes::ShapeRef.new(shape: DlClass, location_name: "DlClass"))
1754
1783
  LoRaWANMulticastGet.add_member(:number_of_devices_requested, Shapes::ShapeRef.new(shape: NumberOfDevicesRequested, location_name: "NumberOfDevicesRequested"))
1755
1784
  LoRaWANMulticastGet.add_member(:number_of_devices_in_group, Shapes::ShapeRef.new(shape: NumberOfDevicesInGroup, location_name: "NumberOfDevicesInGroup"))
1785
+ LoRaWANMulticastGet.add_member(:participating_gateways, Shapes::ShapeRef.new(shape: ParticipatingGatewaysMulticast, location_name: "ParticipatingGateways"))
1756
1786
  LoRaWANMulticastGet.struct_class = Types::LoRaWANMulticastGet
1757
1787
 
1758
1788
  LoRaWANMulticastMetadata.add_member(:f_port, Shapes::ShapeRef.new(shape: FPort, location_name: "FPort"))
@@ -1893,6 +1923,10 @@ module Aws::IoTWireless
1893
1923
  ParticipatingGateways.add_member(:transmission_interval, Shapes::ShapeRef.new(shape: TransmissionInterval, required: true, location_name: "TransmissionInterval"))
1894
1924
  ParticipatingGateways.struct_class = Types::ParticipatingGateways
1895
1925
 
1926
+ ParticipatingGatewaysMulticast.add_member(:gateway_list, Shapes::ShapeRef.new(shape: GatewayListMulticast, location_name: "GatewayList"))
1927
+ ParticipatingGatewaysMulticast.add_member(:transmission_interval, Shapes::ShapeRef.new(shape: TransmissionIntervalMulticast, location_name: "TransmissionInterval"))
1928
+ ParticipatingGatewaysMulticast.struct_class = Types::ParticipatingGatewaysMulticast
1929
+
1896
1930
  PositionConfigurationItem.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: PositionResourceIdentifier, location_name: "ResourceIdentifier"))
1897
1931
  PositionConfigurationItem.add_member(:resource_type, Shapes::ShapeRef.new(shape: PositionResourceType, location_name: "ResourceType"))
1898
1932
  PositionConfigurationItem.add_member(:solvers, Shapes::ShapeRef.new(shape: PositionSolverDetails, location_name: "Solvers"))
@@ -2248,11 +2282,13 @@ module Aws::IoTWireless
2248
2282
  UpdateFuotaTaskRequest.add_member(:redundancy_percent, Shapes::ShapeRef.new(shape: RedundancyPercent, location_name: "RedundancyPercent"))
2249
2283
  UpdateFuotaTaskRequest.add_member(:fragment_size_bytes, Shapes::ShapeRef.new(shape: FragmentSizeBytes, location_name: "FragmentSizeBytes"))
2250
2284
  UpdateFuotaTaskRequest.add_member(:fragment_interval_ms, Shapes::ShapeRef.new(shape: FragmentIntervalMS, location_name: "FragmentIntervalMS"))
2285
+ UpdateFuotaTaskRequest.add_member(:descriptor, Shapes::ShapeRef.new(shape: FileDescriptor, location_name: "Descriptor"))
2251
2286
  UpdateFuotaTaskRequest.struct_class = Types::UpdateFuotaTaskRequest
2252
2287
 
2253
2288
  UpdateFuotaTaskResponse.struct_class = Types::UpdateFuotaTaskResponse
2254
2289
 
2255
2290
  UpdateLogLevelsByResourceTypesRequest.add_member(:default_log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "DefaultLogLevel"))
2291
+ UpdateLogLevelsByResourceTypesRequest.add_member(:fuota_task_log_options, Shapes::ShapeRef.new(shape: FuotaTaskLogOptionList, location_name: "FuotaTaskLogOptions"))
2256
2292
  UpdateLogLevelsByResourceTypesRequest.add_member(:wireless_device_log_options, Shapes::ShapeRef.new(shape: WirelessDeviceLogOptionList, location_name: "WirelessDeviceLogOptions"))
2257
2293
  UpdateLogLevelsByResourceTypesRequest.add_member(:wireless_gateway_log_options, Shapes::ShapeRef.new(shape: WirelessGatewayLogOptionList, location_name: "WirelessGatewayLogOptions"))
2258
2294
  UpdateLogLevelsByResourceTypesRequest.struct_class = Types::UpdateLogLevelsByResourceTypesRequest
@@ -52,15 +52,18 @@ module Aws::IoTWireless
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end