@aws-sdk/client-iot-wireless 3.691.0 → 3.693.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/dist-cjs/index.js +24 -7
- package/dist-es/commands/ListPartnerAccountsCommand.js +1 -1
- package/dist-es/models/models_0.js +8 -6
- package/dist-es/models/models_1.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/CreateMulticastGroupCommand.d.ts +6 -0
- package/dist-types/commands/GetFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +12 -0
- package/dist-types/commands/GetMulticastGroupCommand.d.ts +7 -1
- package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/ListEventConfigurationsCommand.d.ts +2 -2
- package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +2 -2
- package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +12 -0
- package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +6 -0
- package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +120 -86
- package/dist-types/models/models_1.d.ts +100 -5
- package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -25
- package/dist-types/ts3.4/models/models_1.d.ts +29 -0
- package/package.json +36 -36
package/dist-cjs/index.js
CHANGED
|
@@ -78,7 +78,9 @@ __export(src_exports, {
|
|
|
78
78
|
EventNotificationTopicStatus: () => EventNotificationTopicStatus,
|
|
79
79
|
ExpressionType: () => ExpressionType,
|
|
80
80
|
FuotaDeviceStatus: () => FuotaDeviceStatus,
|
|
81
|
+
FuotaTaskEvent: () => FuotaTaskEvent,
|
|
81
82
|
FuotaTaskStatus: () => FuotaTaskStatus,
|
|
83
|
+
FuotaTaskType: () => FuotaTaskType,
|
|
82
84
|
GetDestinationCommand: () => GetDestinationCommand,
|
|
83
85
|
GetDeviceProfileCommand: () => GetDeviceProfileCommand,
|
|
84
86
|
GetDeviceProfileResponseFilterSensitiveLog: () => GetDeviceProfileResponseFilterSensitiveLog,
|
|
@@ -596,6 +598,7 @@ var Event = {
|
|
|
596
598
|
};
|
|
597
599
|
var IdentifierType = {
|
|
598
600
|
DevEui: "DevEui",
|
|
601
|
+
FuotaTaskId: "FuotaTaskId",
|
|
599
602
|
GatewayEui: "GatewayEui",
|
|
600
603
|
PartnerAccountId: "PartnerAccountId",
|
|
601
604
|
WirelessDeviceId: "WirelessDeviceId",
|
|
@@ -605,6 +608,7 @@ var EventNotificationPartnerType = {
|
|
|
605
608
|
Sidewalk: "Sidewalk"
|
|
606
609
|
};
|
|
607
610
|
var EventNotificationResourceType = {
|
|
611
|
+
FuotaTask: "FuotaTask",
|
|
608
612
|
SidewalkAccount: "SidewalkAccount",
|
|
609
613
|
WirelessDevice: "WirelessDevice",
|
|
610
614
|
WirelessGateway: "WirelessGateway"
|
|
@@ -623,6 +627,12 @@ var FuotaDeviceStatus = {
|
|
|
623
627
|
Successful: "Successful",
|
|
624
628
|
Wrong_descriptor: "Wrong_descriptor"
|
|
625
629
|
};
|
|
630
|
+
var FuotaTaskEvent = {
|
|
631
|
+
Fuota: "Fuota"
|
|
632
|
+
};
|
|
633
|
+
var FuotaTaskType = {
|
|
634
|
+
LoRaWAN: "LoRaWAN"
|
|
635
|
+
};
|
|
626
636
|
var FuotaTaskStatus = {
|
|
627
637
|
Delete_Waiting: "Delete_Waiting",
|
|
628
638
|
FuotaDone: "FuotaDone",
|
|
@@ -767,12 +777,6 @@ var GetPartnerAccountResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
|
|
|
767
777
|
...obj,
|
|
768
778
|
...obj.Sidewalk && { Sidewalk: SidewalkAccountInfoWithFingerprintFilterSensitiveLog(obj.Sidewalk) }
|
|
769
779
|
}), "GetPartnerAccountResponseFilterSensitiveLog");
|
|
770
|
-
var ListPartnerAccountsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
771
|
-
...obj,
|
|
772
|
-
...obj.Sidewalk && {
|
|
773
|
-
Sidewalk: obj.Sidewalk.map((item) => SidewalkAccountInfoWithFingerprintFilterSensitiveLog(item))
|
|
774
|
-
}
|
|
775
|
-
}), "ListPartnerAccountsResponseFilterSensitiveLog");
|
|
776
780
|
|
|
777
781
|
// src/protocols/Aws_restJson1.ts
|
|
778
782
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -810,6 +814,12 @@ var _TooManyTagsException = class _TooManyTagsException extends IoTWirelessServi
|
|
|
810
814
|
};
|
|
811
815
|
__name(_TooManyTagsException, "TooManyTagsException");
|
|
812
816
|
var TooManyTagsException = _TooManyTagsException;
|
|
817
|
+
var ListPartnerAccountsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
818
|
+
...obj,
|
|
819
|
+
...obj.Sidewalk && {
|
|
820
|
+
Sidewalk: obj.Sidewalk.map((item) => SidewalkAccountInfoWithFingerprintFilterSensitiveLog(item))
|
|
821
|
+
}
|
|
822
|
+
}), "ListPartnerAccountsResponseFilterSensitiveLog");
|
|
813
823
|
var SidewalkUpdateAccountFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
814
824
|
...obj,
|
|
815
825
|
...obj.AppServerPrivateKey && { AppServerPrivateKey: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -993,6 +1003,7 @@ var se_CreateFuotaTaskCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
993
1003
|
(0, import_smithy_client.take)(input, {
|
|
994
1004
|
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
995
1005
|
Description: [],
|
|
1006
|
+
Descriptor: [],
|
|
996
1007
|
FirmwareUpdateImage: [],
|
|
997
1008
|
FirmwareUpdateRole: [],
|
|
998
1009
|
FragmentIntervalMS: [],
|
|
@@ -2130,6 +2141,7 @@ var se_UpdateFuotaTaskCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2130
2141
|
body = JSON.stringify(
|
|
2131
2142
|
(0, import_smithy_client.take)(input, {
|
|
2132
2143
|
Description: [],
|
|
2144
|
+
Descriptor: [],
|
|
2133
2145
|
FirmwareUpdateImage: [],
|
|
2134
2146
|
FirmwareUpdateRole: [],
|
|
2135
2147
|
FragmentIntervalMS: [],
|
|
@@ -2152,6 +2164,7 @@ var se_UpdateLogLevelsByResourceTypesCommand = /* @__PURE__ */ __name(async (inp
|
|
|
2152
2164
|
body = JSON.stringify(
|
|
2153
2165
|
(0, import_smithy_client.take)(input, {
|
|
2154
2166
|
DefaultLogLevel: [],
|
|
2167
|
+
FuotaTaskLogOptions: (_) => (0, import_smithy_client._json)(_),
|
|
2155
2168
|
WirelessDeviceLogOptions: (_) => (0, import_smithy_client._json)(_),
|
|
2156
2169
|
WirelessGatewayLogOptions: (_) => (0, import_smithy_client._json)(_)
|
|
2157
2170
|
})
|
|
@@ -2856,6 +2869,7 @@ var de_GetFuotaTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2856
2869
|
Arn: import_smithy_client.expectString,
|
|
2857
2870
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2858
2871
|
Description: import_smithy_client.expectString,
|
|
2872
|
+
Descriptor: import_smithy_client.expectString,
|
|
2859
2873
|
FirmwareUpdateImage: import_smithy_client.expectString,
|
|
2860
2874
|
FirmwareUpdateRole: import_smithy_client.expectString,
|
|
2861
2875
|
FragmentIntervalMS: import_smithy_client.expectInt32,
|
|
@@ -2879,6 +2893,7 @@ var de_GetLogLevelsByResourceTypesCommand = /* @__PURE__ */ __name(async (output
|
|
|
2879
2893
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
2880
2894
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2881
2895
|
DefaultLogLevel: import_smithy_client.expectString,
|
|
2896
|
+
FuotaTaskLogOptions: import_smithy_client._json,
|
|
2882
2897
|
WirelessDeviceLogOptions: import_smithy_client._json,
|
|
2883
2898
|
WirelessGatewayLogOptions: import_smithy_client._json
|
|
2884
2899
|
});
|
|
@@ -6205,6 +6220,8 @@ var paginateListWirelessGateways = (0, import_core.createPaginator)(IoTWirelessC
|
|
|
6205
6220
|
EventNotificationPartnerType,
|
|
6206
6221
|
EventNotificationResourceType,
|
|
6207
6222
|
FuotaDeviceStatus,
|
|
6223
|
+
FuotaTaskEvent,
|
|
6224
|
+
FuotaTaskType,
|
|
6208
6225
|
FuotaTaskStatus,
|
|
6209
6226
|
WirelessDeviceEvent,
|
|
6210
6227
|
WirelessGatewayEvent,
|
|
@@ -6230,10 +6247,10 @@ var paginateListWirelessGateways = (0, import_core.createPaginator)(IoTWirelessC
|
|
|
6230
6247
|
GetDeviceProfileResponseFilterSensitiveLog,
|
|
6231
6248
|
SidewalkAccountInfoWithFingerprintFilterSensitiveLog,
|
|
6232
6249
|
GetPartnerAccountResponseFilterSensitiveLog,
|
|
6233
|
-
ListPartnerAccountsResponseFilterSensitiveLog,
|
|
6234
6250
|
WirelessGatewayTaskDefinitionType,
|
|
6235
6251
|
MessageType,
|
|
6236
6252
|
TooManyTagsException,
|
|
6253
|
+
ListPartnerAccountsResponseFilterSensitiveLog,
|
|
6237
6254
|
SidewalkUpdateAccountFilterSensitiveLog,
|
|
6238
6255
|
UpdatePartnerAccountRequestFilterSensitiveLog
|
|
6239
6256
|
});
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListPartnerAccountsResponseFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { ListPartnerAccountsResponseFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_ListPartnerAccountsCommand, se_ListPartnerAccountsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListPartnerAccountsCommand extends $Command
|
|
@@ -190,6 +190,7 @@ export const Event = {
|
|
|
190
190
|
};
|
|
191
191
|
export const IdentifierType = {
|
|
192
192
|
DevEui: "DevEui",
|
|
193
|
+
FuotaTaskId: "FuotaTaskId",
|
|
193
194
|
GatewayEui: "GatewayEui",
|
|
194
195
|
PartnerAccountId: "PartnerAccountId",
|
|
195
196
|
WirelessDeviceId: "WirelessDeviceId",
|
|
@@ -199,6 +200,7 @@ export const EventNotificationPartnerType = {
|
|
|
199
200
|
Sidewalk: "Sidewalk",
|
|
200
201
|
};
|
|
201
202
|
export const EventNotificationResourceType = {
|
|
203
|
+
FuotaTask: "FuotaTask",
|
|
202
204
|
SidewalkAccount: "SidewalkAccount",
|
|
203
205
|
WirelessDevice: "WirelessDevice",
|
|
204
206
|
WirelessGateway: "WirelessGateway",
|
|
@@ -217,6 +219,12 @@ export const FuotaDeviceStatus = {
|
|
|
217
219
|
Successful: "Successful",
|
|
218
220
|
Wrong_descriptor: "Wrong_descriptor",
|
|
219
221
|
};
|
|
222
|
+
export const FuotaTaskEvent = {
|
|
223
|
+
Fuota: "Fuota",
|
|
224
|
+
};
|
|
225
|
+
export const FuotaTaskType = {
|
|
226
|
+
LoRaWAN: "LoRaWAN",
|
|
227
|
+
};
|
|
220
228
|
export const FuotaTaskStatus = {
|
|
221
229
|
Delete_Waiting: "Delete_Waiting",
|
|
222
230
|
FuotaDone: "FuotaDone",
|
|
@@ -361,9 +369,3 @@ export const GetPartnerAccountResponseFilterSensitiveLog = (obj) => ({
|
|
|
361
369
|
...obj,
|
|
362
370
|
...(obj.Sidewalk && { Sidewalk: SidewalkAccountInfoWithFingerprintFilterSensitiveLog(obj.Sidewalk) }),
|
|
363
371
|
});
|
|
364
|
-
export const ListPartnerAccountsResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
...(obj.Sidewalk && {
|
|
367
|
-
Sidewalk: obj.Sidewalk.map((item) => SidewalkAccountInfoWithFingerprintFilterSensitiveLog(item)),
|
|
368
|
-
}),
|
|
369
|
-
});
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
|
|
3
|
+
import { SidewalkAccountInfoWithFingerprintFilterSensitiveLog, } from "./models_0";
|
|
3
4
|
export const WirelessGatewayTaskDefinitionType = {
|
|
4
5
|
UPDATE: "UPDATE",
|
|
5
6
|
};
|
|
@@ -23,6 +24,12 @@ export class TooManyTagsException extends __BaseException {
|
|
|
23
24
|
this.ResourceName = opts.ResourceName;
|
|
24
25
|
}
|
|
25
26
|
}
|
|
27
|
+
export const ListPartnerAccountsResponseFilterSensitiveLog = (obj) => ({
|
|
28
|
+
...obj,
|
|
29
|
+
...(obj.Sidewalk && {
|
|
30
|
+
Sidewalk: obj.Sidewalk.map((item) => SidewalkAccountInfoWithFingerprintFilterSensitiveLog(item)),
|
|
31
|
+
}),
|
|
32
|
+
});
|
|
26
33
|
export const SidewalkUpdateAccountFilterSensitiveLog = (obj) => ({
|
|
27
34
|
...obj,
|
|
28
35
|
...(obj.AppServerPrivateKey && { AppServerPrivateKey: SENSITIVE_STRING }),
|
|
@@ -159,6 +159,7 @@ export const se_CreateFuotaTaskCommand = async (input, context) => {
|
|
|
159
159
|
body = JSON.stringify(take(input, {
|
|
160
160
|
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
161
161
|
Description: [],
|
|
162
|
+
Descriptor: [],
|
|
162
163
|
FirmwareUpdateImage: [],
|
|
163
164
|
FirmwareUpdateRole: [],
|
|
164
165
|
FragmentIntervalMS: [],
|
|
@@ -1250,6 +1251,7 @@ export const se_UpdateFuotaTaskCommand = async (input, context) => {
|
|
|
1250
1251
|
let body;
|
|
1251
1252
|
body = JSON.stringify(take(input, {
|
|
1252
1253
|
Description: [],
|
|
1254
|
+
Descriptor: [],
|
|
1253
1255
|
FirmwareUpdateImage: [],
|
|
1254
1256
|
FirmwareUpdateRole: [],
|
|
1255
1257
|
FragmentIntervalMS: [],
|
|
@@ -1270,6 +1272,7 @@ export const se_UpdateLogLevelsByResourceTypesCommand = async (input, context) =
|
|
|
1270
1272
|
let body;
|
|
1271
1273
|
body = JSON.stringify(take(input, {
|
|
1272
1274
|
DefaultLogLevel: [],
|
|
1275
|
+
FuotaTaskLogOptions: (_) => _json(_),
|
|
1273
1276
|
WirelessDeviceLogOptions: (_) => _json(_),
|
|
1274
1277
|
WirelessGatewayLogOptions: (_) => _json(_),
|
|
1275
1278
|
}));
|
|
@@ -1955,6 +1958,7 @@ export const de_GetFuotaTaskCommand = async (output, context) => {
|
|
|
1955
1958
|
Arn: __expectString,
|
|
1956
1959
|
CreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1957
1960
|
Description: __expectString,
|
|
1961
|
+
Descriptor: __expectString,
|
|
1958
1962
|
FirmwareUpdateImage: __expectString,
|
|
1959
1963
|
FirmwareUpdateRole: __expectString,
|
|
1960
1964
|
FragmentIntervalMS: __expectInt32,
|
|
@@ -1978,6 +1982,7 @@ export const de_GetLogLevelsByResourceTypesCommand = async (output, context) =>
|
|
|
1978
1982
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1979
1983
|
const doc = take(data, {
|
|
1980
1984
|
DefaultLogLevel: __expectString,
|
|
1985
|
+
FuotaTaskLogOptions: _json,
|
|
1981
1986
|
WirelessDeviceLogOptions: _json,
|
|
1982
1987
|
WirelessGatewayLogOptions: _json,
|
|
1983
1988
|
});
|
|
@@ -52,6 +52,7 @@ declare const CreateFuotaTaskCommand_base: {
|
|
|
52
52
|
* RedundancyPercent: Number("int"),
|
|
53
53
|
* FragmentSizeBytes: Number("int"),
|
|
54
54
|
* FragmentIntervalMS: Number("int"),
|
|
55
|
+
* Descriptor: "STRING_VALUE",
|
|
55
56
|
* };
|
|
56
57
|
* const command = new CreateFuotaTaskCommand(input);
|
|
57
58
|
* const response = await client.send(command);
|
|
@@ -41,6 +41,12 @@ declare const CreateMulticastGroupCommand_base: {
|
|
|
41
41
|
* LoRaWAN: { // LoRaWANMulticast
|
|
42
42
|
* RfRegion: "EU868" || "US915" || "AU915" || "AS923-1" || "AS923-2" || "AS923-3" || "AS923-4" || "EU433" || "CN470" || "CN779" || "RU864" || "KR920" || "IN865",
|
|
43
43
|
* DlClass: "ClassB" || "ClassC",
|
|
44
|
+
* ParticipatingGateways: { // ParticipatingGatewaysMulticast
|
|
45
|
+
* GatewayList: [ // GatewayListMulticast
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* TransmissionInterval: Number("int"),
|
|
49
|
+
* },
|
|
44
50
|
* },
|
|
45
51
|
* Tags: [ // TagList
|
|
46
52
|
* { // Tag
|
|
@@ -65,6 +65,18 @@ declare const GetLogLevelsByResourceTypesCommand_base: {
|
|
|
65
65
|
* // ],
|
|
66
66
|
* // },
|
|
67
67
|
* // ],
|
|
68
|
+
* // FuotaTaskLogOptions: [ // FuotaTaskLogOptionList
|
|
69
|
+
* // { // FuotaTaskLogOption
|
|
70
|
+
* // Type: "LoRaWAN", // required
|
|
71
|
+
* // LogLevel: "INFO" || "ERROR" || "DISABLED", // required
|
|
72
|
+
* // Events: [ // FuotaTaskEventLogOptionList
|
|
73
|
+
* // { // FuotaTaskEventLogOption
|
|
74
|
+
* // Event: "Fuota", // required
|
|
75
|
+
* // LogLevel: "INFO" || "ERROR" || "DISABLED", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
68
80
|
* // };
|
|
69
81
|
*
|
|
70
82
|
* ```
|
|
@@ -24,7 +24,7 @@ export interface GetMulticastGroupCommandOutput extends GetMulticastGroupRespons
|
|
|
24
24
|
declare const GetMulticastGroupCommand_base: {
|
|
25
25
|
new (input: GetMulticastGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (__0_0: GetMulticastGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; /** @internal type navigation helper, not in runtime. */
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Gets information about a multicast group.</p>
|
|
@@ -50,6 +50,12 @@ declare const GetMulticastGroupCommand_base: {
|
|
|
50
50
|
* // DlClass: "ClassB" || "ClassC",
|
|
51
51
|
* // NumberOfDevicesRequested: Number("int"),
|
|
52
52
|
* // NumberOfDevicesInGroup: Number("int"),
|
|
53
|
+
* // ParticipatingGateways: { // ParticipatingGatewaysMulticast
|
|
54
|
+
* // GatewayList: [ // GatewayListMulticast
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // TransmissionInterval: Number("int"),
|
|
58
|
+
* // },
|
|
53
59
|
* // },
|
|
54
60
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
55
61
|
* // };
|
|
@@ -36,7 +36,7 @@ declare const GetResourceEventConfigurationCommand_base: {
|
|
|
36
36
|
* const client = new IoTWirelessClient(config);
|
|
37
37
|
* const input = { // GetResourceEventConfigurationRequest
|
|
38
38
|
* Identifier: "STRING_VALUE", // required
|
|
39
|
-
* IdentifierType: "PartnerAccountId" || "DevEui" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId", // required
|
|
39
|
+
* IdentifierType: "PartnerAccountId" || "DevEui" || "FuotaTaskId" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId", // required
|
|
40
40
|
* PartnerType: "Sidewalk",
|
|
41
41
|
* };
|
|
42
42
|
* const command = new GetResourceEventConfigurationCommand(input);
|
|
@@ -28,7 +28,7 @@ declare const GetResourceLogLevelCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Fetches the log-level override, if any, for a given resource-ID and resource-type. It
|
|
31
|
-
* can be used for a wireless device or
|
|
31
|
+
* can be used for a wireless device, wireless gateway or fuota task.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -35,7 +35,7 @@ declare const ListEventConfigurationsCommand_base: {
|
|
|
35
35
|
* // const { IoTWirelessClient, ListEventConfigurationsCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
|
|
36
36
|
* const client = new IoTWirelessClient(config);
|
|
37
37
|
* const input = { // ListEventConfigurationsRequest
|
|
38
|
-
* ResourceType: "SidewalkAccount" || "WirelessDevice" || "WirelessGateway", // required
|
|
38
|
+
* ResourceType: "FuotaTask" || "SidewalkAccount" || "WirelessDevice" || "WirelessGateway", // required
|
|
39
39
|
* MaxResults: Number("int"),
|
|
40
40
|
* NextToken: "STRING_VALUE",
|
|
41
41
|
* };
|
|
@@ -46,7 +46,7 @@ declare const ListEventConfigurationsCommand_base: {
|
|
|
46
46
|
* // EventConfigurationsList: [ // EventConfigurationsList
|
|
47
47
|
* // { // EventConfigurationItem
|
|
48
48
|
* // Identifier: "STRING_VALUE",
|
|
49
|
-
* // IdentifierType: "PartnerAccountId" || "DevEui" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId",
|
|
49
|
+
* // IdentifierType: "PartnerAccountId" || "DevEui" || "FuotaTaskId" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId",
|
|
50
50
|
* // PartnerType: "Sidewalk",
|
|
51
51
|
* // Events: { // EventNotificationItemConfigurations
|
|
52
52
|
* // DeviceRegistrationState: { // DeviceRegistrationStateEventConfiguration
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
-
import { ListNetworkAnalyzerConfigurationsRequest, ListNetworkAnalyzerConfigurationsResponse } from "../models/
|
|
4
|
+
import { ListNetworkAnalyzerConfigurationsRequest, ListNetworkAnalyzerConfigurationsResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
-
import { ListPartnerAccountsRequest, ListPartnerAccountsResponse } from "../models/
|
|
4
|
+
import { ListPartnerAccountsRequest, ListPartnerAccountsResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -27,8 +27,8 @@ declare const ResetAllResourceLogLevelsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Removes the log-level overrides for all resources;
|
|
31
|
-
* gateways.</p>
|
|
30
|
+
* <p>Removes the log-level overrides for all resources; wireless devices, wireless
|
|
31
|
+
* gateways, and fuota tasks.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -28,7 +28,7 @@ declare const ResetResourceLogLevelCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Removes the log-level override, if any, for a specific resource-ID and resource-type.
|
|
31
|
-
* It can be used for a wireless device or a
|
|
31
|
+
* It can be used for a wireless device, a wireless gateway, or a fuota task.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -46,6 +46,7 @@ declare const UpdateFuotaTaskCommand_base: {
|
|
|
46
46
|
* RedundancyPercent: Number("int"),
|
|
47
47
|
* FragmentSizeBytes: Number("int"),
|
|
48
48
|
* FragmentIntervalMS: Number("int"),
|
|
49
|
+
* Descriptor: "STRING_VALUE",
|
|
49
50
|
* };
|
|
50
51
|
* const command = new UpdateFuotaTaskCommand(input);
|
|
51
52
|
* const response = await client.send(command);
|
|
@@ -38,6 +38,18 @@ declare const UpdateLogLevelsByResourceTypesCommand_base: {
|
|
|
38
38
|
* const client = new IoTWirelessClient(config);
|
|
39
39
|
* const input = { // UpdateLogLevelsByResourceTypesRequest
|
|
40
40
|
* DefaultLogLevel: "INFO" || "ERROR" || "DISABLED",
|
|
41
|
+
* FuotaTaskLogOptions: [ // FuotaTaskLogOptionList
|
|
42
|
+
* { // FuotaTaskLogOption
|
|
43
|
+
* Type: "LoRaWAN", // required
|
|
44
|
+
* LogLevel: "INFO" || "ERROR" || "DISABLED", // required
|
|
45
|
+
* Events: [ // FuotaTaskEventLogOptionList
|
|
46
|
+
* { // FuotaTaskEventLogOption
|
|
47
|
+
* Event: "Fuota", // required
|
|
48
|
+
* LogLevel: "INFO" || "ERROR" || "DISABLED", // required
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
41
53
|
* WirelessDeviceLogOptions: [ // WirelessDeviceLogOptionList
|
|
42
54
|
* { // WirelessDeviceLogOption
|
|
43
55
|
* Type: "Sidewalk" || "LoRaWAN", // required
|
|
@@ -41,6 +41,12 @@ declare const UpdateMulticastGroupCommand_base: {
|
|
|
41
41
|
* LoRaWAN: { // LoRaWANMulticast
|
|
42
42
|
* RfRegion: "EU868" || "US915" || "AU915" || "AS923-1" || "AS923-2" || "AS923-3" || "AS923-4" || "EU433" || "CN470" || "CN779" || "RU864" || "KR920" || "IN865",
|
|
43
43
|
* DlClass: "ClassB" || "ClassC",
|
|
44
|
+
* ParticipatingGateways: { // ParticipatingGatewaysMulticast
|
|
45
|
+
* GatewayList: [ // GatewayListMulticast
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* TransmissionInterval: Number("int"),
|
|
49
|
+
* },
|
|
44
50
|
* },
|
|
45
51
|
* };
|
|
46
52
|
* const command = new UpdateMulticastGroupCommand(input);
|
|
@@ -36,7 +36,7 @@ declare const UpdateResourceEventConfigurationCommand_base: {
|
|
|
36
36
|
* const client = new IoTWirelessClient(config);
|
|
37
37
|
* const input = { // UpdateResourceEventConfigurationRequest
|
|
38
38
|
* Identifier: "STRING_VALUE", // required
|
|
39
|
-
* IdentifierType: "PartnerAccountId" || "DevEui" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId", // required
|
|
39
|
+
* IdentifierType: "PartnerAccountId" || "DevEui" || "FuotaTaskId" || "GatewayEui" || "WirelessDeviceId" || "WirelessGatewayId", // required
|
|
40
40
|
* PartnerType: "Sidewalk",
|
|
41
41
|
* DeviceRegistrationState: { // DeviceRegistrationStateEventConfiguration
|
|
42
42
|
* Sidewalk: { // SidewalkEventNotificationConfigurations
|
|
@@ -1480,6 +1480,12 @@ export interface CreateFuotaTaskRequest {
|
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
1482
|
FragmentIntervalMS?: number | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
|
|
1485
|
+
* It is sent transparently to the device. It is a binary field encoded in base64</p>
|
|
1486
|
+
* @public
|
|
1487
|
+
*/
|
|
1488
|
+
Descriptor?: string | undefined;
|
|
1483
1489
|
}
|
|
1484
1490
|
/**
|
|
1485
1491
|
* @public
|
|
@@ -1508,6 +1514,27 @@ export declare const DlClass: {
|
|
|
1508
1514
|
* @public
|
|
1509
1515
|
*/
|
|
1510
1516
|
export type DlClass = (typeof DlClass)[keyof typeof DlClass];
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
1519
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1522
|
+
export interface ParticipatingGatewaysMulticast {
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>The list of gateways that you want to use for sending the multicast downlink. Each downlink will be
|
|
1525
|
+
* sent to all the gateways in the list with transmission interval between them. If list is empty the gateway
|
|
1526
|
+
* list will be dynamically selected similar to the case of no ParticipatingGateways
|
|
1527
|
+
* </p>
|
|
1528
|
+
* @public
|
|
1529
|
+
*/
|
|
1530
|
+
GatewayList?: string[] | undefined;
|
|
1531
|
+
/**
|
|
1532
|
+
* <p>The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting
|
|
1533
|
+
* the multicast payload to the next gateway in the list.</p>
|
|
1534
|
+
* @public
|
|
1535
|
+
*/
|
|
1536
|
+
TransmissionInterval?: number | undefined;
|
|
1537
|
+
}
|
|
1511
1538
|
/**
|
|
1512
1539
|
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
1513
1540
|
* @public
|
|
@@ -1523,6 +1550,12 @@ export interface LoRaWANMulticast {
|
|
|
1523
1550
|
* @public
|
|
1524
1551
|
*/
|
|
1525
1552
|
DlClass?: DlClass | undefined;
|
|
1553
|
+
/**
|
|
1554
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
1555
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
1556
|
+
* @public
|
|
1557
|
+
*/
|
|
1558
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
1526
1559
|
}
|
|
1527
1560
|
/**
|
|
1528
1561
|
* @public
|
|
@@ -3075,6 +3108,7 @@ export interface EventNotificationItemConfigurations {
|
|
|
3075
3108
|
*/
|
|
3076
3109
|
export declare const IdentifierType: {
|
|
3077
3110
|
readonly DevEui: "DevEui";
|
|
3111
|
+
readonly FuotaTaskId: "FuotaTaskId";
|
|
3078
3112
|
readonly GatewayEui: "GatewayEui";
|
|
3079
3113
|
readonly PartnerAccountId: "PartnerAccountId";
|
|
3080
3114
|
readonly WirelessDeviceId: "WirelessDeviceId";
|
|
@@ -3126,6 +3160,7 @@ export interface EventConfigurationItem {
|
|
|
3126
3160
|
* @enum
|
|
3127
3161
|
*/
|
|
3128
3162
|
export declare const EventNotificationResourceType: {
|
|
3163
|
+
readonly FuotaTask: "FuotaTask";
|
|
3129
3164
|
readonly SidewalkAccount: "SidewalkAccount";
|
|
3130
3165
|
readonly WirelessDevice: "WirelessDevice";
|
|
3131
3166
|
readonly WirelessGateway: "WirelessGateway";
|
|
@@ -3177,6 +3212,72 @@ export interface FuotaTask {
|
|
|
3177
3212
|
*/
|
|
3178
3213
|
Name?: string | undefined;
|
|
3179
3214
|
}
|
|
3215
|
+
/**
|
|
3216
|
+
* @public
|
|
3217
|
+
* @enum
|
|
3218
|
+
*/
|
|
3219
|
+
export declare const FuotaTaskEvent: {
|
|
3220
|
+
readonly Fuota: "Fuota";
|
|
3221
|
+
};
|
|
3222
|
+
/**
|
|
3223
|
+
* @public
|
|
3224
|
+
*/
|
|
3225
|
+
export type FuotaTaskEvent = (typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
|
|
3226
|
+
/**
|
|
3227
|
+
* <p>The log options for a FUOTA task event and can be used to set log levels for a
|
|
3228
|
+
* specific fuota task event.</p>
|
|
3229
|
+
* <p>For a LoRaWAN FuotaTask type, possible event for a log message is <code>Fuota</code>.</p>
|
|
3230
|
+
* @public
|
|
3231
|
+
*/
|
|
3232
|
+
export interface FuotaTaskEventLogOption {
|
|
3233
|
+
/**
|
|
3234
|
+
* <p>The event for a log message, if the log message is tied to a fuota task.</p>
|
|
3235
|
+
* @public
|
|
3236
|
+
*/
|
|
3237
|
+
Event: FuotaTaskEvent | undefined;
|
|
3238
|
+
/**
|
|
3239
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
3240
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
3241
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
3242
|
+
* @public
|
|
3243
|
+
*/
|
|
3244
|
+
LogLevel: LogLevel | undefined;
|
|
3245
|
+
}
|
|
3246
|
+
/**
|
|
3247
|
+
* @public
|
|
3248
|
+
* @enum
|
|
3249
|
+
*/
|
|
3250
|
+
export declare const FuotaTaskType: {
|
|
3251
|
+
readonly LoRaWAN: "LoRaWAN";
|
|
3252
|
+
};
|
|
3253
|
+
/**
|
|
3254
|
+
* @public
|
|
3255
|
+
*/
|
|
3256
|
+
export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
|
|
3257
|
+
/**
|
|
3258
|
+
* <p>The log options for fuota tasks and can be used to set log levels for a specific
|
|
3259
|
+
* type of fuota task.</p>
|
|
3260
|
+
* @public
|
|
3261
|
+
*/
|
|
3262
|
+
export interface FuotaTaskLogOption {
|
|
3263
|
+
/**
|
|
3264
|
+
* <p>The fuota task type.</p>
|
|
3265
|
+
* @public
|
|
3266
|
+
*/
|
|
3267
|
+
Type: FuotaTaskType | undefined;
|
|
3268
|
+
/**
|
|
3269
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
3270
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
3271
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
3272
|
+
* @public
|
|
3273
|
+
*/
|
|
3274
|
+
LogLevel: LogLevel | undefined;
|
|
3275
|
+
/**
|
|
3276
|
+
* <p>The list of FUOTA task event log options.</p>
|
|
3277
|
+
* @public
|
|
3278
|
+
*/
|
|
3279
|
+
Events?: FuotaTaskEventLogOption[] | undefined;
|
|
3280
|
+
}
|
|
3180
3281
|
/**
|
|
3181
3282
|
* @public
|
|
3182
3283
|
* @enum
|
|
@@ -3484,6 +3585,12 @@ export interface GetFuotaTaskResponse {
|
|
|
3484
3585
|
* @public
|
|
3485
3586
|
*/
|
|
3486
3587
|
FragmentIntervalMS?: number | undefined;
|
|
3588
|
+
/**
|
|
3589
|
+
* <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
|
|
3590
|
+
* It is sent transparently to the device. It is a binary field encoded in base64</p>
|
|
3591
|
+
* @public
|
|
3592
|
+
*/
|
|
3593
|
+
Descriptor?: string | undefined;
|
|
3487
3594
|
}
|
|
3488
3595
|
/**
|
|
3489
3596
|
* @public
|
|
@@ -3641,6 +3748,11 @@ export interface GetLogLevelsByResourceTypesResponse {
|
|
|
3641
3748
|
* @public
|
|
3642
3749
|
*/
|
|
3643
3750
|
WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
|
|
3751
|
+
/**
|
|
3752
|
+
* <p>The list of fuota task log options.</p>
|
|
3753
|
+
* @public
|
|
3754
|
+
*/
|
|
3755
|
+
FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
|
|
3644
3756
|
}
|
|
3645
3757
|
/**
|
|
3646
3758
|
* @public
|
|
@@ -3929,6 +4041,12 @@ export interface LoRaWANMulticastGet {
|
|
|
3929
4041
|
* @public
|
|
3930
4042
|
*/
|
|
3931
4043
|
NumberOfDevicesInGroup?: number | undefined;
|
|
4044
|
+
/**
|
|
4045
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
4046
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
4047
|
+
* @public
|
|
4048
|
+
*/
|
|
4049
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
3932
4050
|
}
|
|
3933
4051
|
/**
|
|
3934
4052
|
* @public
|
|
@@ -4489,8 +4607,8 @@ export interface GetResourceLogLevelRequest {
|
|
|
4489
4607
|
*/
|
|
4490
4608
|
ResourceIdentifier: string | undefined;
|
|
4491
4609
|
/**
|
|
4492
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code
|
|
4493
|
-
* <code>WirelessGateway</code>.</p>
|
|
4610
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code>,
|
|
4611
|
+
* <code>WirelessGateway</code> or <code>FuotaTask</code>.</p>
|
|
4494
4612
|
* @public
|
|
4495
4613
|
*/
|
|
4496
4614
|
ResourceType: string | undefined;
|
|
@@ -5727,86 +5845,6 @@ export interface ListMulticastGroupsByFuotaTaskResponse {
|
|
|
5727
5845
|
*/
|
|
5728
5846
|
MulticastGroupList?: MulticastGroupByFuotaTask[] | undefined;
|
|
5729
5847
|
}
|
|
5730
|
-
/**
|
|
5731
|
-
* @public
|
|
5732
|
-
*/
|
|
5733
|
-
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
5734
|
-
/**
|
|
5735
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5736
|
-
* @public
|
|
5737
|
-
*/
|
|
5738
|
-
MaxResults?: number | undefined;
|
|
5739
|
-
/**
|
|
5740
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5741
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5742
|
-
* results.</p>
|
|
5743
|
-
* @public
|
|
5744
|
-
*/
|
|
5745
|
-
NextToken?: string | undefined;
|
|
5746
|
-
}
|
|
5747
|
-
/**
|
|
5748
|
-
* <p>Network analyzer configurations.</p>
|
|
5749
|
-
* @public
|
|
5750
|
-
*/
|
|
5751
|
-
export interface NetworkAnalyzerConfigurations {
|
|
5752
|
-
/**
|
|
5753
|
-
* <p>The Amazon Resource Name of the new resource.</p>
|
|
5754
|
-
* @public
|
|
5755
|
-
*/
|
|
5756
|
-
Arn?: string | undefined;
|
|
5757
|
-
/**
|
|
5758
|
-
* <p>Name of the network analyzer configuration.</p>
|
|
5759
|
-
* @public
|
|
5760
|
-
*/
|
|
5761
|
-
Name?: string | undefined;
|
|
5762
|
-
}
|
|
5763
|
-
/**
|
|
5764
|
-
* @public
|
|
5765
|
-
*/
|
|
5766
|
-
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
5767
|
-
/**
|
|
5768
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5769
|
-
* @public
|
|
5770
|
-
*/
|
|
5771
|
-
NextToken?: string | undefined;
|
|
5772
|
-
/**
|
|
5773
|
-
* <p>The list of network analyzer configurations.</p>
|
|
5774
|
-
* @public
|
|
5775
|
-
*/
|
|
5776
|
-
NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[] | undefined;
|
|
5777
|
-
}
|
|
5778
|
-
/**
|
|
5779
|
-
* @public
|
|
5780
|
-
*/
|
|
5781
|
-
export interface ListPartnerAccountsRequest {
|
|
5782
|
-
/**
|
|
5783
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5784
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5785
|
-
* results.</p>
|
|
5786
|
-
* @public
|
|
5787
|
-
*/
|
|
5788
|
-
NextToken?: string | undefined;
|
|
5789
|
-
/**
|
|
5790
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5791
|
-
* @public
|
|
5792
|
-
*/
|
|
5793
|
-
MaxResults?: number | undefined;
|
|
5794
|
-
}
|
|
5795
|
-
/**
|
|
5796
|
-
* @public
|
|
5797
|
-
*/
|
|
5798
|
-
export interface ListPartnerAccountsResponse {
|
|
5799
|
-
/**
|
|
5800
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5801
|
-
* @public
|
|
5802
|
-
*/
|
|
5803
|
-
NextToken?: string | undefined;
|
|
5804
|
-
/**
|
|
5805
|
-
* <p>The Sidewalk account credentials.</p>
|
|
5806
|
-
* @public
|
|
5807
|
-
*/
|
|
5808
|
-
Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
|
|
5809
|
-
}
|
|
5810
5848
|
/**
|
|
5811
5849
|
* @internal
|
|
5812
5850
|
*/
|
|
@@ -5835,7 +5873,3 @@ export declare const SidewalkAccountInfoWithFingerprintFilterSensitiveLog: (obj:
|
|
|
5835
5873
|
* @internal
|
|
5836
5874
|
*/
|
|
5837
5875
|
export declare const GetPartnerAccountResponseFilterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
|
|
5838
|
-
/**
|
|
5839
|
-
* @internal
|
|
5840
|
-
*/
|
|
5841
|
-
export declare const ListPartnerAccountsResponseFilterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
@@ -1,6 +1,86 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
|
|
3
|
-
import { ApplicationConfig, CertificateList, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, DownlinkQueueMessage, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, IdentifierType, ImportTaskStatus, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, PositionSolverDetails, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration, SidewalkGetStartImportInfo, SummaryMetricConfiguration, Tag, TraceContent, WirelessDeviceLogOption, WirelessDeviceSidewalkStatus, WirelessDeviceType, WirelessGatewayLogOption } from "./models_0";
|
|
3
|
+
import { ApplicationConfig, CertificateList, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, DownlinkQueueMessage, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, FuotaTaskLogOption, IdentifierType, ImportTaskStatus, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, PositionSolverDetails, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration, SidewalkAccountInfoWithFingerprint, SidewalkGetStartImportInfo, SummaryMetricConfiguration, Tag, TraceContent, WirelessDeviceLogOption, WirelessDeviceSidewalkStatus, WirelessDeviceType, WirelessGatewayLogOption } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The maximum number of results to return in this operation.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
MaxResults?: number | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
15
|
+
* response; otherwise <b>null</b> to receive the first set of
|
|
16
|
+
* results.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
NextToken?: string | undefined;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* <p>Network analyzer configurations.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface NetworkAnalyzerConfigurations {
|
|
26
|
+
/**
|
|
27
|
+
* <p>The Amazon Resource Name of the new resource.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
Arn?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>Name of the network analyzer configuration.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
Name?: string | undefined;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
41
|
+
/**
|
|
42
|
+
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
NextToken?: string | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The list of network analyzer configurations.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[] | undefined;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface ListPartnerAccountsRequest {
|
|
56
|
+
/**
|
|
57
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
58
|
+
* response; otherwise <b>null</b> to receive the first set of
|
|
59
|
+
* results.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
NextToken?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The maximum number of results to return in this operation.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
MaxResults?: number | undefined;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export interface ListPartnerAccountsResponse {
|
|
73
|
+
/**
|
|
74
|
+
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
NextToken?: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The Sidewalk account credentials.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
|
|
83
|
+
}
|
|
4
84
|
/**
|
|
5
85
|
* @public
|
|
6
86
|
*/
|
|
@@ -685,8 +765,8 @@ export interface PutResourceLogLevelRequest {
|
|
|
685
765
|
*/
|
|
686
766
|
ResourceIdentifier: string | undefined;
|
|
687
767
|
/**
|
|
688
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code
|
|
689
|
-
* <code>WirelessGateway</code>.</p>
|
|
768
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code>,
|
|
769
|
+
* <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
|
|
690
770
|
* @public
|
|
691
771
|
*/
|
|
692
772
|
ResourceType: string | undefined;
|
|
@@ -724,8 +804,8 @@ export interface ResetResourceLogLevelRequest {
|
|
|
724
804
|
*/
|
|
725
805
|
ResourceIdentifier: string | undefined;
|
|
726
806
|
/**
|
|
727
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code
|
|
728
|
-
* <code>WirelessGateway</code>.</p>
|
|
807
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code>,
|
|
808
|
+
* <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
|
|
729
809
|
* @public
|
|
730
810
|
*/
|
|
731
811
|
ResourceType: string | undefined;
|
|
@@ -1325,6 +1405,12 @@ export interface UpdateFuotaTaskRequest {
|
|
|
1325
1405
|
* @public
|
|
1326
1406
|
*/
|
|
1327
1407
|
FragmentIntervalMS?: number | undefined;
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
|
|
1410
|
+
* It is sent transparently to the device. It is a binary field encoded in base64</p>
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1413
|
+
Descriptor?: string | undefined;
|
|
1328
1414
|
}
|
|
1329
1415
|
/**
|
|
1330
1416
|
* @public
|
|
@@ -1342,6 +1428,11 @@ export interface UpdateLogLevelsByResourceTypesRequest {
|
|
|
1342
1428
|
* @public
|
|
1343
1429
|
*/
|
|
1344
1430
|
DefaultLogLevel?: LogLevel | undefined;
|
|
1431
|
+
/**
|
|
1432
|
+
* <p>The list of fuota task log options.</p>
|
|
1433
|
+
* @public
|
|
1434
|
+
*/
|
|
1435
|
+
FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
|
|
1345
1436
|
/**
|
|
1346
1437
|
* <p>The list of wireless device log options.</p>
|
|
1347
1438
|
* @public
|
|
@@ -1791,6 +1882,10 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
1791
1882
|
*/
|
|
1792
1883
|
export interface UpdateWirelessGatewayResponse {
|
|
1793
1884
|
}
|
|
1885
|
+
/**
|
|
1886
|
+
* @internal
|
|
1887
|
+
*/
|
|
1888
|
+
export declare const ListPartnerAccountsResponseFilterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
1794
1889
|
/**
|
|
1795
1890
|
* @internal
|
|
1796
1891
|
*/
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListNetworkAnalyzerConfigurationsRequest,
|
|
10
10
|
ListNetworkAnalyzerConfigurationsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListNetworkAnalyzerConfigurationsCommandInput
|
|
@@ -389,6 +389,7 @@ export interface CreateFuotaTaskRequest {
|
|
|
389
389
|
RedundancyPercent?: number | undefined;
|
|
390
390
|
FragmentSizeBytes?: number | undefined;
|
|
391
391
|
FragmentIntervalMS?: number | undefined;
|
|
392
|
+
Descriptor?: string | undefined;
|
|
392
393
|
}
|
|
393
394
|
export interface CreateFuotaTaskResponse {
|
|
394
395
|
Arn?: string | undefined;
|
|
@@ -399,9 +400,14 @@ export declare const DlClass: {
|
|
|
399
400
|
readonly ClassC: "ClassC";
|
|
400
401
|
};
|
|
401
402
|
export type DlClass = (typeof DlClass)[keyof typeof DlClass];
|
|
403
|
+
export interface ParticipatingGatewaysMulticast {
|
|
404
|
+
GatewayList?: string[] | undefined;
|
|
405
|
+
TransmissionInterval?: number | undefined;
|
|
406
|
+
}
|
|
402
407
|
export interface LoRaWANMulticast {
|
|
403
408
|
RfRegion?: SupportedRfRegion | undefined;
|
|
404
409
|
DlClass?: DlClass | undefined;
|
|
410
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
405
411
|
}
|
|
406
412
|
export interface CreateMulticastGroupRequest {
|
|
407
413
|
Name?: string | undefined;
|
|
@@ -801,6 +807,7 @@ export interface EventNotificationItemConfigurations {
|
|
|
801
807
|
}
|
|
802
808
|
export declare const IdentifierType: {
|
|
803
809
|
readonly DevEui: "DevEui";
|
|
810
|
+
readonly FuotaTaskId: "FuotaTaskId";
|
|
804
811
|
readonly GatewayEui: "GatewayEui";
|
|
805
812
|
readonly PartnerAccountId: "PartnerAccountId";
|
|
806
813
|
readonly WirelessDeviceId: "WirelessDeviceId";
|
|
@@ -820,6 +827,7 @@ export interface EventConfigurationItem {
|
|
|
820
827
|
Events?: EventNotificationItemConfigurations | undefined;
|
|
821
828
|
}
|
|
822
829
|
export declare const EventNotificationResourceType: {
|
|
830
|
+
readonly FuotaTask: "FuotaTask";
|
|
823
831
|
readonly SidewalkAccount: "SidewalkAccount";
|
|
824
832
|
readonly WirelessDevice: "WirelessDevice";
|
|
825
833
|
readonly WirelessGateway: "WirelessGateway";
|
|
@@ -847,6 +855,24 @@ export interface FuotaTask {
|
|
|
847
855
|
Arn?: string | undefined;
|
|
848
856
|
Name?: string | undefined;
|
|
849
857
|
}
|
|
858
|
+
export declare const FuotaTaskEvent: {
|
|
859
|
+
readonly Fuota: "Fuota";
|
|
860
|
+
};
|
|
861
|
+
export type FuotaTaskEvent =
|
|
862
|
+
(typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
|
|
863
|
+
export interface FuotaTaskEventLogOption {
|
|
864
|
+
Event: FuotaTaskEvent | undefined;
|
|
865
|
+
LogLevel: LogLevel | undefined;
|
|
866
|
+
}
|
|
867
|
+
export declare const FuotaTaskType: {
|
|
868
|
+
readonly LoRaWAN: "LoRaWAN";
|
|
869
|
+
};
|
|
870
|
+
export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
|
|
871
|
+
export interface FuotaTaskLogOption {
|
|
872
|
+
Type: FuotaTaskType | undefined;
|
|
873
|
+
LogLevel: LogLevel | undefined;
|
|
874
|
+
Events?: FuotaTaskEventLogOption[] | undefined;
|
|
875
|
+
}
|
|
850
876
|
export declare const FuotaTaskStatus: {
|
|
851
877
|
readonly Delete_Waiting: "Delete_Waiting";
|
|
852
878
|
readonly FuotaDone: "FuotaDone";
|
|
@@ -926,6 +952,7 @@ export interface GetFuotaTaskResponse {
|
|
|
926
952
|
RedundancyPercent?: number | undefined;
|
|
927
953
|
FragmentSizeBytes?: number | undefined;
|
|
928
954
|
FragmentIntervalMS?: number | undefined;
|
|
955
|
+
Descriptor?: string | undefined;
|
|
929
956
|
}
|
|
930
957
|
export interface GetLogLevelsByResourceTypesRequest {}
|
|
931
958
|
export declare const WirelessDeviceEvent: {
|
|
@@ -970,6 +997,7 @@ export interface GetLogLevelsByResourceTypesResponse {
|
|
|
970
997
|
DefaultLogLevel?: LogLevel | undefined;
|
|
971
998
|
WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
|
|
972
999
|
WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
|
|
1000
|
+
FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
|
|
973
1001
|
}
|
|
974
1002
|
export interface GetMetricConfigurationRequest {}
|
|
975
1003
|
export declare const SummaryMetricConfigurationStatus: {
|
|
@@ -1068,6 +1096,7 @@ export interface LoRaWANMulticastGet {
|
|
|
1068
1096
|
DlClass?: DlClass | undefined;
|
|
1069
1097
|
NumberOfDevicesRequested?: number | undefined;
|
|
1070
1098
|
NumberOfDevicesInGroup?: number | undefined;
|
|
1099
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
1071
1100
|
}
|
|
1072
1101
|
export interface GetMulticastGroupResponse {
|
|
1073
1102
|
Arn?: string | undefined;
|
|
@@ -1529,28 +1558,6 @@ export interface ListMulticastGroupsByFuotaTaskResponse {
|
|
|
1529
1558
|
NextToken?: string | undefined;
|
|
1530
1559
|
MulticastGroupList?: MulticastGroupByFuotaTask[] | undefined;
|
|
1531
1560
|
}
|
|
1532
|
-
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
1533
|
-
MaxResults?: number | undefined;
|
|
1534
|
-
NextToken?: string | undefined;
|
|
1535
|
-
}
|
|
1536
|
-
export interface NetworkAnalyzerConfigurations {
|
|
1537
|
-
Arn?: string | undefined;
|
|
1538
|
-
Name?: string | undefined;
|
|
1539
|
-
}
|
|
1540
|
-
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
1541
|
-
NextToken?: string | undefined;
|
|
1542
|
-
NetworkAnalyzerConfigurationList?:
|
|
1543
|
-
| NetworkAnalyzerConfigurations[]
|
|
1544
|
-
| undefined;
|
|
1545
|
-
}
|
|
1546
|
-
export interface ListPartnerAccountsRequest {
|
|
1547
|
-
NextToken?: string | undefined;
|
|
1548
|
-
MaxResults?: number | undefined;
|
|
1549
|
-
}
|
|
1550
|
-
export interface ListPartnerAccountsResponse {
|
|
1551
|
-
NextToken?: string | undefined;
|
|
1552
|
-
Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
|
|
1553
|
-
}
|
|
1554
1561
|
export declare const SidewalkAccountInfoFilterSensitiveLog: (
|
|
1555
1562
|
obj: SidewalkAccountInfo
|
|
1556
1563
|
) => any;
|
|
@@ -1572,6 +1579,3 @@ export declare const SidewalkAccountInfoWithFingerprintFilterSensitiveLog: (
|
|
|
1572
1579
|
export declare const GetPartnerAccountResponseFilterSensitiveLog: (
|
|
1573
1580
|
obj: GetPartnerAccountResponse
|
|
1574
1581
|
) => any;
|
|
1575
|
-
export declare const ListPartnerAccountsResponseFilterSensitiveLog: (
|
|
1576
|
-
obj: ListPartnerAccountsResponse
|
|
1577
|
-
) => any;
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
EventNotificationPartnerType,
|
|
12
12
|
ExpressionType,
|
|
13
13
|
FuotaDeviceStatus,
|
|
14
|
+
FuotaTaskLogOption,
|
|
14
15
|
IdentifierType,
|
|
15
16
|
ImportTaskStatus,
|
|
16
17
|
JoinEventConfiguration,
|
|
@@ -33,6 +34,7 @@ import {
|
|
|
33
34
|
PositionSolverDetails,
|
|
34
35
|
ProximityEventConfiguration,
|
|
35
36
|
ProximityResourceTypeEventConfiguration,
|
|
37
|
+
SidewalkAccountInfoWithFingerprint,
|
|
36
38
|
SidewalkGetStartImportInfo,
|
|
37
39
|
SummaryMetricConfiguration,
|
|
38
40
|
Tag,
|
|
@@ -42,6 +44,28 @@ import {
|
|
|
42
44
|
WirelessDeviceType,
|
|
43
45
|
WirelessGatewayLogOption,
|
|
44
46
|
} from "./models_0";
|
|
47
|
+
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
48
|
+
MaxResults?: number | undefined;
|
|
49
|
+
NextToken?: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface NetworkAnalyzerConfigurations {
|
|
52
|
+
Arn?: string | undefined;
|
|
53
|
+
Name?: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
56
|
+
NextToken?: string | undefined;
|
|
57
|
+
NetworkAnalyzerConfigurationList?:
|
|
58
|
+
| NetworkAnalyzerConfigurations[]
|
|
59
|
+
| undefined;
|
|
60
|
+
}
|
|
61
|
+
export interface ListPartnerAccountsRequest {
|
|
62
|
+
NextToken?: string | undefined;
|
|
63
|
+
MaxResults?: number | undefined;
|
|
64
|
+
}
|
|
65
|
+
export interface ListPartnerAccountsResponse {
|
|
66
|
+
NextToken?: string | undefined;
|
|
67
|
+
Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
|
|
68
|
+
}
|
|
45
69
|
export interface ListPositionConfigurationsRequest {
|
|
46
70
|
ResourceType?: PositionResourceType | undefined;
|
|
47
71
|
MaxResults?: number | undefined;
|
|
@@ -358,10 +382,12 @@ export interface UpdateFuotaTaskRequest {
|
|
|
358
382
|
RedundancyPercent?: number | undefined;
|
|
359
383
|
FragmentSizeBytes?: number | undefined;
|
|
360
384
|
FragmentIntervalMS?: number | undefined;
|
|
385
|
+
Descriptor?: string | undefined;
|
|
361
386
|
}
|
|
362
387
|
export interface UpdateFuotaTaskResponse {}
|
|
363
388
|
export interface UpdateLogLevelsByResourceTypesRequest {
|
|
364
389
|
DefaultLogLevel?: LogLevel | undefined;
|
|
390
|
+
FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
|
|
365
391
|
WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
|
|
366
392
|
WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
|
|
367
393
|
}
|
|
@@ -466,6 +492,9 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
466
492
|
MaxEirp?: number | undefined;
|
|
467
493
|
}
|
|
468
494
|
export interface UpdateWirelessGatewayResponse {}
|
|
495
|
+
export declare const ListPartnerAccountsResponseFilterSensitiveLog: (
|
|
496
|
+
obj: ListPartnerAccountsResponse
|
|
497
|
+
) => any;
|
|
469
498
|
export declare const SidewalkUpdateAccountFilterSensitiveLog: (
|
|
470
499
|
obj: SidewalkUpdateAccount
|
|
471
500
|
) => 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.693.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iot-wireless",
|
|
@@ -20,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.693.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.693.0",
|
|
25
|
+
"@aws-sdk/core": "3.693.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.693.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.693.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.693.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.693.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.693.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.693.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.693.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.693.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.693.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
60
|
-
"@smithy/util-stream": "^3.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
|
+
"@smithy/util-stream": "^3.3.0",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|
|
62
62
|
"@types/uuid": "^9.0.1",
|
|
63
63
|
"tslib": "^2.6.2",
|