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
data/sig/types.rbs
CHANGED
@@ -226,6 +226,7 @@ module Aws::IoTWireless
|
|
226
226
|
attr_accessor redundancy_percent: ::Integer
|
227
227
|
attr_accessor fragment_size_bytes: ::Integer
|
228
228
|
attr_accessor fragment_interval_ms: ::Integer
|
229
|
+
attr_accessor descriptor: ::String
|
229
230
|
SENSITIVE: []
|
230
231
|
end
|
231
232
|
|
@@ -563,7 +564,7 @@ module Aws::IoTWireless
|
|
563
564
|
|
564
565
|
class EventConfigurationItem
|
565
566
|
attr_accessor identifier: ::String
|
566
|
-
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
567
|
+
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "FuotaTaskId" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
567
568
|
attr_accessor partner_type: ("Sidewalk")
|
568
569
|
attr_accessor events: Types::EventNotificationItemConfigurations
|
569
570
|
SENSITIVE: []
|
@@ -594,6 +595,19 @@ module Aws::IoTWireless
|
|
594
595
|
SENSITIVE: []
|
595
596
|
end
|
596
597
|
|
598
|
+
class FuotaTaskEventLogOption
|
599
|
+
attr_accessor event: ("Fuota")
|
600
|
+
attr_accessor log_level: ("INFO" | "ERROR" | "DISABLED")
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class FuotaTaskLogOption
|
605
|
+
attr_accessor type: ("LoRaWAN")
|
606
|
+
attr_accessor log_level: ("INFO" | "ERROR" | "DISABLED")
|
607
|
+
attr_accessor events: ::Array[Types::FuotaTaskEventLogOption]
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
597
611
|
class GatewayListItem
|
598
612
|
attr_accessor gateway_id: ::String
|
599
613
|
attr_accessor downlink_frequency: ::Integer
|
@@ -659,6 +673,7 @@ module Aws::IoTWireless
|
|
659
673
|
attr_accessor redundancy_percent: ::Integer
|
660
674
|
attr_accessor fragment_size_bytes: ::Integer
|
661
675
|
attr_accessor fragment_interval_ms: ::Integer
|
676
|
+
attr_accessor descriptor: ::String
|
662
677
|
SENSITIVE: []
|
663
678
|
end
|
664
679
|
|
@@ -669,6 +684,7 @@ module Aws::IoTWireless
|
|
669
684
|
attr_accessor default_log_level: ("INFO" | "ERROR" | "DISABLED")
|
670
685
|
attr_accessor wireless_gateway_log_options: ::Array[Types::WirelessGatewayLogOption]
|
671
686
|
attr_accessor wireless_device_log_options: ::Array[Types::WirelessDeviceLogOption]
|
687
|
+
attr_accessor fuota_task_log_options: ::Array[Types::FuotaTaskLogOption]
|
672
688
|
SENSITIVE: []
|
673
689
|
end
|
674
690
|
|
@@ -788,7 +804,7 @@ module Aws::IoTWireless
|
|
788
804
|
|
789
805
|
class GetResourceEventConfigurationRequest
|
790
806
|
attr_accessor identifier: ::String
|
791
|
-
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
807
|
+
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "FuotaTaskId" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
792
808
|
attr_accessor partner_type: ("Sidewalk")
|
793
809
|
SENSITIVE: []
|
794
810
|
end
|
@@ -1097,7 +1113,7 @@ module Aws::IoTWireless
|
|
1097
1113
|
end
|
1098
1114
|
|
1099
1115
|
class ListEventConfigurationsRequest
|
1100
|
-
attr_accessor resource_type: ("SidewalkAccount" | "WirelessDevice" | "WirelessGateway")
|
1116
|
+
attr_accessor resource_type: ("FuotaTask" | "SidewalkAccount" | "WirelessDevice" | "WirelessGateway")
|
1101
1117
|
attr_accessor max_results: ::Integer
|
1102
1118
|
attr_accessor next_token: ::String
|
1103
1119
|
SENSITIVE: []
|
@@ -1412,6 +1428,7 @@ module Aws::IoTWireless
|
|
1412
1428
|
class LoRaWANMulticast
|
1413
1429
|
attr_accessor rf_region: ("EU868" | "US915" | "AU915" | "AS923-1" | "AS923-2" | "AS923-3" | "AS923-4" | "EU433" | "CN470" | "CN779" | "RU864" | "KR920" | "IN865")
|
1414
1430
|
attr_accessor dl_class: ("ClassB" | "ClassC")
|
1431
|
+
attr_accessor participating_gateways: Types::ParticipatingGatewaysMulticast
|
1415
1432
|
SENSITIVE: []
|
1416
1433
|
end
|
1417
1434
|
|
@@ -1420,6 +1437,7 @@ module Aws::IoTWireless
|
|
1420
1437
|
attr_accessor dl_class: ("ClassB" | "ClassC")
|
1421
1438
|
attr_accessor number_of_devices_requested: ::Integer
|
1422
1439
|
attr_accessor number_of_devices_in_group: ::Integer
|
1440
|
+
attr_accessor participating_gateways: Types::ParticipatingGatewaysMulticast
|
1423
1441
|
SENSITIVE: []
|
1424
1442
|
end
|
1425
1443
|
|
@@ -1585,6 +1603,12 @@ module Aws::IoTWireless
|
|
1585
1603
|
SENSITIVE: []
|
1586
1604
|
end
|
1587
1605
|
|
1606
|
+
class ParticipatingGatewaysMulticast
|
1607
|
+
attr_accessor gateway_list: ::Array[::String]
|
1608
|
+
attr_accessor transmission_interval: ::Integer
|
1609
|
+
SENSITIVE: []
|
1610
|
+
end
|
1611
|
+
|
1588
1612
|
class PositionConfigurationItem
|
1589
1613
|
attr_accessor resource_identifier: ::String
|
1590
1614
|
attr_accessor resource_type: ("WirelessDevice" | "WirelessGateway")
|
@@ -2053,6 +2077,7 @@ module Aws::IoTWireless
|
|
2053
2077
|
attr_accessor redundancy_percent: ::Integer
|
2054
2078
|
attr_accessor fragment_size_bytes: ::Integer
|
2055
2079
|
attr_accessor fragment_interval_ms: ::Integer
|
2080
|
+
attr_accessor descriptor: ::String
|
2056
2081
|
SENSITIVE: []
|
2057
2082
|
end
|
2058
2083
|
|
@@ -2061,6 +2086,7 @@ module Aws::IoTWireless
|
|
2061
2086
|
|
2062
2087
|
class UpdateLogLevelsByResourceTypesRequest
|
2063
2088
|
attr_accessor default_log_level: ("INFO" | "ERROR" | "DISABLED")
|
2089
|
+
attr_accessor fuota_task_log_options: ::Array[Types::FuotaTaskLogOption]
|
2064
2090
|
attr_accessor wireless_device_log_options: ::Array[Types::WirelessDeviceLogOption]
|
2065
2091
|
attr_accessor wireless_gateway_log_options: ::Array[Types::WirelessGatewayLogOption]
|
2066
2092
|
SENSITIVE: []
|
@@ -2126,7 +2152,7 @@ module Aws::IoTWireless
|
|
2126
2152
|
|
2127
2153
|
class UpdateResourceEventConfigurationRequest
|
2128
2154
|
attr_accessor identifier: ::String
|
2129
|
-
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
2155
|
+
attr_accessor identifier_type: ("PartnerAccountId" | "DevEui" | "FuotaTaskId" | "GatewayEui" | "WirelessDeviceId" | "WirelessGatewayId")
|
2130
2156
|
attr_accessor partner_type: ("Sidewalk")
|
2131
2157
|
attr_accessor device_registration_state: Types::DeviceRegistrationStateEventConfiguration
|
2132
2158
|
attr_accessor proximity: Types::ProximityEventConfiguration
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotwireless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.61.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: 2024-
|
11
|
+
date: 2024-11-14 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|