@aws-sdk/client-iot-wireless 3.540.0 → 3.545.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/README.md +27 -0
- package/dist-cjs/index.js +256 -0
- package/dist-es/IoTWireless.js +6 -0
- package/dist-es/commands/GetMetricConfigurationCommand.js +24 -0
- package/dist-es/commands/GetMetricsCommand.js +24 -0
- package/dist-es/commands/UpdateMetricConfigurationCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +49 -0
- package/dist-es/protocols/Aws_restJson1.js +141 -0
- package/dist-types/IoTWireless.d.ts +27 -0
- package/dist-types/IoTWirelessClient.d.ts +8 -2
- package/dist-types/commands/GetMetricConfigurationCommand.d.ts +77 -0
- package/dist-types/commands/GetMetricsCommand.d.ts +121 -0
- package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMetricConfigurationCommand.d.ts +77 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +287 -321
- package/dist-types/models/models_1.d.ts +335 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +54 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetMetricConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMetricsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListServiceProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessDevicesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateMetricConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +103 -73
- package/dist-types/ts3.4/models/models_1.d.ts +82 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +1 -1
|
@@ -118,6 +118,19 @@ export interface Accuracy {
|
|
|
118
118
|
*/
|
|
119
119
|
VerticalAccuracy?: number;
|
|
120
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
* @enum
|
|
124
|
+
*/
|
|
125
|
+
export declare const AggregationPeriod: {
|
|
126
|
+
readonly OneDay: "OneDay";
|
|
127
|
+
readonly OneHour: "OneHour";
|
|
128
|
+
readonly OneWeek: "OneWeek";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type AggregationPeriod = (typeof AggregationPeriod)[keyof typeof AggregationPeriod];
|
|
121
134
|
/**
|
|
122
135
|
* @public
|
|
123
136
|
* @enum
|
|
@@ -1823,12 +1836,13 @@ export interface OtaaV1_0_x {
|
|
|
1823
1836
|
*/
|
|
1824
1837
|
AppKey?: string;
|
|
1825
1838
|
/**
|
|
1826
|
-
* <p>The AppEUI value.</p>
|
|
1839
|
+
* <p>The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.</p>
|
|
1827
1840
|
* @public
|
|
1828
1841
|
*/
|
|
1829
1842
|
AppEui?: string;
|
|
1830
1843
|
/**
|
|
1831
|
-
* <p>The JoinEUI value
|
|
1844
|
+
* <p>The JoinEUI value. You specify this value instead of the AppEUI when using LoRaWAN
|
|
1845
|
+
* version v1.0.4.</p>
|
|
1832
1846
|
* @public
|
|
1833
1847
|
*/
|
|
1834
1848
|
JoinEui?: string;
|
|
@@ -2653,6 +2667,34 @@ export declare const DeviceState: {
|
|
|
2653
2667
|
* @public
|
|
2654
2668
|
*/
|
|
2655
2669
|
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
2670
|
+
/**
|
|
2671
|
+
* @public
|
|
2672
|
+
* @enum
|
|
2673
|
+
*/
|
|
2674
|
+
export declare const DimensionName: {
|
|
2675
|
+
readonly DeviceId: "DeviceId";
|
|
2676
|
+
readonly GatewayId: "GatewayId";
|
|
2677
|
+
};
|
|
2678
|
+
/**
|
|
2679
|
+
* @public
|
|
2680
|
+
*/
|
|
2681
|
+
export type DimensionName = (typeof DimensionName)[keyof typeof DimensionName];
|
|
2682
|
+
/**
|
|
2683
|
+
* <p>The required list of dimensions for the metric.</p>
|
|
2684
|
+
* @public
|
|
2685
|
+
*/
|
|
2686
|
+
export interface Dimension {
|
|
2687
|
+
/**
|
|
2688
|
+
* <p>The name of the dimension.</p>
|
|
2689
|
+
* @public
|
|
2690
|
+
*/
|
|
2691
|
+
name?: DimensionName;
|
|
2692
|
+
/**
|
|
2693
|
+
* <p>The dimension's value.</p>
|
|
2694
|
+
* @public
|
|
2695
|
+
*/
|
|
2696
|
+
value?: string;
|
|
2697
|
+
}
|
|
2656
2698
|
/**
|
|
2657
2699
|
* @public
|
|
2658
2700
|
* @enum
|
|
@@ -3577,6 +3619,249 @@ export interface GetLogLevelsByResourceTypesResponse {
|
|
|
3577
3619
|
*/
|
|
3578
3620
|
WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
|
|
3579
3621
|
}
|
|
3622
|
+
/**
|
|
3623
|
+
* @public
|
|
3624
|
+
*/
|
|
3625
|
+
export interface GetMetricConfigurationRequest {
|
|
3626
|
+
}
|
|
3627
|
+
/**
|
|
3628
|
+
* @public
|
|
3629
|
+
* @enum
|
|
3630
|
+
*/
|
|
3631
|
+
export declare const SummaryMetricConfigurationStatus: {
|
|
3632
|
+
readonly Disabled: "Disabled";
|
|
3633
|
+
readonly Enabled: "Enabled";
|
|
3634
|
+
};
|
|
3635
|
+
/**
|
|
3636
|
+
* @public
|
|
3637
|
+
*/
|
|
3638
|
+
export type SummaryMetricConfigurationStatus = (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
|
|
3639
|
+
/**
|
|
3640
|
+
* <p>The configuration of summary metric.</p>
|
|
3641
|
+
* @public
|
|
3642
|
+
*/
|
|
3643
|
+
export interface SummaryMetricConfiguration {
|
|
3644
|
+
/**
|
|
3645
|
+
* <p>The configuration of summary metric.</p>
|
|
3646
|
+
* @public
|
|
3647
|
+
*/
|
|
3648
|
+
Status?: SummaryMetricConfigurationStatus;
|
|
3649
|
+
}
|
|
3650
|
+
/**
|
|
3651
|
+
* @public
|
|
3652
|
+
*/
|
|
3653
|
+
export interface GetMetricConfigurationResponse {
|
|
3654
|
+
/**
|
|
3655
|
+
* <p>The account's configuration status for summary metric aggregation.</p>
|
|
3656
|
+
* @public
|
|
3657
|
+
*/
|
|
3658
|
+
SummaryMetric?: SummaryMetricConfiguration;
|
|
3659
|
+
}
|
|
3660
|
+
/**
|
|
3661
|
+
* @public
|
|
3662
|
+
* @enum
|
|
3663
|
+
*/
|
|
3664
|
+
export declare const MetricName: {
|
|
3665
|
+
readonly AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount";
|
|
3666
|
+
readonly AwsAccountActiveGatewayCount: "AwsAccountActiveGatewayCount";
|
|
3667
|
+
readonly AwsAccountDeviceCount: "AwsAccountDeviceCount";
|
|
3668
|
+
readonly AwsAccountDownlinkCount: "AwsAccountDownlinkCount";
|
|
3669
|
+
readonly AwsAccountGatewayCount: "AwsAccountGatewayCount";
|
|
3670
|
+
readonly AwsAccountJoinAcceptCount: "AwsAccountJoinAcceptCount";
|
|
3671
|
+
readonly AwsAccountJoinRequestCount: "AwsAccountJoinRequestCount";
|
|
3672
|
+
readonly AwsAccountRoamingDownlinkCount: "AwsAccountRoamingDownlinkCount";
|
|
3673
|
+
readonly AwsAccountRoamingUplinkCount: "AwsAccountRoamingUplinkCount";
|
|
3674
|
+
readonly AwsAccountUplinkCount: "AwsAccountUplinkCount";
|
|
3675
|
+
readonly AwsAccountUplinkLostCount: "AwsAccountUplinkLostCount";
|
|
3676
|
+
readonly AwsAccountUplinkLostRate: "AwsAccountUplinkLostRate";
|
|
3677
|
+
readonly DeviceDownlinkCount: "DeviceDownlinkCount";
|
|
3678
|
+
readonly DeviceJoinAcceptCount: "DeviceJoinAcceptCount";
|
|
3679
|
+
readonly DeviceJoinRequestCount: "DeviceJoinRequestCount";
|
|
3680
|
+
readonly DeviceRSSI: "DeviceRSSI";
|
|
3681
|
+
readonly DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount";
|
|
3682
|
+
readonly DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount";
|
|
3683
|
+
readonly DeviceSNR: "DeviceSNR";
|
|
3684
|
+
readonly DeviceUplinkCount: "DeviceUplinkCount";
|
|
3685
|
+
readonly DeviceUplinkLostCount: "DeviceUplinkLostCount";
|
|
3686
|
+
readonly DeviceUplinkLostRate: "DeviceUplinkLostRate";
|
|
3687
|
+
readonly GatewayDownTime: "GatewayDownTime";
|
|
3688
|
+
readonly GatewayDownlinkCount: "GatewayDownlinkCount";
|
|
3689
|
+
readonly GatewayJoinAcceptCount: "GatewayJoinAcceptCount";
|
|
3690
|
+
readonly GatewayJoinRequestCount: "GatewayJoinRequestCount";
|
|
3691
|
+
readonly GatewayRSSI: "GatewayRSSI";
|
|
3692
|
+
readonly GatewaySNR: "GatewaySNR";
|
|
3693
|
+
readonly GatewayUpTime: "GatewayUpTime";
|
|
3694
|
+
readonly GatewayUplinkCount: "GatewayUplinkCount";
|
|
3695
|
+
};
|
|
3696
|
+
/**
|
|
3697
|
+
* @public
|
|
3698
|
+
*/
|
|
3699
|
+
export type MetricName = (typeof MetricName)[keyof typeof MetricName];
|
|
3700
|
+
/**
|
|
3701
|
+
* <p>The metric query object.</p>
|
|
3702
|
+
* @public
|
|
3703
|
+
*/
|
|
3704
|
+
export interface SummaryMetricQuery {
|
|
3705
|
+
/**
|
|
3706
|
+
* <p>The id of the query.</p>
|
|
3707
|
+
* @public
|
|
3708
|
+
*/
|
|
3709
|
+
QueryId?: string;
|
|
3710
|
+
/**
|
|
3711
|
+
* <p>The name of the metric.</p>
|
|
3712
|
+
* @public
|
|
3713
|
+
*/
|
|
3714
|
+
MetricName?: MetricName;
|
|
3715
|
+
/**
|
|
3716
|
+
* <p>The dimensions of the metric.</p>
|
|
3717
|
+
* @public
|
|
3718
|
+
*/
|
|
3719
|
+
Dimensions?: Dimension[];
|
|
3720
|
+
/**
|
|
3721
|
+
* <p>The aggregation period of the metric.</p>
|
|
3722
|
+
* @public
|
|
3723
|
+
*/
|
|
3724
|
+
AggregationPeriod?: AggregationPeriod;
|
|
3725
|
+
/**
|
|
3726
|
+
* <p>The start timestamp for summary metric query.</p>
|
|
3727
|
+
* @public
|
|
3728
|
+
*/
|
|
3729
|
+
StartTimestamp?: Date;
|
|
3730
|
+
/**
|
|
3731
|
+
* <p>The end timestamp for summary metric query.</p>
|
|
3732
|
+
* @public
|
|
3733
|
+
*/
|
|
3734
|
+
EndTimestamp?: Date;
|
|
3735
|
+
}
|
|
3736
|
+
/**
|
|
3737
|
+
* @public
|
|
3738
|
+
*/
|
|
3739
|
+
export interface GetMetricsRequest {
|
|
3740
|
+
/**
|
|
3741
|
+
* <p>The list of queries to retrieve summary metrics.</p>
|
|
3742
|
+
* @public
|
|
3743
|
+
*/
|
|
3744
|
+
SummaryMetricQueries?: SummaryMetricQuery[];
|
|
3745
|
+
}
|
|
3746
|
+
/**
|
|
3747
|
+
* @public
|
|
3748
|
+
* @enum
|
|
3749
|
+
*/
|
|
3750
|
+
export declare const MetricQueryStatus: {
|
|
3751
|
+
readonly Failed: "Failed";
|
|
3752
|
+
readonly Succeeded: "Succeeded";
|
|
3753
|
+
};
|
|
3754
|
+
/**
|
|
3755
|
+
* @public
|
|
3756
|
+
*/
|
|
3757
|
+
export type MetricQueryStatus = (typeof MetricQueryStatus)[keyof typeof MetricQueryStatus];
|
|
3758
|
+
/**
|
|
3759
|
+
* <p>The aggregated values of the metric.</p>
|
|
3760
|
+
* @public
|
|
3761
|
+
*/
|
|
3762
|
+
export interface MetricQueryValue {
|
|
3763
|
+
/**
|
|
3764
|
+
* <p>The minimum of the values of the all data points collected during the period.</p>
|
|
3765
|
+
* @public
|
|
3766
|
+
*/
|
|
3767
|
+
Min?: number;
|
|
3768
|
+
/**
|
|
3769
|
+
* <p>The maximum of the values of the all data points collected during the period.</p>
|
|
3770
|
+
* @public
|
|
3771
|
+
*/
|
|
3772
|
+
Max?: number;
|
|
3773
|
+
/**
|
|
3774
|
+
* <p>The sum of the values of the all data points collected during the period.</p>
|
|
3775
|
+
* @public
|
|
3776
|
+
*/
|
|
3777
|
+
Sum?: number;
|
|
3778
|
+
/**
|
|
3779
|
+
* <p>The average of the values of the all data points collected during the period.</p>
|
|
3780
|
+
* @public
|
|
3781
|
+
*/
|
|
3782
|
+
Avg?: number;
|
|
3783
|
+
/**
|
|
3784
|
+
* <p>The standard deviation of the values of the all data points collected during the period.</p>
|
|
3785
|
+
* @public
|
|
3786
|
+
*/
|
|
3787
|
+
Std?: number;
|
|
3788
|
+
/**
|
|
3789
|
+
* <p>The 90th percentile of the values of the all data points collected during the period.</p>
|
|
3790
|
+
* @public
|
|
3791
|
+
*/
|
|
3792
|
+
P90?: number;
|
|
3793
|
+
}
|
|
3794
|
+
/**
|
|
3795
|
+
* <p>The result of metrics aggregation operation.</p>
|
|
3796
|
+
* @public
|
|
3797
|
+
*/
|
|
3798
|
+
export interface SummaryMetricQueryResult {
|
|
3799
|
+
/**
|
|
3800
|
+
* <p>The id of the query.</p>
|
|
3801
|
+
* @public
|
|
3802
|
+
*/
|
|
3803
|
+
QueryId?: string;
|
|
3804
|
+
/**
|
|
3805
|
+
* <p>The status of the metric query.</p>
|
|
3806
|
+
* @public
|
|
3807
|
+
*/
|
|
3808
|
+
QueryStatus?: MetricQueryStatus;
|
|
3809
|
+
/**
|
|
3810
|
+
* <p>The error message for the summary metric query.</p>
|
|
3811
|
+
* @public
|
|
3812
|
+
*/
|
|
3813
|
+
Error?: string;
|
|
3814
|
+
/**
|
|
3815
|
+
* <p>The name of the metric.</p>
|
|
3816
|
+
* @public
|
|
3817
|
+
*/
|
|
3818
|
+
MetricName?: MetricName;
|
|
3819
|
+
/**
|
|
3820
|
+
* <p>The dimensions of the metric.</p>
|
|
3821
|
+
* @public
|
|
3822
|
+
*/
|
|
3823
|
+
Dimensions?: Dimension[];
|
|
3824
|
+
/**
|
|
3825
|
+
* <p>The aggregation period of the metric.</p>
|
|
3826
|
+
* @public
|
|
3827
|
+
*/
|
|
3828
|
+
AggregationPeriod?: AggregationPeriod;
|
|
3829
|
+
/**
|
|
3830
|
+
* <p>The start timestamp for summary metric query.</p>
|
|
3831
|
+
* @public
|
|
3832
|
+
*/
|
|
3833
|
+
StartTimestamp?: Date;
|
|
3834
|
+
/**
|
|
3835
|
+
* <p>The end timestamp for summary metric query.</p>
|
|
3836
|
+
* @public
|
|
3837
|
+
*/
|
|
3838
|
+
EndTimestamp?: Date;
|
|
3839
|
+
/**
|
|
3840
|
+
* <p>The timestamp of each aggregation result.</p>
|
|
3841
|
+
* @public
|
|
3842
|
+
*/
|
|
3843
|
+
Timestamps?: Date[];
|
|
3844
|
+
/**
|
|
3845
|
+
* <p>The list of aggregated metrics.</p>
|
|
3846
|
+
* @public
|
|
3847
|
+
*/
|
|
3848
|
+
Values?: MetricQueryValue[];
|
|
3849
|
+
/**
|
|
3850
|
+
* <p>The units of measurement to be used for interpreting the aggregation result.</p>
|
|
3851
|
+
* @public
|
|
3852
|
+
*/
|
|
3853
|
+
Unit?: string;
|
|
3854
|
+
}
|
|
3855
|
+
/**
|
|
3856
|
+
* @public
|
|
3857
|
+
*/
|
|
3858
|
+
export interface GetMetricsResponse {
|
|
3859
|
+
/**
|
|
3860
|
+
* <p>The list of retrieved metrics.</p>
|
|
3861
|
+
* @public
|
|
3862
|
+
*/
|
|
3863
|
+
SummaryMetricQueryResults?: SummaryMetricQueryResult[];
|
|
3864
|
+
}
|
|
3580
3865
|
/**
|
|
3581
3866
|
* @public
|
|
3582
3867
|
*/
|
|
@@ -5472,325 +5757,6 @@ export interface ListPositionConfigurationsRequest {
|
|
|
5472
5757
|
*/
|
|
5473
5758
|
NextToken?: string;
|
|
5474
5759
|
}
|
|
5475
|
-
/**
|
|
5476
|
-
* <p>The wrapper for a position configuration.</p>
|
|
5477
|
-
* @public
|
|
5478
|
-
*/
|
|
5479
|
-
export interface PositionConfigurationItem {
|
|
5480
|
-
/**
|
|
5481
|
-
* <p>Resource identifier for the position configuration.</p>
|
|
5482
|
-
* @public
|
|
5483
|
-
*/
|
|
5484
|
-
ResourceIdentifier?: string;
|
|
5485
|
-
/**
|
|
5486
|
-
* <p>Resource type of the resource for the position configuration.</p>
|
|
5487
|
-
* @public
|
|
5488
|
-
*/
|
|
5489
|
-
ResourceType?: PositionResourceType;
|
|
5490
|
-
/**
|
|
5491
|
-
* <p>The details of the positioning solver object used to compute the location.</p>
|
|
5492
|
-
* @public
|
|
5493
|
-
*/
|
|
5494
|
-
Solvers?: PositionSolverDetails;
|
|
5495
|
-
/**
|
|
5496
|
-
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
5497
|
-
* device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
5498
|
-
* @public
|
|
5499
|
-
*/
|
|
5500
|
-
Destination?: string;
|
|
5501
|
-
}
|
|
5502
|
-
/**
|
|
5503
|
-
* @public
|
|
5504
|
-
*/
|
|
5505
|
-
export interface ListPositionConfigurationsResponse {
|
|
5506
|
-
/**
|
|
5507
|
-
* <p>A list of position configurations.</p>
|
|
5508
|
-
* @public
|
|
5509
|
-
*/
|
|
5510
|
-
PositionConfigurationList?: PositionConfigurationItem[];
|
|
5511
|
-
/**
|
|
5512
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5513
|
-
* @public
|
|
5514
|
-
*/
|
|
5515
|
-
NextToken?: string;
|
|
5516
|
-
}
|
|
5517
|
-
/**
|
|
5518
|
-
* @public
|
|
5519
|
-
*/
|
|
5520
|
-
export interface ListQueuedMessagesRequest {
|
|
5521
|
-
/**
|
|
5522
|
-
* <p>The ID of a given wireless device which the downlink message packets are being
|
|
5523
|
-
* sent.</p>
|
|
5524
|
-
* @public
|
|
5525
|
-
*/
|
|
5526
|
-
Id: string | undefined;
|
|
5527
|
-
/**
|
|
5528
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5529
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5530
|
-
* results.</p>
|
|
5531
|
-
* @public
|
|
5532
|
-
*/
|
|
5533
|
-
NextToken?: string;
|
|
5534
|
-
/**
|
|
5535
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5536
|
-
* @public
|
|
5537
|
-
*/
|
|
5538
|
-
MaxResults?: number;
|
|
5539
|
-
/**
|
|
5540
|
-
* <p>The wireless device type, whic can be either Sidewalk or LoRaWAN.</p>
|
|
5541
|
-
* @public
|
|
5542
|
-
*/
|
|
5543
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
5544
|
-
}
|
|
5545
|
-
/**
|
|
5546
|
-
* @public
|
|
5547
|
-
*/
|
|
5548
|
-
export interface ListQueuedMessagesResponse {
|
|
5549
|
-
/**
|
|
5550
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5551
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5552
|
-
* results.</p>
|
|
5553
|
-
* @public
|
|
5554
|
-
*/
|
|
5555
|
-
NextToken?: string;
|
|
5556
|
-
/**
|
|
5557
|
-
* <p>The messages in the downlink queue.</p>
|
|
5558
|
-
* @public
|
|
5559
|
-
*/
|
|
5560
|
-
DownlinkQueueMessagesList?: DownlinkQueueMessage[];
|
|
5561
|
-
}
|
|
5562
|
-
/**
|
|
5563
|
-
* @public
|
|
5564
|
-
*/
|
|
5565
|
-
export interface ListServiceProfilesRequest {
|
|
5566
|
-
/**
|
|
5567
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5568
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5569
|
-
* results.</p>
|
|
5570
|
-
* @public
|
|
5571
|
-
*/
|
|
5572
|
-
NextToken?: string;
|
|
5573
|
-
/**
|
|
5574
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5575
|
-
* @public
|
|
5576
|
-
*/
|
|
5577
|
-
MaxResults?: number;
|
|
5578
|
-
}
|
|
5579
|
-
/**
|
|
5580
|
-
* <p>Information about a service profile.</p>
|
|
5581
|
-
* @public
|
|
5582
|
-
*/
|
|
5583
|
-
export interface ServiceProfile {
|
|
5584
|
-
/**
|
|
5585
|
-
* <p>The Amazon Resource Name of the resource.</p>
|
|
5586
|
-
* @public
|
|
5587
|
-
*/
|
|
5588
|
-
Arn?: string;
|
|
5589
|
-
/**
|
|
5590
|
-
* <p>The name of the resource.</p>
|
|
5591
|
-
* @public
|
|
5592
|
-
*/
|
|
5593
|
-
Name?: string;
|
|
5594
|
-
/**
|
|
5595
|
-
* <p>The ID of the service profile.</p>
|
|
5596
|
-
* @public
|
|
5597
|
-
*/
|
|
5598
|
-
Id?: string;
|
|
5599
|
-
}
|
|
5600
|
-
/**
|
|
5601
|
-
* @public
|
|
5602
|
-
*/
|
|
5603
|
-
export interface ListServiceProfilesResponse {
|
|
5604
|
-
/**
|
|
5605
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5606
|
-
* @public
|
|
5607
|
-
*/
|
|
5608
|
-
NextToken?: string;
|
|
5609
|
-
/**
|
|
5610
|
-
* <p>The list of service profiles.</p>
|
|
5611
|
-
* @public
|
|
5612
|
-
*/
|
|
5613
|
-
ServiceProfileList?: ServiceProfile[];
|
|
5614
|
-
}
|
|
5615
|
-
/**
|
|
5616
|
-
* @public
|
|
5617
|
-
*/
|
|
5618
|
-
export interface ListTagsForResourceRequest {
|
|
5619
|
-
/**
|
|
5620
|
-
* <p>The ARN of the resource for which you want to list tags.</p>
|
|
5621
|
-
* @public
|
|
5622
|
-
*/
|
|
5623
|
-
ResourceArn: string | undefined;
|
|
5624
|
-
}
|
|
5625
|
-
/**
|
|
5626
|
-
* @public
|
|
5627
|
-
*/
|
|
5628
|
-
export interface ListTagsForResourceResponse {
|
|
5629
|
-
/**
|
|
5630
|
-
* <p>The tags to attach to the specified resource. Tags are metadata that you can use to
|
|
5631
|
-
* manage a resource.</p>
|
|
5632
|
-
* @public
|
|
5633
|
-
*/
|
|
5634
|
-
Tags?: Tag[];
|
|
5635
|
-
}
|
|
5636
|
-
/**
|
|
5637
|
-
* @public
|
|
5638
|
-
*/
|
|
5639
|
-
export interface ListWirelessDeviceImportTasksRequest {
|
|
5640
|
-
/**
|
|
5641
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5642
|
-
* @public
|
|
5643
|
-
*/
|
|
5644
|
-
MaxResults?: number;
|
|
5645
|
-
/**
|
|
5646
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5647
|
-
* response; otherwise <code>null</code> to receive the first set of results.</p>
|
|
5648
|
-
* @public
|
|
5649
|
-
*/
|
|
5650
|
-
NextToken?: string;
|
|
5651
|
-
}
|
|
5652
|
-
/**
|
|
5653
|
-
* <p>Information about an import task for wireless devices.</p>
|
|
5654
|
-
* @public
|
|
5655
|
-
*/
|
|
5656
|
-
export interface WirelessDeviceImportTask {
|
|
5657
|
-
/**
|
|
5658
|
-
* <p>The ID of the wireless device import task.</p>
|
|
5659
|
-
* @public
|
|
5660
|
-
*/
|
|
5661
|
-
Id?: string;
|
|
5662
|
-
/**
|
|
5663
|
-
* <p>The ARN (Amazon Resource Name) of the wireless device import task.</p>
|
|
5664
|
-
* @public
|
|
5665
|
-
*/
|
|
5666
|
-
Arn?: string;
|
|
5667
|
-
/**
|
|
5668
|
-
* <p>The name of the Sidewalk destination that that describes the IoT rule to route
|
|
5669
|
-
* messages from the device in the import task that will be onboarded to AWS IoT
|
|
5670
|
-
* Wireless</p>
|
|
5671
|
-
* @public
|
|
5672
|
-
*/
|
|
5673
|
-
DestinationName?: string;
|
|
5674
|
-
/**
|
|
5675
|
-
* <p>The Sidewalk-related information of the wireless device import task.</p>
|
|
5676
|
-
* @public
|
|
5677
|
-
*/
|
|
5678
|
-
Sidewalk?: SidewalkGetStartImportInfo;
|
|
5679
|
-
/**
|
|
5680
|
-
* <p>The time at which the import task was created.</p>
|
|
5681
|
-
* @public
|
|
5682
|
-
*/
|
|
5683
|
-
CreationTime?: Date;
|
|
5684
|
-
/**
|
|
5685
|
-
* <p>The status information of the wireless device import task.</p>
|
|
5686
|
-
* @public
|
|
5687
|
-
*/
|
|
5688
|
-
Status?: ImportTaskStatus;
|
|
5689
|
-
/**
|
|
5690
|
-
* <p>The reason that provides additional information about the import task status.</p>
|
|
5691
|
-
* @public
|
|
5692
|
-
*/
|
|
5693
|
-
StatusReason?: string;
|
|
5694
|
-
/**
|
|
5695
|
-
* <p>The summary information of count of wireless devices that are waiting for the control
|
|
5696
|
-
* log to be added to an import task.</p>
|
|
5697
|
-
* @public
|
|
5698
|
-
*/
|
|
5699
|
-
InitializedImportedDeviceCount?: number;
|
|
5700
|
-
/**
|
|
5701
|
-
* <p>The summary information of count of wireless devices in an import task that are
|
|
5702
|
-
* waiting in the queue to be onboarded.</p>
|
|
5703
|
-
* @public
|
|
5704
|
-
*/
|
|
5705
|
-
PendingImportedDeviceCount?: number;
|
|
5706
|
-
/**
|
|
5707
|
-
* <p>The summary information of count of wireless devices in an import task that have been
|
|
5708
|
-
* onboarded to the import task.</p>
|
|
5709
|
-
* @public
|
|
5710
|
-
*/
|
|
5711
|
-
OnboardedImportedDeviceCount?: number;
|
|
5712
|
-
/**
|
|
5713
|
-
* <p>The summary information of count of wireless devices in an import task that failed to
|
|
5714
|
-
* onboarded to the import task.</p>
|
|
5715
|
-
* @public
|
|
5716
|
-
*/
|
|
5717
|
-
FailedImportedDeviceCount?: number;
|
|
5718
|
-
}
|
|
5719
|
-
/**
|
|
5720
|
-
* @public
|
|
5721
|
-
*/
|
|
5722
|
-
export interface ListWirelessDeviceImportTasksResponse {
|
|
5723
|
-
/**
|
|
5724
|
-
* <p>The token to use to get the next set of results, or <code>null</code> if there are no
|
|
5725
|
-
* additional results.</p>
|
|
5726
|
-
* @public
|
|
5727
|
-
*/
|
|
5728
|
-
NextToken?: string;
|
|
5729
|
-
/**
|
|
5730
|
-
* <p>List of import tasks and summary information of onboarding status of devices in each
|
|
5731
|
-
* import task.</p>
|
|
5732
|
-
* @public
|
|
5733
|
-
*/
|
|
5734
|
-
WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
|
|
5735
|
-
}
|
|
5736
|
-
/**
|
|
5737
|
-
* @public
|
|
5738
|
-
*/
|
|
5739
|
-
export interface ListWirelessDevicesRequest {
|
|
5740
|
-
/**
|
|
5741
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5742
|
-
* @public
|
|
5743
|
-
*/
|
|
5744
|
-
MaxResults?: number;
|
|
5745
|
-
/**
|
|
5746
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5747
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5748
|
-
* results.</p>
|
|
5749
|
-
* @public
|
|
5750
|
-
*/
|
|
5751
|
-
NextToken?: string;
|
|
5752
|
-
/**
|
|
5753
|
-
* <p>A filter to list only the wireless devices that use this destination.</p>
|
|
5754
|
-
* @public
|
|
5755
|
-
*/
|
|
5756
|
-
DestinationName?: string;
|
|
5757
|
-
/**
|
|
5758
|
-
* <p>A filter to list only the wireless devices that use this device profile.</p>
|
|
5759
|
-
* @public
|
|
5760
|
-
*/
|
|
5761
|
-
DeviceProfileId?: string;
|
|
5762
|
-
/**
|
|
5763
|
-
* <p>A filter to list only the wireless devices that use this service profile.</p>
|
|
5764
|
-
* @public
|
|
5765
|
-
*/
|
|
5766
|
-
ServiceProfileId?: string;
|
|
5767
|
-
/**
|
|
5768
|
-
* <p>A filter to list only the wireless devices that use this wireless device type.</p>
|
|
5769
|
-
* @public
|
|
5770
|
-
*/
|
|
5771
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
5772
|
-
/**
|
|
5773
|
-
* <p>The ID of a FUOTA task.</p>
|
|
5774
|
-
* @public
|
|
5775
|
-
*/
|
|
5776
|
-
FuotaTaskId?: string;
|
|
5777
|
-
/**
|
|
5778
|
-
* <p>The ID of the multicast group.</p>
|
|
5779
|
-
* @public
|
|
5780
|
-
*/
|
|
5781
|
-
MulticastGroupId?: string;
|
|
5782
|
-
}
|
|
5783
|
-
/**
|
|
5784
|
-
* <p>LoRaWAN object for list functions.</p>
|
|
5785
|
-
* @public
|
|
5786
|
-
*/
|
|
5787
|
-
export interface LoRaWANListDevice {
|
|
5788
|
-
/**
|
|
5789
|
-
* <p>The DevEUI value.</p>
|
|
5790
|
-
* @public
|
|
5791
|
-
*/
|
|
5792
|
-
DevEui?: string;
|
|
5793
|
-
}
|
|
5794
5760
|
/**
|
|
5795
5761
|
* @internal
|
|
5796
5762
|
*/
|