@aws-sdk/client-iot-wireless 3.118.0 → 3.125.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 +30 -0
- package/dist-cjs/IoTWireless.js +75 -0
- package/dist-cjs/commands/GetPositionCommand.js +36 -0
- package/dist-cjs/commands/GetPositionConfigurationCommand.js +36 -0
- package/dist-cjs/commands/ListPositionConfigurationsCommand.js +36 -0
- package/dist-cjs/commands/PutPositionConfigurationCommand.js +36 -0
- package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +3 -3
- package/dist-cjs/commands/UpdatePartnerAccountCommand.js +3 -3
- package/dist-cjs/commands/UpdatePositionCommand.js +36 -0
- package/dist-cjs/commands/UpdateResourceEventConfigurationCommand.js +3 -3
- package/dist-cjs/commands/UpdateWirelessDeviceCommand.js +3 -3
- package/dist-cjs/commands/UpdateWirelessGatewayCommand.js +3 -3
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +119 -92
- package/dist-cjs/models/models_1.js +108 -0
- package/dist-cjs/pagination/ListPositionConfigurationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +999 -377
- package/dist-es/IoTWireless.js +75 -0
- package/dist-es/commands/GetPositionCommand.js +39 -0
- package/dist-es/commands/GetPositionConfigurationCommand.js +39 -0
- package/dist-es/commands/ListPositionConfigurationsCommand.js +39 -0
- package/dist-es/commands/PutPositionConfigurationCommand.js +39 -0
- package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +1 -1
- package/dist-es/commands/UpdatePartnerAccountCommand.js +1 -1
- package/dist-es/commands/UpdatePositionCommand.js +39 -0
- package/dist-es/commands/UpdateResourceEventConfigurationCommand.js +1 -1
- package/dist-es/commands/UpdateWirelessDeviceCommand.js +1 -1
- package/dist-es/commands/UpdateWirelessGatewayCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +83 -56
- package/dist-es/models/models_1.js +70 -0
- package/dist-es/pagination/ListPositionConfigurationsPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1139 -412
- package/dist-types/IoTWireless.d.ts +37 -2
- package/dist-types/IoTWirelessClient.d.ts +7 -2
- package/dist-types/commands/GetEventConfigurationByResourceTypesCommand.d.ts +1 -1
- package/dist-types/commands/GetPositionCommand.d.ts +35 -0
- package/dist-types/commands/GetPositionConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +35 -0
- package/dist-types/commands/PutPositionConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateEventConfigurationByResourceTypesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePartnerAccountCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePositionCommand.d.ts +35 -0
- package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWirelessDeviceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +338 -278
- package/dist-types/models/models_1.d.ts +313 -0
- package/dist-types/pagination/ListPositionConfigurationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +25 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/GetPositionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPositionConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPositionConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePartnerAccountCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePositionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWirelessDeviceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWirelessGatewayCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +193 -156
- package/dist-types/ts3.4/models/models_1.d.ts +186 -0
- package/dist-types/ts3.4/pagination/ListPositionConfigurationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +5 -5
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { ListPositionConfigurationsRequest, ListPositionConfigurationsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListPositionConfigurationsCommandInput extends ListPositionConfigurationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPositionConfigurationsCommandOutput extends ListPositionConfigurationsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPositionConfigurationsCommand extends $Command<ListPositionConfigurationsCommandInput, ListPositionConfigurationsCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPositionConfigurationsCommandInput;
|
|
12
|
+
constructor(input: ListPositionConfigurationsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPositionConfigurationsCommandInput, ListPositionConfigurationsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { PutPositionConfigurationRequest, PutPositionConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface PutPositionConfigurationCommandInput extends PutPositionConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutPositionConfigurationCommandOutput extends PutPositionConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutPositionConfigurationCommand extends $Command<PutPositionConfigurationCommandInput, PutPositionConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: PutPositionConfigurationCommandInput;
|
|
12
|
+
constructor(input: PutPositionConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPositionConfigurationCommandInput, PutPositionConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse } from "../models/
|
|
4
|
+
import { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateNetworkAnalyzerConfigurationCommandInput extends UpdateNetworkAnalyzerConfigurationRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateNetworkAnalyzerConfigurationCommandOutput extends UpdateNetworkAnalyzerConfigurationResponse, __MetadataBearer {
|
|
@@ -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 { UpdatePartnerAccountRequest, UpdatePartnerAccountResponse } from "../models/
|
|
4
|
+
import { UpdatePartnerAccountRequest, UpdatePartnerAccountResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdatePartnerAccountCommandInput extends UpdatePartnerAccountRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdatePartnerAccountCommandOutput extends UpdatePartnerAccountResponse, __MetadataBearer {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { UpdatePositionRequest, UpdatePositionResponse } from "../models/models_1";
|
|
5
|
+
export interface UpdatePositionCommandInput extends UpdatePositionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdatePositionCommandOutput extends UpdatePositionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdatePositionCommand extends $Command<UpdatePositionCommandInput, UpdatePositionCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdatePositionCommandInput;
|
|
12
|
+
constructor(input: UpdatePositionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePositionCommandInput, UpdatePositionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { UpdateResourceEventConfigurationRequest, UpdateResourceEventConfigurationResponse } from "../models/
|
|
4
|
+
import { UpdateResourceEventConfigurationRequest, UpdateResourceEventConfigurationResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateResourceEventConfigurationCommandInput extends UpdateResourceEventConfigurationRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateResourceEventConfigurationCommandOutput extends UpdateResourceEventConfigurationResponse, __MetadataBearer {
|
|
@@ -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 { UpdateWirelessDeviceRequest, UpdateWirelessDeviceResponse } from "../models/
|
|
4
|
+
import { UpdateWirelessDeviceRequest, UpdateWirelessDeviceResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateWirelessDeviceCommandInput extends UpdateWirelessDeviceRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateWirelessDeviceCommandOutput extends UpdateWirelessDeviceResponse, __MetadataBearer {
|
|
@@ -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 { UpdateWirelessGatewayRequest, UpdateWirelessGatewayResponse } from "../models/
|
|
4
|
+
import { UpdateWirelessGatewayRequest, UpdateWirelessGatewayResponse } from "../models/models_1";
|
|
5
5
|
export interface UpdateWirelessGatewayCommandInput extends UpdateWirelessGatewayRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateWirelessGatewayCommandOutput extends UpdateWirelessGatewayResponse, __MetadataBearer {
|
|
@@ -43,6 +43,8 @@ export * from "./GetMulticastGroupCommand";
|
|
|
43
43
|
export * from "./GetMulticastGroupSessionCommand";
|
|
44
44
|
export * from "./GetNetworkAnalyzerConfigurationCommand";
|
|
45
45
|
export * from "./GetPartnerAccountCommand";
|
|
46
|
+
export * from "./GetPositionCommand";
|
|
47
|
+
export * from "./GetPositionConfigurationCommand";
|
|
46
48
|
export * from "./GetResourceEventConfigurationCommand";
|
|
47
49
|
export * from "./GetResourceLogLevelCommand";
|
|
48
50
|
export * from "./GetServiceEndpointCommand";
|
|
@@ -63,12 +65,14 @@ export * from "./ListMulticastGroupsByFuotaTaskCommand";
|
|
|
63
65
|
export * from "./ListMulticastGroupsCommand";
|
|
64
66
|
export * from "./ListNetworkAnalyzerConfigurationsCommand";
|
|
65
67
|
export * from "./ListPartnerAccountsCommand";
|
|
68
|
+
export * from "./ListPositionConfigurationsCommand";
|
|
66
69
|
export * from "./ListQueuedMessagesCommand";
|
|
67
70
|
export * from "./ListServiceProfilesCommand";
|
|
68
71
|
export * from "./ListTagsForResourceCommand";
|
|
69
72
|
export * from "./ListWirelessDevicesCommand";
|
|
70
73
|
export * from "./ListWirelessGatewayTaskDefinitionsCommand";
|
|
71
74
|
export * from "./ListWirelessGatewaysCommand";
|
|
75
|
+
export * from "./PutPositionConfigurationCommand";
|
|
72
76
|
export * from "./PutResourceLogLevelCommand";
|
|
73
77
|
export * from "./ResetAllResourceLogLevelsCommand";
|
|
74
78
|
export * from "./ResetResourceLogLevelCommand";
|
|
@@ -88,6 +92,7 @@ export * from "./UpdateLogLevelsByResourceTypesCommand";
|
|
|
88
92
|
export * from "./UpdateMulticastGroupCommand";
|
|
89
93
|
export * from "./UpdateNetworkAnalyzerConfigurationCommand";
|
|
90
94
|
export * from "./UpdatePartnerAccountCommand";
|
|
95
|
+
export * from "./UpdatePositionCommand";
|
|
91
96
|
export * from "./UpdateResourceEventConfigurationCommand";
|
|
92
97
|
export * from "./UpdateWirelessDeviceCommand";
|
|
93
98
|
export * from "./UpdateWirelessGatewayCommand";
|
|
@@ -61,6 +61,17 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
61
61
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
export interface Accuracy {
|
|
65
|
+
|
|
66
|
+
HorizontalAccuracy?: number;
|
|
67
|
+
|
|
68
|
+
VerticalAccuracy?: number;
|
|
69
|
+
}
|
|
70
|
+
export declare namespace Accuracy {
|
|
71
|
+
|
|
72
|
+
const filterSensitiveLog: (obj: Accuracy) => any;
|
|
73
|
+
}
|
|
74
|
+
|
|
64
75
|
export interface SidewalkAccountInfo {
|
|
65
76
|
|
|
66
77
|
AmazonId?: string;
|
|
@@ -603,6 +614,19 @@ export declare namespace CreateServiceProfileResponse {
|
|
|
603
614
|
const filterSensitiveLog: (obj: CreateServiceProfileResponse) => any;
|
|
604
615
|
}
|
|
605
616
|
|
|
617
|
+
export interface Positioning {
|
|
618
|
+
|
|
619
|
+
ClockSync?: number;
|
|
620
|
+
|
|
621
|
+
Stream?: number;
|
|
622
|
+
|
|
623
|
+
Gnss?: number;
|
|
624
|
+
}
|
|
625
|
+
export declare namespace Positioning {
|
|
626
|
+
|
|
627
|
+
const filterSensitiveLog: (obj: Positioning) => any;
|
|
628
|
+
}
|
|
629
|
+
|
|
606
630
|
export interface FPorts {
|
|
607
631
|
|
|
608
632
|
Fuota?: number;
|
|
@@ -610,6 +634,8 @@ export interface FPorts {
|
|
|
610
634
|
Multicast?: number;
|
|
611
635
|
|
|
612
636
|
ClockSync?: number;
|
|
637
|
+
|
|
638
|
+
Positioning?: Positioning;
|
|
613
639
|
}
|
|
614
640
|
export declare namespace FPorts {
|
|
615
641
|
|
|
@@ -1670,6 +1696,96 @@ export declare namespace GetPartnerAccountResponse {
|
|
|
1670
1696
|
|
|
1671
1697
|
const filterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
|
|
1672
1698
|
}
|
|
1699
|
+
export declare enum PositionResourceType {
|
|
1700
|
+
WirelessDevice = "WirelessDevice",
|
|
1701
|
+
WirelessGateway = "WirelessGateway"
|
|
1702
|
+
}
|
|
1703
|
+
export interface GetPositionRequest {
|
|
1704
|
+
|
|
1705
|
+
ResourceIdentifier: string | undefined;
|
|
1706
|
+
|
|
1707
|
+
ResourceType: PositionResourceType | string | undefined;
|
|
1708
|
+
}
|
|
1709
|
+
export declare namespace GetPositionRequest {
|
|
1710
|
+
|
|
1711
|
+
const filterSensitiveLog: (obj: GetPositionRequest) => any;
|
|
1712
|
+
}
|
|
1713
|
+
export declare enum PositionSolverProvider {
|
|
1714
|
+
SEMTECH = "Semtech"
|
|
1715
|
+
}
|
|
1716
|
+
export declare enum PositionSolverType {
|
|
1717
|
+
GNSS = "GNSS"
|
|
1718
|
+
}
|
|
1719
|
+
export interface GetPositionResponse {
|
|
1720
|
+
|
|
1721
|
+
Position?: number[];
|
|
1722
|
+
|
|
1723
|
+
Accuracy?: Accuracy;
|
|
1724
|
+
|
|
1725
|
+
SolverType?: PositionSolverType | string;
|
|
1726
|
+
|
|
1727
|
+
SolverProvider?: PositionSolverProvider | string;
|
|
1728
|
+
|
|
1729
|
+
SolverVersion?: string;
|
|
1730
|
+
|
|
1731
|
+
Timestamp?: string;
|
|
1732
|
+
}
|
|
1733
|
+
export declare namespace GetPositionResponse {
|
|
1734
|
+
|
|
1735
|
+
const filterSensitiveLog: (obj: GetPositionResponse) => any;
|
|
1736
|
+
}
|
|
1737
|
+
export interface GetPositionConfigurationRequest {
|
|
1738
|
+
|
|
1739
|
+
ResourceIdentifier: string | undefined;
|
|
1740
|
+
|
|
1741
|
+
ResourceType: PositionResourceType | string | undefined;
|
|
1742
|
+
}
|
|
1743
|
+
export declare namespace GetPositionConfigurationRequest {
|
|
1744
|
+
|
|
1745
|
+
const filterSensitiveLog: (obj: GetPositionConfigurationRequest) => any;
|
|
1746
|
+
}
|
|
1747
|
+
export declare enum PositionConfigurationFec {
|
|
1748
|
+
NONE = "NONE",
|
|
1749
|
+
ROSE = "ROSE"
|
|
1750
|
+
}
|
|
1751
|
+
export declare enum PositionConfigurationStatus {
|
|
1752
|
+
Disabled = "Disabled",
|
|
1753
|
+
Enabled = "Enabled"
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
export interface SemtechGnssDetail {
|
|
1757
|
+
|
|
1758
|
+
Provider?: PositionSolverProvider | string;
|
|
1759
|
+
|
|
1760
|
+
Type?: PositionSolverType | string;
|
|
1761
|
+
|
|
1762
|
+
Status?: PositionConfigurationStatus | string;
|
|
1763
|
+
|
|
1764
|
+
Fec?: PositionConfigurationFec | string;
|
|
1765
|
+
}
|
|
1766
|
+
export declare namespace SemtechGnssDetail {
|
|
1767
|
+
|
|
1768
|
+
const filterSensitiveLog: (obj: SemtechGnssDetail) => any;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
export interface PositionSolverDetails {
|
|
1772
|
+
|
|
1773
|
+
SemtechGnss?: SemtechGnssDetail;
|
|
1774
|
+
}
|
|
1775
|
+
export declare namespace PositionSolverDetails {
|
|
1776
|
+
|
|
1777
|
+
const filterSensitiveLog: (obj: PositionSolverDetails) => any;
|
|
1778
|
+
}
|
|
1779
|
+
export interface GetPositionConfigurationResponse {
|
|
1780
|
+
|
|
1781
|
+
Solvers?: PositionSolverDetails;
|
|
1782
|
+
|
|
1783
|
+
Destination?: string;
|
|
1784
|
+
}
|
|
1785
|
+
export declare namespace GetPositionConfigurationResponse {
|
|
1786
|
+
|
|
1787
|
+
const filterSensitiveLog: (obj: GetPositionConfigurationResponse) => any;
|
|
1788
|
+
}
|
|
1673
1789
|
export interface GetResourceEventConfigurationRequest {
|
|
1674
1790
|
|
|
1675
1791
|
Identifier: string | undefined;
|
|
@@ -2272,6 +2388,43 @@ export declare namespace ListPartnerAccountsResponse {
|
|
|
2272
2388
|
|
|
2273
2389
|
const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
2274
2390
|
}
|
|
2391
|
+
export interface ListPositionConfigurationsRequest {
|
|
2392
|
+
|
|
2393
|
+
ResourceType?: PositionResourceType | string;
|
|
2394
|
+
|
|
2395
|
+
MaxResults?: number;
|
|
2396
|
+
|
|
2397
|
+
NextToken?: string;
|
|
2398
|
+
}
|
|
2399
|
+
export declare namespace ListPositionConfigurationsRequest {
|
|
2400
|
+
|
|
2401
|
+
const filterSensitiveLog: (obj: ListPositionConfigurationsRequest) => any;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
export interface PositionConfigurationItem {
|
|
2405
|
+
|
|
2406
|
+
ResourceIdentifier?: string;
|
|
2407
|
+
|
|
2408
|
+
ResourceType?: PositionResourceType | string;
|
|
2409
|
+
|
|
2410
|
+
Solvers?: PositionSolverDetails;
|
|
2411
|
+
|
|
2412
|
+
Destination?: string;
|
|
2413
|
+
}
|
|
2414
|
+
export declare namespace PositionConfigurationItem {
|
|
2415
|
+
|
|
2416
|
+
const filterSensitiveLog: (obj: PositionConfigurationItem) => any;
|
|
2417
|
+
}
|
|
2418
|
+
export interface ListPositionConfigurationsResponse {
|
|
2419
|
+
|
|
2420
|
+
PositionConfigurationList?: PositionConfigurationItem[];
|
|
2421
|
+
|
|
2422
|
+
NextToken?: string;
|
|
2423
|
+
}
|
|
2424
|
+
export declare namespace ListPositionConfigurationsResponse {
|
|
2425
|
+
|
|
2426
|
+
const filterSensitiveLog: (obj: ListPositionConfigurationsResponse) => any;
|
|
2427
|
+
}
|
|
2275
2428
|
export interface ListQueuedMessagesRequest {
|
|
2276
2429
|
|
|
2277
2430
|
Id: string | undefined;
|
|
@@ -2518,6 +2671,46 @@ export declare namespace ListWirelessGatewayTaskDefinitionsResponse {
|
|
|
2518
2671
|
|
|
2519
2672
|
const filterSensitiveLog: (obj: ListWirelessGatewayTaskDefinitionsResponse) => any;
|
|
2520
2673
|
}
|
|
2674
|
+
|
|
2675
|
+
export interface SemtechGnssConfiguration {
|
|
2676
|
+
|
|
2677
|
+
Status: PositionConfigurationStatus | string | undefined;
|
|
2678
|
+
|
|
2679
|
+
Fec: PositionConfigurationFec | string | undefined;
|
|
2680
|
+
}
|
|
2681
|
+
export declare namespace SemtechGnssConfiguration {
|
|
2682
|
+
|
|
2683
|
+
const filterSensitiveLog: (obj: SemtechGnssConfiguration) => any;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
export interface PositionSolverConfigurations {
|
|
2687
|
+
|
|
2688
|
+
SemtechGnss?: SemtechGnssConfiguration;
|
|
2689
|
+
}
|
|
2690
|
+
export declare namespace PositionSolverConfigurations {
|
|
2691
|
+
|
|
2692
|
+
const filterSensitiveLog: (obj: PositionSolverConfigurations) => any;
|
|
2693
|
+
}
|
|
2694
|
+
export interface PutPositionConfigurationRequest {
|
|
2695
|
+
|
|
2696
|
+
ResourceIdentifier: string | undefined;
|
|
2697
|
+
|
|
2698
|
+
ResourceType: PositionResourceType | string | undefined;
|
|
2699
|
+
|
|
2700
|
+
Solvers?: PositionSolverConfigurations;
|
|
2701
|
+
|
|
2702
|
+
Destination?: string;
|
|
2703
|
+
}
|
|
2704
|
+
export declare namespace PutPositionConfigurationRequest {
|
|
2705
|
+
|
|
2706
|
+
const filterSensitiveLog: (obj: PutPositionConfigurationRequest) => any;
|
|
2707
|
+
}
|
|
2708
|
+
export interface PutPositionConfigurationResponse {
|
|
2709
|
+
}
|
|
2710
|
+
export declare namespace PutPositionConfigurationResponse {
|
|
2711
|
+
|
|
2712
|
+
const filterSensitiveLog: (obj: PutPositionConfigurationResponse) => any;
|
|
2713
|
+
}
|
|
2521
2714
|
export interface PutResourceLogLevelRequest {
|
|
2522
2715
|
|
|
2523
2716
|
ResourceIdentifier: string | undefined;
|
|
@@ -2891,159 +3084,3 @@ export declare namespace UpdateMulticastGroupResponse {
|
|
|
2891
3084
|
|
|
2892
3085
|
const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
2893
3086
|
}
|
|
2894
|
-
export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
2895
|
-
|
|
2896
|
-
ConfigurationName: string | undefined;
|
|
2897
|
-
|
|
2898
|
-
TraceContent?: TraceContent;
|
|
2899
|
-
|
|
2900
|
-
WirelessDevicesToAdd?: string[];
|
|
2901
|
-
|
|
2902
|
-
WirelessDevicesToRemove?: string[];
|
|
2903
|
-
|
|
2904
|
-
WirelessGatewaysToAdd?: string[];
|
|
2905
|
-
|
|
2906
|
-
WirelessGatewaysToRemove?: string[];
|
|
2907
|
-
|
|
2908
|
-
Description?: string;
|
|
2909
|
-
}
|
|
2910
|
-
export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
|
|
2911
|
-
|
|
2912
|
-
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
|
|
2913
|
-
}
|
|
2914
|
-
export interface UpdateNetworkAnalyzerConfigurationResponse {
|
|
2915
|
-
}
|
|
2916
|
-
export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
|
|
2917
|
-
|
|
2918
|
-
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
|
|
2919
|
-
}
|
|
2920
|
-
|
|
2921
|
-
export interface SidewalkUpdateAccount {
|
|
2922
|
-
|
|
2923
|
-
AppServerPrivateKey?: string;
|
|
2924
|
-
}
|
|
2925
|
-
export declare namespace SidewalkUpdateAccount {
|
|
2926
|
-
|
|
2927
|
-
const filterSensitiveLog: (obj: SidewalkUpdateAccount) => any;
|
|
2928
|
-
}
|
|
2929
|
-
export interface UpdatePartnerAccountRequest {
|
|
2930
|
-
|
|
2931
|
-
Sidewalk: SidewalkUpdateAccount | undefined;
|
|
2932
|
-
|
|
2933
|
-
PartnerAccountId: string | undefined;
|
|
2934
|
-
|
|
2935
|
-
PartnerType: PartnerType | string | undefined;
|
|
2936
|
-
}
|
|
2937
|
-
export declare namespace UpdatePartnerAccountRequest {
|
|
2938
|
-
|
|
2939
|
-
const filterSensitiveLog: (obj: UpdatePartnerAccountRequest) => any;
|
|
2940
|
-
}
|
|
2941
|
-
export interface UpdatePartnerAccountResponse {
|
|
2942
|
-
}
|
|
2943
|
-
export declare namespace UpdatePartnerAccountResponse {
|
|
2944
|
-
|
|
2945
|
-
const filterSensitiveLog: (obj: UpdatePartnerAccountResponse) => any;
|
|
2946
|
-
}
|
|
2947
|
-
export interface UpdateResourceEventConfigurationRequest {
|
|
2948
|
-
|
|
2949
|
-
Identifier: string | undefined;
|
|
2950
|
-
|
|
2951
|
-
IdentifierType: IdentifierType | string | undefined;
|
|
2952
|
-
|
|
2953
|
-
PartnerType?: EventNotificationPartnerType | string;
|
|
2954
|
-
|
|
2955
|
-
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
2956
|
-
|
|
2957
|
-
Proximity?: ProximityEventConfiguration;
|
|
2958
|
-
|
|
2959
|
-
Join?: JoinEventConfiguration;
|
|
2960
|
-
|
|
2961
|
-
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
2962
|
-
}
|
|
2963
|
-
export declare namespace UpdateResourceEventConfigurationRequest {
|
|
2964
|
-
|
|
2965
|
-
const filterSensitiveLog: (obj: UpdateResourceEventConfigurationRequest) => any;
|
|
2966
|
-
}
|
|
2967
|
-
export interface UpdateResourceEventConfigurationResponse {
|
|
2968
|
-
}
|
|
2969
|
-
export declare namespace UpdateResourceEventConfigurationResponse {
|
|
2970
|
-
|
|
2971
|
-
const filterSensitiveLog: (obj: UpdateResourceEventConfigurationResponse) => any;
|
|
2972
|
-
}
|
|
2973
|
-
|
|
2974
|
-
export interface UpdateAbpV1_0_x {
|
|
2975
|
-
|
|
2976
|
-
FCntStart?: number;
|
|
2977
|
-
}
|
|
2978
|
-
export declare namespace UpdateAbpV1_0_x {
|
|
2979
|
-
|
|
2980
|
-
const filterSensitiveLog: (obj: UpdateAbpV1_0_x) => any;
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
|
-
export interface UpdateAbpV1_1 {
|
|
2984
|
-
|
|
2985
|
-
FCntStart?: number;
|
|
2986
|
-
}
|
|
2987
|
-
export declare namespace UpdateAbpV1_1 {
|
|
2988
|
-
|
|
2989
|
-
const filterSensitiveLog: (obj: UpdateAbpV1_1) => any;
|
|
2990
|
-
}
|
|
2991
|
-
|
|
2992
|
-
export interface LoRaWANUpdateDevice {
|
|
2993
|
-
|
|
2994
|
-
DeviceProfileId?: string;
|
|
2995
|
-
|
|
2996
|
-
ServiceProfileId?: string;
|
|
2997
|
-
|
|
2998
|
-
AbpV1_1?: UpdateAbpV1_1;
|
|
2999
|
-
|
|
3000
|
-
AbpV1_0_x?: UpdateAbpV1_0_x;
|
|
3001
|
-
}
|
|
3002
|
-
export declare namespace LoRaWANUpdateDevice {
|
|
3003
|
-
|
|
3004
|
-
const filterSensitiveLog: (obj: LoRaWANUpdateDevice) => any;
|
|
3005
|
-
}
|
|
3006
|
-
export interface UpdateWirelessDeviceRequest {
|
|
3007
|
-
|
|
3008
|
-
Id: string | undefined;
|
|
3009
|
-
|
|
3010
|
-
DestinationName?: string;
|
|
3011
|
-
|
|
3012
|
-
Name?: string;
|
|
3013
|
-
|
|
3014
|
-
Description?: string;
|
|
3015
|
-
|
|
3016
|
-
LoRaWAN?: LoRaWANUpdateDevice;
|
|
3017
|
-
}
|
|
3018
|
-
export declare namespace UpdateWirelessDeviceRequest {
|
|
3019
|
-
|
|
3020
|
-
const filterSensitiveLog: (obj: UpdateWirelessDeviceRequest) => any;
|
|
3021
|
-
}
|
|
3022
|
-
export interface UpdateWirelessDeviceResponse {
|
|
3023
|
-
}
|
|
3024
|
-
export declare namespace UpdateWirelessDeviceResponse {
|
|
3025
|
-
|
|
3026
|
-
const filterSensitiveLog: (obj: UpdateWirelessDeviceResponse) => any;
|
|
3027
|
-
}
|
|
3028
|
-
export interface UpdateWirelessGatewayRequest {
|
|
3029
|
-
|
|
3030
|
-
Id: string | undefined;
|
|
3031
|
-
|
|
3032
|
-
Name?: string;
|
|
3033
|
-
|
|
3034
|
-
Description?: string;
|
|
3035
|
-
|
|
3036
|
-
JoinEuiFilters?: string[][];
|
|
3037
|
-
|
|
3038
|
-
NetIdFilters?: string[];
|
|
3039
|
-
}
|
|
3040
|
-
export declare namespace UpdateWirelessGatewayRequest {
|
|
3041
|
-
|
|
3042
|
-
const filterSensitiveLog: (obj: UpdateWirelessGatewayRequest) => any;
|
|
3043
|
-
}
|
|
3044
|
-
export interface UpdateWirelessGatewayResponse {
|
|
3045
|
-
}
|
|
3046
|
-
export declare namespace UpdateWirelessGatewayResponse {
|
|
3047
|
-
|
|
3048
|
-
const filterSensitiveLog: (obj: UpdateWirelessGatewayResponse) => any;
|
|
3049
|
-
}
|