@aws-sdk/client-iot-wireless 3.312.0 → 3.316.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/IoTWireless.js +113 -1526
- package/dist-cjs/protocols/Aws_restJson1.js +1032 -2922
- package/dist-es/IoTWireless.js +113 -1526
- package/dist-es/protocols/Aws_restJson1.js +879 -2769
- package/dist-types/IoTWireless.d.ts +126 -277
- package/dist-types/commands/CreateServiceProfileCommand.d.ts +2 -0
- package/dist-types/commands/CreateWirelessGatewayCommand.d.ts +1 -0
- package/dist-types/commands/StartMulticastGroupSessionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/models/models_1.d.ts +4 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +4 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +6 -6
|
@@ -32,6 +32,8 @@ export interface CreateServiceProfileCommandOutput extends CreateServiceProfileR
|
|
|
32
32
|
* AddGwMetadata: true || false,
|
|
33
33
|
* DrMin: Number("int"),
|
|
34
34
|
* DrMax: Number("int"),
|
|
35
|
+
* PrAllowed: true || false,
|
|
36
|
+
* RaAllowed: true || false,
|
|
35
37
|
* },
|
|
36
38
|
* Tags: [ // TagList
|
|
37
39
|
* { // Tag
|
|
@@ -33,6 +33,7 @@ export interface StartMulticastGroupSessionCommandOutput extends StartMulticastG
|
|
|
33
33
|
* DlFreq: Number("int"),
|
|
34
34
|
* SessionStartTime: new Date("TIMESTAMP"),
|
|
35
35
|
* SessionTimeout: Number("int"),
|
|
36
|
+
* PingSlotPeriod: Number("int"),
|
|
36
37
|
* },
|
|
37
38
|
* };
|
|
38
39
|
* const command = new StartMulticastGroupSessionCommand(input);
|
|
@@ -38,6 +38,7 @@ export interface UpdateWirelessGatewayCommandOutput extends UpdateWirelessGatewa
|
|
|
38
38
|
* NetIdFilters: [ // NetIdFilters
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
+
* MaxEirp: Number("float"),
|
|
41
42
|
* };
|
|
42
43
|
* const command = new UpdateWirelessGatewayCommand(input);
|
|
43
44
|
* const response = await client.send(command);
|
|
@@ -1413,6 +1413,14 @@ export interface LoRaWANServiceProfile {
|
|
|
1413
1413
|
* <p>The DrMax value.</p>
|
|
1414
1414
|
*/
|
|
1415
1415
|
DrMax?: number;
|
|
1416
|
+
/**
|
|
1417
|
+
* <p>The PRAllowed value that describes whether passive roaming is allowed.</p>
|
|
1418
|
+
*/
|
|
1419
|
+
PrAllowed?: boolean;
|
|
1420
|
+
/**
|
|
1421
|
+
* <p>The RAAllowed value that describes whether roaming activation is allowed.</p>
|
|
1422
|
+
*/
|
|
1423
|
+
RaAllowed?: boolean;
|
|
1416
1424
|
}
|
|
1417
1425
|
/**
|
|
1418
1426
|
* @public
|
|
@@ -1683,6 +1691,10 @@ export interface LoRaWANGateway {
|
|
|
1683
1691
|
* <p>Beaconing object information, which consists of the data rate and frequency parameters.</p>
|
|
1684
1692
|
*/
|
|
1685
1693
|
Beaconing?: Beaconing;
|
|
1694
|
+
/**
|
|
1695
|
+
* <p>The MaxEIRP value.</p>
|
|
1696
|
+
*/
|
|
1697
|
+
MaxEirp?: number;
|
|
1686
1698
|
}
|
|
1687
1699
|
/**
|
|
1688
1700
|
* @public
|
|
@@ -3101,6 +3113,10 @@ export interface LoRaWANMulticastSession {
|
|
|
3101
3113
|
* <p>How long before a multicast group session is to timeout.</p>
|
|
3102
3114
|
*/
|
|
3103
3115
|
SessionTimeout?: number;
|
|
3116
|
+
/**
|
|
3117
|
+
* <p>The PingSlotPeriod value.</p>
|
|
3118
|
+
*/
|
|
3119
|
+
PingSlotPeriod?: number;
|
|
3104
3120
|
}
|
|
3105
3121
|
/**
|
|
3106
3122
|
* @public
|
|
@@ -1148,6 +1148,10 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
1148
1148
|
* <p>A list of NetId values that are used by LoRa gateways to filter the uplink frames.</p>
|
|
1149
1149
|
*/
|
|
1150
1150
|
NetIdFilters?: string[];
|
|
1151
|
+
/**
|
|
1152
|
+
* <p>The MaxEIRP value.</p>
|
|
1153
|
+
*/
|
|
1154
|
+
MaxEirp?: number;
|
|
1151
1155
|
}
|
|
1152
1156
|
/**
|
|
1153
1157
|
* @public
|
|
@@ -436,7 +436,7 @@ import {
|
|
|
436
436
|
UpdateWirelessGatewayCommandOutput,
|
|
437
437
|
} from "./commands/UpdateWirelessGatewayCommand";
|
|
438
438
|
import { IoTWirelessClient } from "./IoTWirelessClient";
|
|
439
|
-
export
|
|
439
|
+
export interface IoTWireless {
|
|
440
440
|
associateAwsAccountWithPartnerAccount(
|
|
441
441
|
args: AssociateAwsAccountWithPartnerAccountCommandInput,
|
|
442
442
|
options?: __HttpHandlerOptions
|
|
@@ -2017,3 +2017,6 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
2017
2017
|
cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void
|
|
2018
2018
|
): void;
|
|
2019
2019
|
}
|
|
2020
|
+
export declare class IoTWireless
|
|
2021
|
+
extends IoTWirelessClient
|
|
2022
|
+
implements IoTWireless {}
|
|
@@ -440,6 +440,8 @@ export interface LoRaWANServiceProfile {
|
|
|
440
440
|
AddGwMetadata?: boolean;
|
|
441
441
|
DrMin?: number;
|
|
442
442
|
DrMax?: number;
|
|
443
|
+
PrAllowed?: boolean;
|
|
444
|
+
RaAllowed?: boolean;
|
|
443
445
|
}
|
|
444
446
|
export interface CreateServiceProfileRequest {
|
|
445
447
|
Name?: string;
|
|
@@ -520,6 +522,7 @@ export interface LoRaWANGateway {
|
|
|
520
522
|
NetIdFilters?: string[];
|
|
521
523
|
SubBands?: number[];
|
|
522
524
|
Beaconing?: Beaconing;
|
|
525
|
+
MaxEirp?: number;
|
|
523
526
|
}
|
|
524
527
|
export interface CreateWirelessGatewayRequest {
|
|
525
528
|
Name?: string;
|
|
@@ -962,6 +965,7 @@ export interface LoRaWANMulticastSession {
|
|
|
962
965
|
DlFreq?: number;
|
|
963
966
|
SessionStartTime?: Date;
|
|
964
967
|
SessionTimeout?: number;
|
|
968
|
+
PingSlotPeriod?: number;
|
|
965
969
|
}
|
|
966
970
|
export interface GetMulticastGroupSessionResponse {
|
|
967
971
|
LoRaWAN?: LoRaWANMulticastSession;
|
|
@@ -360,6 +360,7 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
360
360
|
Description?: string;
|
|
361
361
|
JoinEuiFilters?: string[][];
|
|
362
362
|
NetIdFilters?: string[];
|
|
363
|
+
MaxEirp?: number;
|
|
363
364
|
}
|
|
364
365
|
export interface UpdateWirelessGatewayResponse {}
|
|
365
366
|
export declare const SidewalkUpdateAccountFilterSensitiveLog: (
|
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.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|