@aws-sdk/client-iot-wireless 3.552.0 → 3.556.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 CHANGED
@@ -4140,6 +4140,7 @@ var de_LoRaWANDeviceMetadata = /* @__PURE__ */ __name((output, context) => {
4140
4140
  FPort: import_smithy_client.expectInt32,
4141
4141
  Frequency: import_smithy_client.expectInt32,
4142
4142
  Gateways: (_) => de_LoRaWANGatewayMetadataList(_, context),
4143
+ PublicGateways: (_) => de_LoRaWANPublicGatewayMetadataList(_, context),
4143
4144
  Timestamp: import_smithy_client.expectString
4144
4145
  });
4145
4146
  }, "de_LoRaWANDeviceMetadata");
@@ -4182,6 +4183,22 @@ var de_LoRaWANMulticastSession = /* @__PURE__ */ __name((output, context) => {
4182
4183
  SessionTimeout: import_smithy_client.expectInt32
4183
4184
  });
4184
4185
  }, "de_LoRaWANMulticastSession");
4186
+ var de_LoRaWANPublicGatewayMetadata = /* @__PURE__ */ __name((output, context) => {
4187
+ return (0, import_smithy_client.take)(output, {
4188
+ DlAllowed: import_smithy_client.expectBoolean,
4189
+ Id: import_smithy_client.expectString,
4190
+ ProviderNetId: import_smithy_client.expectString,
4191
+ RfRegion: import_smithy_client.expectString,
4192
+ Rssi: import_smithy_client.limitedParseDouble,
4193
+ Snr: import_smithy_client.limitedParseDouble
4194
+ });
4195
+ }, "de_LoRaWANPublicGatewayMetadata");
4196
+ var de_LoRaWANPublicGatewayMetadataList = /* @__PURE__ */ __name((output, context) => {
4197
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
4198
+ return de_LoRaWANPublicGatewayMetadata(entry, context);
4199
+ });
4200
+ return retVal;
4201
+ }, "de_LoRaWANPublicGatewayMetadataList");
4185
4202
  var de_MetricQueryTimestamps = /* @__PURE__ */ __name((output, context) => {
4186
4203
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
4187
4204
  return (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(entry)));
@@ -3249,6 +3249,7 @@ const de_LoRaWANDeviceMetadata = (output, context) => {
3249
3249
  FPort: __expectInt32,
3250
3250
  Frequency: __expectInt32,
3251
3251
  Gateways: (_) => de_LoRaWANGatewayMetadataList(_, context),
3252
+ PublicGateways: (_) => de_LoRaWANPublicGatewayMetadataList(_, context),
3252
3253
  Timestamp: __expectString,
3253
3254
  });
3254
3255
  };
@@ -3293,6 +3294,24 @@ const de_LoRaWANMulticastSession = (output, context) => {
3293
3294
  SessionTimeout: __expectInt32,
3294
3295
  });
3295
3296
  };
3297
+ const de_LoRaWANPublicGatewayMetadata = (output, context) => {
3298
+ return take(output, {
3299
+ DlAllowed: __expectBoolean,
3300
+ Id: __expectString,
3301
+ ProviderNetId: __expectString,
3302
+ RfRegion: __expectString,
3303
+ Rssi: __limitedParseDouble,
3304
+ Snr: __limitedParseDouble,
3305
+ });
3306
+ };
3307
+ const de_LoRaWANPublicGatewayMetadataList = (output, context) => {
3308
+ const retVal = (output || [])
3309
+ .filter((e) => e != null)
3310
+ .map((entry) => {
3311
+ return de_LoRaWANPublicGatewayMetadata(entry, context);
3312
+ });
3313
+ return retVal;
3314
+ };
3296
3315
  const de_MetricQueryTimestamps = (output, context) => {
3297
3316
  const retVal = (output || [])
3298
3317
  .filter((e) => e != null)
@@ -27,6 +27,21 @@ declare const CreateWirelessGatewayCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Provisions a wireless gateway.</p>
30
+ * <note>
31
+ * <p>When provisioning a wireless gateway, you might run into duplication errors
32
+ * for the following reasons.</p>
33
+ * <ul>
34
+ * <li>
35
+ * <p>If you specify a <code>GatewayEui</code> value that already exists.</p>
36
+ * </li>
37
+ * <li>
38
+ * <p>If you used a <code>ClientRequestToken</code> with the same parameters
39
+ * within the last 10 minutes.</p>
40
+ * </li>
41
+ * </ul>
42
+ * <p>To avoid this error, make sure that you use unique identifiers and parameters
43
+ * for each request within the specified time period.</p>
44
+ * </note>
30
45
  * @example
31
46
  * Use a bare-bones client and the command you need to make an API call.
32
47
  * ```javascript
@@ -27,6 +27,21 @@ declare const DeleteWirelessGatewayCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Deletes a wireless gateway.</p>
30
+ * <note>
31
+ * <p>When deleting a wireless gateway, you might run into duplication errors
32
+ * for the following reasons.</p>
33
+ * <ul>
34
+ * <li>
35
+ * <p>If you specify a <code>GatewayEui</code> value that already exists.</p>
36
+ * </li>
37
+ * <li>
38
+ * <p>If you used a <code>ClientRequestToken</code> with the same parameters
39
+ * within the last 10 minutes.</p>
40
+ * </li>
41
+ * </ul>
42
+ * <p>To avoid this error, make sure that you use unique identifiers and parameters
43
+ * for each request within the specified time period.</p>
44
+ * </note>
30
45
  * @example
31
46
  * Use a bare-bones client and the command you need to make an API call.
32
47
  * ```javascript
@@ -26,7 +26,7 @@ declare const GetMetricConfigurationCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p>Get the metric configuration status for this account.</p>
29
+ * <p>Get the metric configuration status for this AWS account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
32
32
  * ```javascript
@@ -26,7 +26,7 @@ declare const GetMetricsCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p>Get metrics.</p>
29
+ * <p>Get the summary metrics for this AWS account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
32
32
  * ```javascript
@@ -54,6 +54,16 @@ declare const GetWirelessDeviceStatisticsCommand_base: {
54
54
  * // Rssi: Number("double"),
55
55
  * // },
56
56
  * // ],
57
+ * // PublicGateways: [ // LoRaWANPublicGatewayMetadataList
58
+ * // { // LoRaWANPublicGatewayMetadata
59
+ * // ProviderNetId: "STRING_VALUE",
60
+ * // Id: "STRING_VALUE",
61
+ * // Rssi: Number("double"),
62
+ * // Snr: Number("double"),
63
+ * // RfRegion: "STRING_VALUE",
64
+ * // DlAllowed: true || false,
65
+ * // },
66
+ * // ],
57
67
  * // },
58
68
  * // Sidewalk: { // SidewalkDeviceMetadata
59
69
  * // Rssi: Number("int"),
@@ -1,8 +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 { ListPositionConfigurationsRequest } from "../models/models_0";
5
- import { ListPositionConfigurationsResponse } from "../models/models_1";
4
+ import { ListPositionConfigurationsRequest, ListPositionConfigurationsResponse } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -26,7 +26,7 @@ declare const UpdateMetricConfigurationCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p>Update the metric configuration.</p>
29
+ * <p>Update the summary metric configuration.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
32
32
  * ```javascript
@@ -207,10 +207,12 @@ export interface AssociateAwsAccountWithPartnerAccountRequest {
207
207
  */
208
208
  Sidewalk: SidewalkAccountInfo | undefined;
209
209
  /**
210
- * <p>Each resource must have a unique client request token. If you try to create a new
211
- * resource with the same token as a resource that already exists, an exception occurs. If
212
- * you omit this value, AWS SDKs will automatically generate a unique client request.
213
- * </p>
210
+ * <p>Each resource must have a unique client request token. The client token is used to implement
211
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
212
+ * with the same token and the same parameters, the request will complete successfully. However, if
213
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
214
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
215
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
214
216
  * @public
215
217
  */
216
218
  ClientRequestToken?: string;
@@ -1188,10 +1190,12 @@ export interface CreateDestinationRequest {
1188
1190
  */
1189
1191
  Tags?: Tag[];
1190
1192
  /**
1191
- * <p>Each resource must have a unique client request token. If you try to create a new
1192
- * resource with the same token as a resource that already exists, an exception occurs. If
1193
- * you omit this value, AWS SDKs will automatically generate a unique client request.
1194
- * </p>
1193
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1194
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1195
+ * with the same token and the same parameters, the request will complete successfully. However, if
1196
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1197
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1198
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1195
1199
  * @public
1196
1200
  */
1197
1201
  ClientRequestToken?: string;
@@ -1340,10 +1344,12 @@ export interface CreateDeviceProfileRequest {
1340
1344
  */
1341
1345
  Tags?: Tag[];
1342
1346
  /**
1343
- * <p>Each resource must have a unique client request token. If you try to create a new
1344
- * resource with the same token as a resource that already exists, an exception occurs. If
1345
- * you omit this value, AWS SDKs will automatically generate a unique client request.
1346
- * </p>
1347
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1348
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1349
+ * with the same token and the same parameters, the request will complete successfully. However, if
1350
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1351
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1352
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1347
1353
  * @public
1348
1354
  */
1349
1355
  ClientRequestToken?: string;
@@ -1417,10 +1423,12 @@ export interface CreateFuotaTaskRequest {
1417
1423
  */
1418
1424
  Description?: string;
1419
1425
  /**
1420
- * <p>Each resource must have a unique client request token. If you try to create a new
1421
- * resource with the same token as a resource that already exists, an exception occurs. If
1422
- * you omit this value, AWS SDKs will automatically generate a unique client
1423
- * request.</p>
1426
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1427
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1428
+ * with the same token and the same parameters, the request will complete successfully. However, if
1429
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1430
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1431
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1424
1432
  * @public
1425
1433
  */
1426
1434
  ClientRequestToken?: string;
@@ -1531,10 +1539,12 @@ export interface CreateMulticastGroupRequest {
1531
1539
  */
1532
1540
  Description?: string;
1533
1541
  /**
1534
- * <p>Each resource must have a unique client request token. If you try to create a new
1535
- * resource with the same token as a resource that already exists, an exception occurs. If
1536
- * you omit this value, AWS SDKs will automatically generate a unique client request.
1537
- * </p>
1542
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1543
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1544
+ * with the same token and the same parameters, the request will complete successfully. However, if
1545
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1546
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1547
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1538
1548
  * @public
1539
1549
  */
1540
1550
  ClientRequestToken?: string;
@@ -1625,7 +1635,8 @@ export interface TraceContent {
1625
1635
  /**
1626
1636
  * <p>
1627
1637
  * <code>FrameInfo</code> of your multicast group resources for the trace content. Use
1628
- * FrameInfo to debug the multicast communication between your multicast groups and the network server.</p>
1638
+ * FrameInfo to debug the multicast communication between your multicast groups and the
1639
+ * network server.</p>
1629
1640
  * @public
1630
1641
  */
1631
1642
  MulticastFrameInfo?: MulticastFrameInfo;
@@ -1668,10 +1679,12 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
1668
1679
  */
1669
1680
  Tags?: Tag[];
1670
1681
  /**
1671
- * <p>Each resource must have a unique client request token. If you try to create a new
1672
- * resource with the same token as a resource that already exists, an exception occurs. If
1673
- * you omit this value, AWS SDKs will automatically generate a unique client
1674
- * request.</p>
1682
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1683
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1684
+ * with the same token and the same parameters, the request will complete successfully. However, if
1685
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1686
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1687
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1675
1688
  * @public
1676
1689
  */
1677
1690
  ClientRequestToken?: string;
@@ -1749,10 +1762,12 @@ export interface CreateServiceProfileRequest {
1749
1762
  */
1750
1763
  Tags?: Tag[];
1751
1764
  /**
1752
- * <p>Each resource must have a unique client request token. If you try to create a new
1753
- * resource with the same token as a resource that already exists, an exception occurs. If
1754
- * you omit this value, AWS SDKs will automatically generate a unique client request.
1755
- * </p>
1765
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1766
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1767
+ * with the same token and the same parameters, the request will complete successfully. However, if
1768
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1769
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1770
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1756
1771
  * @public
1757
1772
  */
1758
1773
  ClientRequestToken?: string;
@@ -1836,7 +1851,8 @@ export interface OtaaV1_0_x {
1836
1851
  */
1837
1852
  AppKey?: string;
1838
1853
  /**
1839
- * <p>The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.</p>
1854
+ * <p>The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or
1855
+ * v1.0.3.</p>
1840
1856
  * @public
1841
1857
  */
1842
1858
  AppEui?: string;
@@ -1979,10 +1995,12 @@ export interface CreateWirelessDeviceRequest {
1979
1995
  */
1980
1996
  DestinationName: string | undefined;
1981
1997
  /**
1982
- * <p>Each resource must have a unique client request token. If you try to create a new
1983
- * resource with the same token as a resource that already exists, an exception occurs. If
1984
- * you omit this value, AWS SDKs will automatically generate a unique client request.
1985
- * </p>
1998
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1999
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
2000
+ * with the same token and the same parameters, the request will complete successfully. However, if
2001
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
2002
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2003
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1986
2004
  * @public
1987
2005
  */
1988
2006
  ClientRequestToken?: string;
@@ -2093,10 +2111,12 @@ export interface CreateWirelessGatewayRequest {
2093
2111
  */
2094
2112
  Tags?: Tag[];
2095
2113
  /**
2096
- * <p>Each resource must have a unique client request token. If you try to create a new
2097
- * resource with the same token as a resource that already exists, an exception occurs. If
2098
- * you omit this value, AWS SDKs will automatically generate a unique client request.
2099
- * </p>
2114
+ * <p>Each resource must have a unique client request token. The client token is used to implement
2115
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
2116
+ * with the same token and the same parameters, the request will complete successfully. However, if
2117
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
2118
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2119
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
2100
2120
  * @public
2101
2121
  */
2102
2122
  ClientRequestToken?: string;
@@ -2252,10 +2272,12 @@ export interface CreateWirelessGatewayTaskDefinitionRequest {
2252
2272
  */
2253
2273
  Update?: UpdateWirelessGatewayTaskCreate;
2254
2274
  /**
2255
- * <p>Each resource must have a unique client request token. If you try to create a new
2256
- * resource with the same token as a resource that already exists, an exception occurs. If
2257
- * you omit this value, AWS SDKs will automatically generate a unique client request.
2258
- * </p>
2275
+ * <p>Each resource must have a unique client request token. The client token is used to implement
2276
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
2277
+ * with the same token and the same parameters, the request will complete successfully. However, if
2278
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
2279
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2280
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
2259
2281
  * @public
2260
2282
  */
2261
2283
  ClientRequestToken?: string;
@@ -3637,12 +3659,12 @@ export declare const SummaryMetricConfigurationStatus: {
3637
3659
  */
3638
3660
  export type SummaryMetricConfigurationStatus = (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
3639
3661
  /**
3640
- * <p>The configuration of summary metric.</p>
3662
+ * <p>The configuration of summary metrics.</p>
3641
3663
  * @public
3642
3664
  */
3643
3665
  export interface SummaryMetricConfiguration {
3644
3666
  /**
3645
- * <p>The configuration of summary metric.</p>
3667
+ * <p>The status of the configuration of summary metrics.</p>
3646
3668
  * @public
3647
3669
  */
3648
3670
  Status?: SummaryMetricConfigurationStatus;
@@ -3652,7 +3674,7 @@ export interface SummaryMetricConfiguration {
3652
3674
  */
3653
3675
  export interface GetMetricConfigurationResponse {
3654
3676
  /**
3655
- * <p>The account's configuration status for summary metric aggregation.</p>
3677
+ * <p>The configuration status of the AWS account for summary metric aggregation.</p>
3656
3678
  * @public
3657
3679
  */
3658
3680
  SummaryMetric?: SummaryMetricConfiguration;
@@ -3698,12 +3720,12 @@ export declare const MetricName: {
3698
3720
  */
3699
3721
  export type MetricName = (typeof MetricName)[keyof typeof MetricName];
3700
3722
  /**
3701
- * <p>The metric query object.</p>
3723
+ * <p>The summary metric query object.</p>
3702
3724
  * @public
3703
3725
  */
3704
3726
  export interface SummaryMetricQuery {
3705
3727
  /**
3706
- * <p>The id of the query.</p>
3728
+ * <p>The id of the summary metric query.</p>
3707
3729
  * @public
3708
3730
  */
3709
3731
  QueryId?: string;
@@ -3713,22 +3735,22 @@ export interface SummaryMetricQuery {
3713
3735
  */
3714
3736
  MetricName?: MetricName;
3715
3737
  /**
3716
- * <p>The dimensions of the metric.</p>
3738
+ * <p>The dimensions of the summary metric.</p>
3717
3739
  * @public
3718
3740
  */
3719
3741
  Dimensions?: Dimension[];
3720
3742
  /**
3721
- * <p>The aggregation period of the metric.</p>
3743
+ * <p>The aggregation period of the summary metric.</p>
3722
3744
  * @public
3723
3745
  */
3724
3746
  AggregationPeriod?: AggregationPeriod;
3725
3747
  /**
3726
- * <p>The start timestamp for summary metric query.</p>
3748
+ * <p>The start timestamp for the summary metric query.</p>
3727
3749
  * @public
3728
3750
  */
3729
3751
  StartTimestamp?: Date;
3730
3752
  /**
3731
- * <p>The end timestamp for summary metric query.</p>
3753
+ * <p>The end timestamp for the summary metric query.</p>
3732
3754
  * @public
3733
3755
  */
3734
3756
  EndTimestamp?: Date;
@@ -3738,7 +3760,7 @@ export interface SummaryMetricQuery {
3738
3760
  */
3739
3761
  export interface GetMetricsRequest {
3740
3762
  /**
3741
- * <p>The list of queries to retrieve summary metrics.</p>
3763
+ * <p>The list of queries to retrieve the summary metrics.</p>
3742
3764
  * @public
3743
3765
  */
3744
3766
  SummaryMetricQueries?: SummaryMetricQuery[];
@@ -3761,58 +3783,64 @@ export type MetricQueryStatus = (typeof MetricQueryStatus)[keyof typeof MetricQu
3761
3783
  */
3762
3784
  export interface MetricQueryValue {
3763
3785
  /**
3764
- * <p>The minimum of the values of the all data points collected during the period.</p>
3786
+ * <p>The minimum of the values of all data points collected during the aggregation
3787
+ * period.</p>
3765
3788
  * @public
3766
3789
  */
3767
3790
  Min?: number;
3768
3791
  /**
3769
- * <p>The maximum of the values of the all data points collected during the period.</p>
3792
+ * <p>The maximum of the values of all the data points collected during the aggregation
3793
+ * period.</p>
3770
3794
  * @public
3771
3795
  */
3772
3796
  Max?: number;
3773
3797
  /**
3774
- * <p>The sum of the values of the all data points collected during the period.</p>
3798
+ * <p>The sum of the values of all data points collected during the aggregation
3799
+ * period.</p>
3775
3800
  * @public
3776
3801
  */
3777
3802
  Sum?: number;
3778
3803
  /**
3779
- * <p>The average of the values of the all data points collected during the period.</p>
3804
+ * <p>The average of the values of all data points collected during the aggregation
3805
+ * period.</p>
3780
3806
  * @public
3781
3807
  */
3782
3808
  Avg?: number;
3783
3809
  /**
3784
- * <p>The standard deviation of the values of the all data points collected during the period.</p>
3810
+ * <p>The standard deviation of the values of all data points collected during the
3811
+ * aggregation period.</p>
3785
3812
  * @public
3786
3813
  */
3787
3814
  Std?: number;
3788
3815
  /**
3789
- * <p>The 90th percentile of the values of the all data points collected during the period.</p>
3816
+ * <p>The 90th percentile of the values of all data points collected during the aggregation
3817
+ * period.</p>
3790
3818
  * @public
3791
3819
  */
3792
3820
  P90?: number;
3793
3821
  }
3794
3822
  /**
3795
- * <p>The result of metrics aggregation operation.</p>
3823
+ * <p>The result of the summary metrics aggregation operation.</p>
3796
3824
  * @public
3797
3825
  */
3798
3826
  export interface SummaryMetricQueryResult {
3799
3827
  /**
3800
- * <p>The id of the query.</p>
3828
+ * <p>The ID of the summary metric results query operation.</p>
3801
3829
  * @public
3802
3830
  */
3803
3831
  QueryId?: string;
3804
3832
  /**
3805
- * <p>The status of the metric query.</p>
3833
+ * <p>The status of the summary metric query result.</p>
3806
3834
  * @public
3807
3835
  */
3808
3836
  QueryStatus?: MetricQueryStatus;
3809
3837
  /**
3810
- * <p>The error message for the summary metric query.</p>
3838
+ * <p>The error message for the summary metric query result.</p>
3811
3839
  * @public
3812
3840
  */
3813
3841
  Error?: string;
3814
3842
  /**
3815
- * <p>The name of the metric.</p>
3843
+ * <p>The name of the summary metric query result.</p>
3816
3844
  * @public
3817
3845
  */
3818
3846
  MetricName?: MetricName;
@@ -3827,12 +3855,12 @@ export interface SummaryMetricQueryResult {
3827
3855
  */
3828
3856
  AggregationPeriod?: AggregationPeriod;
3829
3857
  /**
3830
- * <p>The start timestamp for summary metric query.</p>
3858
+ * <p>The start timestamp for the summary metric query.</p>
3831
3859
  * @public
3832
3860
  */
3833
3861
  StartTimestamp?: Date;
3834
3862
  /**
3835
- * <p>The end timestamp for summary metric query.</p>
3863
+ * <p>The end timestamp for the summary metric query.</p>
3836
3864
  * @public
3837
3865
  */
3838
3866
  EndTimestamp?: Date;
@@ -3842,7 +3870,7 @@ export interface SummaryMetricQueryResult {
3842
3870
  */
3843
3871
  Timestamps?: Date[];
3844
3872
  /**
3845
- * <p>The list of aggregated metrics.</p>
3873
+ * <p>The list of aggregated summary metric query results.</p>
3846
3874
  * @public
3847
3875
  */
3848
3876
  Values?: MetricQueryValue[];
@@ -3857,7 +3885,7 @@ export interface SummaryMetricQueryResult {
3857
3885
  */
3858
3886
  export interface GetMetricsResponse {
3859
3887
  /**
3860
- * <p>The list of retrieved metrics.</p>
3888
+ * <p>The list of summary metrics that were retrieved.</p>
3861
3889
  * @public
3862
3890
  */
3863
3891
  SummaryMetricQueryResults?: SummaryMetricQueryResult[];
@@ -4978,6 +5006,42 @@ export interface LoRaWANGatewayMetadata {
4978
5006
  */
4979
5007
  Rssi?: number;
4980
5008
  }
5009
+ /**
5010
+ * <p>LoRaWAN public gateway metadata.</p>
5011
+ * @public
5012
+ */
5013
+ export interface LoRaWANPublicGatewayMetadata {
5014
+ /**
5015
+ * <p>The ID of the LoRaWAN public network provider.</p>
5016
+ * @public
5017
+ */
5018
+ ProviderNetId?: string;
5019
+ /**
5020
+ * <p>The ID of the gateways that are operated by the network provider.</p>
5021
+ * @public
5022
+ */
5023
+ Id?: string;
5024
+ /**
5025
+ * <p>The RSSI (received signal strength indicator) value.</p>
5026
+ * @public
5027
+ */
5028
+ Rssi?: number;
5029
+ /**
5030
+ * <p>The SNR (signal to noise ratio) value.</p>
5031
+ * @public
5032
+ */
5033
+ Snr?: number;
5034
+ /**
5035
+ * <p>The frequency band (RFRegion) value.</p>
5036
+ * @public
5037
+ */
5038
+ RfRegion?: string;
5039
+ /**
5040
+ * <p>Boolean that indicates whether downlink is allowed using the network.</p>
5041
+ * @public
5042
+ */
5043
+ DlAllowed?: boolean;
5044
+ }
4981
5045
  /**
4982
5046
  * <p>LoRaWAN device metatdata.</p>
4983
5047
  * @public
@@ -5013,6 +5077,11 @@ export interface LoRaWANDeviceMetadata {
5013
5077
  * @public
5014
5078
  */
5015
5079
  Gateways?: LoRaWANGatewayMetadata[];
5080
+ /**
5081
+ * <p>Information about the LoRaWAN public network accessed by the device.</p>
5082
+ * @public
5083
+ */
5084
+ PublicGateways?: LoRaWANPublicGatewayMetadata[];
5016
5085
  }
5017
5086
  /**
5018
5087
  * <p>MetaData for Sidewalk device.</p>
@@ -5735,28 +5804,6 @@ export interface ListPartnerAccountsResponse {
5735
5804
  */
5736
5805
  Sidewalk?: SidewalkAccountInfoWithFingerprint[];
5737
5806
  }
5738
- /**
5739
- * @public
5740
- */
5741
- export interface ListPositionConfigurationsRequest {
5742
- /**
5743
- * <p>Resource type for which position configurations are listed.</p>
5744
- * @public
5745
- */
5746
- ResourceType?: PositionResourceType;
5747
- /**
5748
- * <p>The maximum number of results to return in this operation.</p>
5749
- * @public
5750
- */
5751
- MaxResults?: number;
5752
- /**
5753
- * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
5754
- * response; otherwise <b>null</b> to receive the first set of
5755
- * results.</p>
5756
- * @public
5757
- */
5758
- NextToken?: string;
5759
- }
5760
5807
  /**
5761
5808
  * @internal
5762
5809
  */
@@ -1,6 +1,28 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
3
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";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface ListPositionConfigurationsRequest {
8
+ /**
9
+ * <p>Resource type for which position configurations are listed.</p>
10
+ * @public
11
+ */
12
+ ResourceType?: PositionResourceType;
13
+ /**
14
+ * <p>The maximum number of results to return in this operation.</p>
15
+ * @public
16
+ */
17
+ MaxResults?: number;
18
+ /**
19
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
20
+ * response; otherwise <b>null</b> to receive the first set of
21
+ * results.</p>
22
+ * @public
23
+ */
24
+ NextToken?: string;
25
+ }
4
26
  /**
5
27
  * <p>The wrapper for a position configuration.</p>
6
28
  * @public
@@ -981,10 +1003,12 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
981
1003
  */
982
1004
  DestinationName: string | undefined;
983
1005
  /**
984
- * <p>Each resource must have a unique client request token. If you try to create a new
985
- * resource with the same token as a resource that already exists, an exception occurs. If
986
- * you omit this value, AWS SDKs will automatically generate a unique client
987
- * request.</p>
1006
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1007
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1008
+ * with the same token and the same parameters, the request will complete successfully. However, if
1009
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1010
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1011
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
988
1012
  * @public
989
1013
  */
990
1014
  ClientRequestToken?: string;
@@ -1049,10 +1073,12 @@ export interface StartWirelessDeviceImportTaskRequest {
1049
1073
  */
1050
1074
  DestinationName: string | undefined;
1051
1075
  /**
1052
- * <p>Each resource must have a unique client request token. If you try to create a new
1053
- * resource with the same token as a resource that already exists, an exception occurs. If
1054
- * you omit this value, AWS SDKs will automatically generate a unique client
1055
- * request.</p>
1076
+ * <p>Each resource must have a unique client request token. The client token is used to implement
1077
+ * idempotency. It ensures that the request completes no more than one time. If you retry a request
1078
+ * with the same token and the same parameters, the request will complete successfully. However, if
1079
+ * you try to create a new resource using the same token but different parameters, an HTTP 409
1080
+ * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1081
+ * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1056
1082
  * @public
1057
1083
  */
1058
1084
  ClientRequestToken?: string;
@@ -1422,13 +1448,13 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
1422
1448
  Description?: string;
1423
1449
  /**
1424
1450
  * <p>Multicast group resources to add to the network analyzer configuration. Provide the
1425
- * <code>MulticastGroupId</code> of the resource to add in the input array.</p>
1451
+ * <code>MulticastGroupId</code> of the resource to add in the input array.</p>
1426
1452
  * @public
1427
1453
  */
1428
1454
  MulticastGroupsToAdd?: string[];
1429
1455
  /**
1430
- * <p>Multicast group resources to remove from the network analyzer configuration. Provide the
1431
- * <code>MulticastGroupId</code> of the resources to remove in the input array.</p>
1456
+ * <p>Multicast group resources to remove from the network analyzer configuration. Provide
1457
+ * the <code>MulticastGroupId</code> of the resources to remove in the input array.</p>
1432
1458
  * @public
1433
1459
  */
1434
1460
  MulticastGroupsToRemove?: string[];
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../IoTWirelessClient";
8
- import { ListPositionConfigurationsRequest } from "../models/models_0";
9
- import { ListPositionConfigurationsResponse } from "../models/models_1";
8
+ import {
9
+ ListPositionConfigurationsRequest,
10
+ ListPositionConfigurationsResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer, $Command };
11
13
  export interface ListPositionConfigurationsCommandInput
12
14
  extends ListPositionConfigurationsRequest {}
@@ -1340,6 +1340,14 @@ export interface LoRaWANGatewayMetadata {
1340
1340
  Snr?: number;
1341
1341
  Rssi?: number;
1342
1342
  }
1343
+ export interface LoRaWANPublicGatewayMetadata {
1344
+ ProviderNetId?: string;
1345
+ Id?: string;
1346
+ Rssi?: number;
1347
+ Snr?: number;
1348
+ RfRegion?: string;
1349
+ DlAllowed?: boolean;
1350
+ }
1343
1351
  export interface LoRaWANDeviceMetadata {
1344
1352
  DevEui?: string;
1345
1353
  FPort?: number;
@@ -1347,6 +1355,7 @@ export interface LoRaWANDeviceMetadata {
1347
1355
  Frequency?: number;
1348
1356
  Timestamp?: string;
1349
1357
  Gateways?: LoRaWANGatewayMetadata[];
1358
+ PublicGateways?: LoRaWANPublicGatewayMetadata[];
1350
1359
  }
1351
1360
  export interface SidewalkDeviceMetadata {
1352
1361
  Rssi?: number;
@@ -1529,11 +1538,6 @@ export interface ListPartnerAccountsResponse {
1529
1538
  NextToken?: string;
1530
1539
  Sidewalk?: SidewalkAccountInfoWithFingerprint[];
1531
1540
  }
1532
- export interface ListPositionConfigurationsRequest {
1533
- ResourceType?: PositionResourceType;
1534
- MaxResults?: number;
1535
- NextToken?: string;
1536
- }
1537
1541
  export declare const SidewalkAccountInfoFilterSensitiveLog: (
1538
1542
  obj: SidewalkAccountInfo
1539
1543
  ) => any;
@@ -42,6 +42,11 @@ import {
42
42
  WirelessDeviceType,
43
43
  WirelessGatewayLogOption,
44
44
  } from "./models_0";
45
+ export interface ListPositionConfigurationsRequest {
46
+ ResourceType?: PositionResourceType;
47
+ MaxResults?: number;
48
+ NextToken?: string;
49
+ }
45
50
  export interface PositionConfigurationItem {
46
51
  ResourceIdentifier?: string;
47
52
  ResourceType?: PositionResourceType;
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.552.0",
4
+ "version": "3.556.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,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.552.0",
24
- "@aws-sdk/core": "3.552.0",
25
- "@aws-sdk/credential-provider-node": "3.552.0",
23
+ "@aws-sdk/client-sts": "3.556.0",
24
+ "@aws-sdk/core": "3.556.0",
25
+ "@aws-sdk/credential-provider-node": "3.556.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",