@aws-sdk/client-iot-wireless 3.137.0 → 3.145.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/UpdateMulticastGroupCommand.js +3 -3
- package/dist-cjs/models/models_0.js +12 -12
- package/dist-cjs/models/models_1.js +9 -1
- package/dist-cjs/protocols/Aws_restJson1.js +1202 -2269
- package/dist-es/commands/UpdateMulticastGroupCommand.js +1 -1
- package/dist-es/models/models_0.js +2 -2
- package/dist-es/models/models_1.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1560 -2249
- package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +63 -28
- package/dist-types/models/models_1.d.ts +33 -1
- package/dist-types/ts3.4/commands/UpdateMulticastGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +30 -16
- package/dist-types/ts3.4/models/models_1.d.ts +19 -1
- package/package.json +11 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
-
import { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/
|
|
4
|
+
import { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateMulticastGroupCommandInput extends UpdateMulticastGroupRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateMulticastGroupCommandOutput extends UpdateMulticastGroupResponse, __MetadataBearer {
|
|
@@ -708,6 +708,14 @@ export interface LoRaWANServiceProfile {
|
|
|
708
708
|
* <p>The AddGWMetaData value.</p>
|
|
709
709
|
*/
|
|
710
710
|
AddGwMetadata?: boolean;
|
|
711
|
+
/**
|
|
712
|
+
* <p>The DrMin value.</p>
|
|
713
|
+
*/
|
|
714
|
+
DrMin?: number;
|
|
715
|
+
/**
|
|
716
|
+
* <p>The DrMax value.</p>
|
|
717
|
+
*/
|
|
718
|
+
DrMax?: number;
|
|
711
719
|
}
|
|
712
720
|
export interface CreateServiceProfileRequest {
|
|
713
721
|
/**
|
|
@@ -1392,6 +1400,23 @@ export interface JoinEventConfiguration {
|
|
|
1392
1400
|
*/
|
|
1393
1401
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
1394
1402
|
}
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>Message delivery status event configuration object for enabling and disabling relevant
|
|
1405
|
+
* topics.</p>
|
|
1406
|
+
*/
|
|
1407
|
+
export interface MessageDeliveryStatusEventConfiguration {
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>
|
|
1410
|
+
* <code>SidewalkEventNotificationConfigurations</code> object, which is the event configuration
|
|
1411
|
+
* object for Sidewalk-related event topics.</p>
|
|
1412
|
+
*/
|
|
1413
|
+
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
1414
|
+
/**
|
|
1415
|
+
* <p>Enum to denote whether the wireless device id device registration state event topic is enabled
|
|
1416
|
+
* or disabled.</p>
|
|
1417
|
+
*/
|
|
1418
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
1419
|
+
}
|
|
1395
1420
|
/**
|
|
1396
1421
|
* <p>Proximity event configuration object for enabling and disabling relevant topics.</p>
|
|
1397
1422
|
*/
|
|
@@ -1425,6 +1450,10 @@ export interface EventNotificationItemConfigurations {
|
|
|
1425
1450
|
* <p>Connection status event configuration for an event configuration item.</p>
|
|
1426
1451
|
*/
|
|
1427
1452
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
1453
|
+
/**
|
|
1454
|
+
* <p>Message delivery status event configuration for an event configuration item.</p>
|
|
1455
|
+
*/
|
|
1456
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
1428
1457
|
}
|
|
1429
1458
|
export declare enum IdentifierType {
|
|
1430
1459
|
DevEui = "DevEui",
|
|
@@ -1576,6 +1605,16 @@ export interface JoinResourceTypeEventConfiguration {
|
|
|
1576
1605
|
*/
|
|
1577
1606
|
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
1578
1607
|
}
|
|
1608
|
+
/**
|
|
1609
|
+
* <p>Message delivery status resource type event configuration object for enabling or disabling
|
|
1610
|
+
* relevant topic.</p>
|
|
1611
|
+
*/
|
|
1612
|
+
export interface MessageDeliveryStatusResourceTypeEventConfiguration {
|
|
1613
|
+
/**
|
|
1614
|
+
* <p>Sidewalk resource type event configuration object for enabling or disabling topic.</p>
|
|
1615
|
+
*/
|
|
1616
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
1617
|
+
}
|
|
1579
1618
|
/**
|
|
1580
1619
|
* <p>Proximity resource type event configuration object for enabling or disabling topic.</p>
|
|
1581
1620
|
*/
|
|
@@ -1602,6 +1641,10 @@ export interface GetEventConfigurationByResourceTypesResponse {
|
|
|
1602
1641
|
* <p>Resource type event configuration for the connection status event.</p>
|
|
1603
1642
|
*/
|
|
1604
1643
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>Resource type event configuration object for the message delivery status event.</p>
|
|
1646
|
+
*/
|
|
1647
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
1605
1648
|
}
|
|
1606
1649
|
export interface GetFuotaTaskRequest {
|
|
1607
1650
|
/**
|
|
@@ -2056,6 +2099,10 @@ export interface GetResourceEventConfigurationResponse {
|
|
|
2056
2099
|
* <p>Event configuration for the connection status event.</p>
|
|
2057
2100
|
*/
|
|
2058
2101
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
2102
|
+
/**
|
|
2103
|
+
* <p>Event configuration for the message delivery status event.</p>
|
|
2104
|
+
*/
|
|
2105
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
2059
2106
|
}
|
|
2060
2107
|
export interface GetResourceLogLevelRequest {
|
|
2061
2108
|
/**
|
|
@@ -3228,6 +3275,10 @@ export interface SidewalkSendDataToDevice {
|
|
|
3228
3275
|
* <p>Sidewalk device message type. Default value is <code>CUSTOM_COMMAND_ID_NOTIFY</code>.</p>
|
|
3229
3276
|
*/
|
|
3230
3277
|
MessageType?: MessageType | string;
|
|
3278
|
+
/**
|
|
3279
|
+
* <p>The duration of time in seconds for which you want to retry sending the ACK.</p>
|
|
3280
|
+
*/
|
|
3281
|
+
AckModeRetryDurationSecs?: number;
|
|
3231
3282
|
}
|
|
3232
3283
|
/**
|
|
3233
3284
|
* <p>WirelessMetadata object.</p>
|
|
@@ -3425,6 +3476,10 @@ export interface UpdateEventConfigurationByResourceTypesRequest {
|
|
|
3425
3476
|
* <p>Connection status resource type event configuration object for enabling and disabling wireless gateway topic.</p>
|
|
3426
3477
|
*/
|
|
3427
3478
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
3479
|
+
/**
|
|
3480
|
+
* <p>Message delivery status resource type event configuration object for enabling and disabling wireless device topic.</p>
|
|
3481
|
+
*/
|
|
3482
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
3428
3483
|
}
|
|
3429
3484
|
export interface UpdateEventConfigurationByResourceTypesResponse {
|
|
3430
3485
|
}
|
|
@@ -3473,26 +3528,6 @@ export interface UpdateLogLevelsByResourceTypesRequest {
|
|
|
3473
3528
|
}
|
|
3474
3529
|
export interface UpdateLogLevelsByResourceTypesResponse {
|
|
3475
3530
|
}
|
|
3476
|
-
export interface UpdateMulticastGroupRequest {
|
|
3477
|
-
/**
|
|
3478
|
-
* <p>The ID of the multicast group.</p>
|
|
3479
|
-
*/
|
|
3480
|
-
Id: string | undefined;
|
|
3481
|
-
/**
|
|
3482
|
-
* <p>The name of the multicast group.</p>
|
|
3483
|
-
*/
|
|
3484
|
-
Name?: string;
|
|
3485
|
-
/**
|
|
3486
|
-
* <p>The description of the new resource.</p>
|
|
3487
|
-
*/
|
|
3488
|
-
Description?: string;
|
|
3489
|
-
/**
|
|
3490
|
-
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
3491
|
-
*/
|
|
3492
|
-
LoRaWAN?: LoRaWANMulticast;
|
|
3493
|
-
}
|
|
3494
|
-
export interface UpdateMulticastGroupResponse {
|
|
3495
|
-
}
|
|
3496
3531
|
/**
|
|
3497
3532
|
* @internal
|
|
3498
3533
|
*/
|
|
@@ -3925,6 +3960,10 @@ export declare const LoRaWANJoinEventNotificationConfigurationsFilterSensitiveLo
|
|
|
3925
3960
|
* @internal
|
|
3926
3961
|
*/
|
|
3927
3962
|
export declare const JoinEventConfigurationFilterSensitiveLog: (obj: JoinEventConfiguration) => any;
|
|
3963
|
+
/**
|
|
3964
|
+
* @internal
|
|
3965
|
+
*/
|
|
3966
|
+
export declare const MessageDeliveryStatusEventConfigurationFilterSensitiveLog: (obj: MessageDeliveryStatusEventConfiguration) => any;
|
|
3928
3967
|
/**
|
|
3929
3968
|
* @internal
|
|
3930
3969
|
*/
|
|
@@ -3969,6 +4008,10 @@ export declare const LoRaWANJoinResourceTypeEventConfigurationFilterSensitiveLog
|
|
|
3969
4008
|
* @internal
|
|
3970
4009
|
*/
|
|
3971
4010
|
export declare const JoinResourceTypeEventConfigurationFilterSensitiveLog: (obj: JoinResourceTypeEventConfiguration) => any;
|
|
4011
|
+
/**
|
|
4012
|
+
* @internal
|
|
4013
|
+
*/
|
|
4014
|
+
export declare const MessageDeliveryStatusResourceTypeEventConfigurationFilterSensitiveLog: (obj: MessageDeliveryStatusResourceTypeEventConfiguration) => any;
|
|
3972
4015
|
/**
|
|
3973
4016
|
* @internal
|
|
3974
4017
|
*/
|
|
@@ -4529,11 +4572,3 @@ export declare const UpdateLogLevelsByResourceTypesRequestFilterSensitiveLog: (o
|
|
|
4529
4572
|
* @internal
|
|
4530
4573
|
*/
|
|
4531
4574
|
export declare const UpdateLogLevelsByResourceTypesResponseFilterSensitiveLog: (obj: UpdateLogLevelsByResourceTypesResponse) => any;
|
|
4532
|
-
/**
|
|
4533
|
-
* @internal
|
|
4534
|
-
*/
|
|
4535
|
-
export declare const UpdateMulticastGroupRequestFilterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
|
|
4536
|
-
/**
|
|
4537
|
-
* @internal
|
|
4538
|
-
*/
|
|
4539
|
-
export declare const UpdateMulticastGroupResponseFilterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
@@ -1,4 +1,24 @@
|
|
|
1
|
-
import { ConnectionStatusEventConfiguration, DeviceRegistrationStateEventConfiguration, EventNotificationPartnerType, IdentifierType, JoinEventConfiguration, PartnerType, Positioning, PositionResourceType, ProximityEventConfiguration, TraceContent } from "./models_0";
|
|
1
|
+
import { ConnectionStatusEventConfiguration, DeviceRegistrationStateEventConfiguration, EventNotificationPartnerType, IdentifierType, JoinEventConfiguration, LoRaWANMulticast, MessageDeliveryStatusEventConfiguration, PartnerType, Positioning, PositionResourceType, ProximityEventConfiguration, TraceContent } from "./models_0";
|
|
2
|
+
export interface UpdateMulticastGroupRequest {
|
|
3
|
+
/**
|
|
4
|
+
* <p>The ID of the multicast group.</p>
|
|
5
|
+
*/
|
|
6
|
+
Id: string | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the multicast group.</p>
|
|
9
|
+
*/
|
|
10
|
+
Name?: string;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The description of the new resource.</p>
|
|
13
|
+
*/
|
|
14
|
+
Description?: string;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
17
|
+
*/
|
|
18
|
+
LoRaWAN?: LoRaWANMulticast;
|
|
19
|
+
}
|
|
20
|
+
export interface UpdateMulticastGroupResponse {
|
|
21
|
+
}
|
|
2
22
|
export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
3
23
|
/**
|
|
4
24
|
* <p>Name of the network analyzer configuration.</p>
|
|
@@ -106,6 +126,10 @@ export interface UpdateResourceEventConfigurationRequest {
|
|
|
106
126
|
* <p>Event configuration for the connection status event.</p>
|
|
107
127
|
*/
|
|
108
128
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
129
|
+
/**
|
|
130
|
+
* <p>Event configuration for the message delivery status event.</p>
|
|
131
|
+
*/
|
|
132
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
109
133
|
}
|
|
110
134
|
export interface UpdateResourceEventConfigurationResponse {
|
|
111
135
|
}
|
|
@@ -209,6 +233,14 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
209
233
|
}
|
|
210
234
|
export interface UpdateWirelessGatewayResponse {
|
|
211
235
|
}
|
|
236
|
+
/**
|
|
237
|
+
* @internal
|
|
238
|
+
*/
|
|
239
|
+
export declare const UpdateMulticastGroupRequestFilterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
export declare const UpdateMulticastGroupResponseFilterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
212
244
|
/**
|
|
213
245
|
* @internal
|
|
214
246
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
-
import { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/
|
|
4
|
+
import { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateMulticastGroupCommandInput extends UpdateMulticastGroupRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateMulticastGroupCommandOutput extends UpdateMulticastGroupResponse, __MetadataBearer {
|
|
@@ -416,6 +416,10 @@ export interface CreateNetworkAnalyzerConfigurationResponse {
|
|
|
416
416
|
export interface LoRaWANServiceProfile {
|
|
417
417
|
|
|
418
418
|
AddGwMetadata?: boolean;
|
|
419
|
+
|
|
420
|
+
DrMin?: number;
|
|
421
|
+
|
|
422
|
+
DrMax?: number;
|
|
419
423
|
}
|
|
420
424
|
export interface CreateServiceProfileRequest {
|
|
421
425
|
|
|
@@ -825,6 +829,13 @@ export interface JoinEventConfiguration {
|
|
|
825
829
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
826
830
|
}
|
|
827
831
|
|
|
832
|
+
export interface MessageDeliveryStatusEventConfiguration {
|
|
833
|
+
|
|
834
|
+
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
835
|
+
|
|
836
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
837
|
+
}
|
|
838
|
+
|
|
828
839
|
export interface ProximityEventConfiguration {
|
|
829
840
|
|
|
830
841
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
@@ -841,6 +852,8 @@ export interface EventNotificationItemConfigurations {
|
|
|
841
852
|
Join?: JoinEventConfiguration;
|
|
842
853
|
|
|
843
854
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
855
|
+
|
|
856
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
844
857
|
}
|
|
845
858
|
export declare enum IdentifierType {
|
|
846
859
|
DevEui = "DevEui",
|
|
@@ -942,6 +955,11 @@ export interface JoinResourceTypeEventConfiguration {
|
|
|
942
955
|
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
943
956
|
}
|
|
944
957
|
|
|
958
|
+
export interface MessageDeliveryStatusResourceTypeEventConfiguration {
|
|
959
|
+
|
|
960
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
961
|
+
}
|
|
962
|
+
|
|
945
963
|
export interface ProximityResourceTypeEventConfiguration {
|
|
946
964
|
|
|
947
965
|
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
@@ -955,6 +973,8 @@ export interface GetEventConfigurationByResourceTypesResponse {
|
|
|
955
973
|
Join?: JoinResourceTypeEventConfiguration;
|
|
956
974
|
|
|
957
975
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
976
|
+
|
|
977
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
958
978
|
}
|
|
959
979
|
export interface GetFuotaTaskRequest {
|
|
960
980
|
|
|
@@ -1215,6 +1235,8 @@ export interface GetResourceEventConfigurationResponse {
|
|
|
1215
1235
|
Join?: JoinEventConfiguration;
|
|
1216
1236
|
|
|
1217
1237
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
1238
|
+
|
|
1239
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
1218
1240
|
}
|
|
1219
1241
|
export interface GetResourceLogLevelRequest {
|
|
1220
1242
|
|
|
@@ -1879,6 +1901,8 @@ export interface SidewalkSendDataToDevice {
|
|
|
1879
1901
|
Seq?: number;
|
|
1880
1902
|
|
|
1881
1903
|
MessageType?: MessageType | string;
|
|
1904
|
+
|
|
1905
|
+
AckModeRetryDurationSecs?: number;
|
|
1882
1906
|
}
|
|
1883
1907
|
|
|
1884
1908
|
export interface WirelessMetadata {
|
|
@@ -1999,6 +2023,8 @@ export interface UpdateEventConfigurationByResourceTypesRequest {
|
|
|
1999
2023
|
Join?: JoinResourceTypeEventConfiguration;
|
|
2000
2024
|
|
|
2001
2025
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
2026
|
+
|
|
2027
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
2002
2028
|
}
|
|
2003
2029
|
export interface UpdateEventConfigurationByResourceTypesResponse {
|
|
2004
2030
|
}
|
|
@@ -2028,18 +2054,6 @@ export interface UpdateLogLevelsByResourceTypesRequest {
|
|
|
2028
2054
|
}
|
|
2029
2055
|
export interface UpdateLogLevelsByResourceTypesResponse {
|
|
2030
2056
|
}
|
|
2031
|
-
export interface UpdateMulticastGroupRequest {
|
|
2032
|
-
|
|
2033
|
-
Id: string | undefined;
|
|
2034
|
-
|
|
2035
|
-
Name?: string;
|
|
2036
|
-
|
|
2037
|
-
Description?: string;
|
|
2038
|
-
|
|
2039
|
-
LoRaWAN?: LoRaWANMulticast;
|
|
2040
|
-
}
|
|
2041
|
-
export interface UpdateMulticastGroupResponse {
|
|
2042
|
-
}
|
|
2043
2057
|
|
|
2044
2058
|
export declare const SessionKeysAbpV1_0_xFilterSensitiveLog: (obj: SessionKeysAbpV1_0_x) => any;
|
|
2045
2059
|
|
|
@@ -2257,6 +2271,8 @@ export declare const LoRaWANJoinEventNotificationConfigurationsFilterSensitiveLo
|
|
|
2257
2271
|
|
|
2258
2272
|
export declare const JoinEventConfigurationFilterSensitiveLog: (obj: JoinEventConfiguration) => any;
|
|
2259
2273
|
|
|
2274
|
+
export declare const MessageDeliveryStatusEventConfigurationFilterSensitiveLog: (obj: MessageDeliveryStatusEventConfiguration) => any;
|
|
2275
|
+
|
|
2260
2276
|
export declare const ProximityEventConfigurationFilterSensitiveLog: (obj: ProximityEventConfiguration) => any;
|
|
2261
2277
|
|
|
2262
2278
|
export declare const EventNotificationItemConfigurationsFilterSensitiveLog: (obj: EventNotificationItemConfigurations) => any;
|
|
@@ -2279,6 +2295,8 @@ export declare const LoRaWANJoinResourceTypeEventConfigurationFilterSensitiveLog
|
|
|
2279
2295
|
|
|
2280
2296
|
export declare const JoinResourceTypeEventConfigurationFilterSensitiveLog: (obj: JoinResourceTypeEventConfiguration) => any;
|
|
2281
2297
|
|
|
2298
|
+
export declare const MessageDeliveryStatusResourceTypeEventConfigurationFilterSensitiveLog: (obj: MessageDeliveryStatusResourceTypeEventConfiguration) => any;
|
|
2299
|
+
|
|
2282
2300
|
export declare const ProximityResourceTypeEventConfigurationFilterSensitiveLog: (obj: ProximityResourceTypeEventConfiguration) => any;
|
|
2283
2301
|
|
|
2284
2302
|
export declare const GetEventConfigurationByResourceTypesResponseFilterSensitiveLog: (obj: GetEventConfigurationByResourceTypesResponse) => any;
|
|
@@ -2558,7 +2576,3 @@ export declare const UpdateFuotaTaskResponseFilterSensitiveLog: (obj: UpdateFuot
|
|
|
2558
2576
|
export declare const UpdateLogLevelsByResourceTypesRequestFilterSensitiveLog: (obj: UpdateLogLevelsByResourceTypesRequest) => any;
|
|
2559
2577
|
|
|
2560
2578
|
export declare const UpdateLogLevelsByResourceTypesResponseFilterSensitiveLog: (obj: UpdateLogLevelsByResourceTypesResponse) => any;
|
|
2561
|
-
|
|
2562
|
-
export declare const UpdateMulticastGroupRequestFilterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
|
|
2563
|
-
|
|
2564
|
-
export declare const UpdateMulticastGroupResponseFilterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
import { ConnectionStatusEventConfiguration, DeviceRegistrationStateEventConfiguration, EventNotificationPartnerType, IdentifierType, JoinEventConfiguration, PartnerType, Positioning, PositionResourceType, ProximityEventConfiguration, TraceContent } from "./models_0";
|
|
1
|
+
import { ConnectionStatusEventConfiguration, DeviceRegistrationStateEventConfiguration, EventNotificationPartnerType, IdentifierType, JoinEventConfiguration, LoRaWANMulticast, MessageDeliveryStatusEventConfiguration, PartnerType, Positioning, PositionResourceType, ProximityEventConfiguration, TraceContent } from "./models_0";
|
|
2
|
+
export interface UpdateMulticastGroupRequest {
|
|
3
|
+
|
|
4
|
+
Id: string | undefined;
|
|
5
|
+
|
|
6
|
+
Name?: string;
|
|
7
|
+
|
|
8
|
+
Description?: string;
|
|
9
|
+
|
|
10
|
+
LoRaWAN?: LoRaWANMulticast;
|
|
11
|
+
}
|
|
12
|
+
export interface UpdateMulticastGroupResponse {
|
|
13
|
+
}
|
|
2
14
|
export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
3
15
|
|
|
4
16
|
ConfigurationName: string | undefined;
|
|
@@ -57,6 +69,8 @@ export interface UpdateResourceEventConfigurationRequest {
|
|
|
57
69
|
Join?: JoinEventConfiguration;
|
|
58
70
|
|
|
59
71
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
72
|
+
|
|
73
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
60
74
|
}
|
|
61
75
|
export interface UpdateResourceEventConfigurationResponse {
|
|
62
76
|
}
|
|
@@ -117,6 +131,10 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
117
131
|
export interface UpdateWirelessGatewayResponse {
|
|
118
132
|
}
|
|
119
133
|
|
|
134
|
+
export declare const UpdateMulticastGroupRequestFilterSensitiveLog: (obj: UpdateMulticastGroupRequest) => any;
|
|
135
|
+
|
|
136
|
+
export declare const UpdateMulticastGroupResponseFilterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
137
|
+
|
|
120
138
|
export declare const UpdateNetworkAnalyzerConfigurationRequestFilterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
|
|
121
139
|
|
|
122
140
|
export declare const UpdateNetworkAnalyzerConfigurationResponseFilterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-wireless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.145.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.145.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.145.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
@@ -63,6 +63,11 @@
|
|
|
63
63
|
"typedoc": "0.19.2",
|
|
64
64
|
"typescript": "~4.6.2"
|
|
65
65
|
},
|
|
66
|
+
"overrides": {
|
|
67
|
+
"typedoc": {
|
|
68
|
+
"typescript": "~4.6.2"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
66
71
|
"engines": {
|
|
67
72
|
"node": ">=12.0.0"
|
|
68
73
|
},
|