@aws-sdk/client-iot-wireless 3.772.0 → 3.775.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 CHANGED
@@ -9,7 +9,7 @@ AWS SDK for JavaScript IoTWireless Client for Node.js, Browser and React Native.
9
9
  <p>AWS IoT Wireless provides bi-directional communication between internet-connected
10
10
  wireless devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS
11
11
  IoT, use the IoT Wireless API. These wireless devices use the Low Power Wide Area
12
- Networking (LPWAN) communication protocol to communicate with AWS IoT.</p>
12
+ Networking (LPWAN) communication protocol to communicate with AWS IoT. </p>
13
13
  <p>Using the API, you can perform create, read, update, and delete operations for your
14
14
  wireless devices, gateways, destinations, and profiles. After onboarding your devices,
15
15
  you can use the API operations to set log levels and monitor your devices with
@@ -20,8 +20,11 @@ Firmware Updates Over-The-Air (FUOTA) API operations, you can create a FUOTA tas
20
20
  schedule a session to update the firmware of individual devices or an entire group of
21
21
  devices in a multicast group.</p>
22
22
  <p>To connect to the AWS IoT Wireless Service, use the Service endpoints as described in
23
- <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT Wireless Service
24
- endpoints</a> in the <i>AWS General Reference</i>.</p>
23
+ <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT
24
+ Wireless Service endpoints</a>. You can use both IPv4 and IPv6 protocols to connect
25
+ to the endpoints and send requests to the AWS IoT Wireless service. For more information,
26
+ see <a href="https://docs.aws.amazon.com/iot-wireless/latest/developerguide/wireless-ipv6-access.html">Using
27
+ IPv6 with AWS IoT Wireless</a>.</p>
25
28
 
26
29
  ## Installing
27
30
 
@@ -40,8 +40,6 @@ const defaultIoTWirelessHttpAuthSchemeProvider = (authParameters) => {
40
40
  exports.defaultIoTWirelessHttpAuthSchemeProvider = defaultIoTWirelessHttpAuthSchemeProvider;
41
41
  const resolveHttpAuthSchemeConfig = (config) => {
42
42
  const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
43
- return {
44
- ...config_0,
45
- };
43
+ return Object.assign(config_0, {});
46
44
  };
47
45
  exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
package/dist-cjs/index.js CHANGED
@@ -230,12 +230,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
230
230
 
231
231
  // src/endpoint/EndpointParameters.ts
232
232
  var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
233
- return {
234
- ...options,
233
+ return Object.assign(options, {
235
234
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
236
235
  useFipsEndpoint: options.useFipsEndpoint ?? false,
237
236
  defaultSigningName: "iotwireless"
238
- };
237
+ });
239
238
  }, "resolveClientEndpointParameters");
240
239
  var commonParams = {
241
240
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -292,22 +291,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
292
291
  }, "resolveHttpAuthRuntimeConfig");
293
292
 
294
293
  // src/runtimeExtensions.ts
295
- var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
296
294
  var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
297
- const extensionConfiguration = {
298
- ...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
299
- ...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
300
- ...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
301
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
302
- };
295
+ const extensionConfiguration = Object.assign(
296
+ (0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
297
+ (0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
298
+ (0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
299
+ getHttpAuthExtensionConfiguration(runtimeConfig)
300
+ );
303
301
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
304
- return {
305
- ...runtimeConfig,
306
- ...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
307
- ...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
308
- ...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
309
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration)
310
- };
302
+ return Object.assign(
303
+ runtimeConfig,
304
+ (0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
305
+ (0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
306
+ (0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
307
+ resolveHttpAuthRuntimeConfig(extensionConfiguration)
308
+ );
311
309
  }, "resolveRuntimeExtensions");
312
310
 
313
311
  // src/IoTWirelessClient.ts
@@ -321,6 +319,8 @@ var IoTWirelessClient = class extends import_smithy_client.Client {
321
319
  config;
322
320
  constructor(...[configuration]) {
323
321
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
322
+ super(_config_0);
323
+ this.initConfig = _config_0;
324
324
  const _config_1 = resolveClientEndpointParameters(_config_0);
325
325
  const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
326
326
  const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
@@ -329,7 +329,6 @@ var IoTWirelessClient = class extends import_smithy_client.Client {
329
329
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
330
330
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
331
331
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
332
- super(_config_8);
333
332
  this.config = _config_8;
334
333
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
335
334
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
@@ -17,6 +17,8 @@ export class IoTWirelessClient extends __Client {
17
17
  config;
18
18
  constructor(...[configuration]) {
19
19
  const _config_0 = __getRuntimeConfig(configuration || {});
20
+ super(_config_0);
21
+ this.initConfig = _config_0;
20
22
  const _config_1 = resolveClientEndpointParameters(_config_0);
21
23
  const _config_2 = resolveUserAgentConfig(_config_1);
22
24
  const _config_3 = resolveRetryConfig(_config_2);
@@ -25,7 +27,6 @@ export class IoTWirelessClient extends __Client {
25
27
  const _config_6 = resolveEndpointConfig(_config_5);
26
28
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
27
29
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
28
- super(_config_8);
29
30
  this.config = _config_8;
30
31
  this.middlewareStack.use(getUserAgentPlugin(this.config));
31
32
  this.middlewareStack.use(getRetryPlugin(this.config));
@@ -35,7 +35,5 @@ export const defaultIoTWirelessHttpAuthSchemeProvider = (authParameters) => {
35
35
  };
36
36
  export const resolveHttpAuthSchemeConfig = (config) => {
37
37
  const config_0 = resolveAwsSdkSigV4Config(config);
38
- return {
39
- ...config_0,
40
- };
38
+ return Object.assign(config_0, {});
41
39
  };
@@ -1,10 +1,9 @@
1
1
  export const resolveClientEndpointParameters = (options) => {
2
- return {
3
- ...options,
2
+ return Object.assign(options, {
4
3
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
5
4
  useFipsEndpoint: options.useFipsEndpoint ?? false,
6
5
  defaultSigningName: "iotwireless",
7
- };
6
+ });
8
7
  };
9
8
  export const commonParams = {
10
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
2
2
  import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
3
  import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
- const asPartial = (t) => t;
6
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
7
- const extensionConfiguration = {
8
- ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
9
- ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
10
- ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
11
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
12
- };
6
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
13
7
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
14
- return {
15
- ...runtimeConfig,
16
- ...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
17
- ...resolveDefaultRuntimeConfig(extensionConfiguration),
18
- ...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
19
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration),
20
- };
8
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
21
9
  };
@@ -814,7 +814,7 @@ export interface IoTWireless {
814
814
  * <p>AWS IoT Wireless provides bi-directional communication between internet-connected
815
815
  * wireless devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS
816
816
  * IoT, use the IoT Wireless API. These wireless devices use the Low Power Wide Area
817
- * Networking (LPWAN) communication protocol to communicate with AWS IoT.</p>
817
+ * Networking (LPWAN) communication protocol to communicate with AWS IoT. </p>
818
818
  * <p>Using the API, you can perform create, read, update, and delete operations for your
819
819
  * wireless devices, gateways, destinations, and profiles. After onboarding your devices,
820
820
  * you can use the API operations to set log levels and monitor your devices with
@@ -825,8 +825,11 @@ export interface IoTWireless {
825
825
  * schedule a session to update the firmware of individual devices or an entire group of
826
826
  * devices in a multicast group.</p>
827
827
  * <p>To connect to the AWS IoT Wireless Service, use the Service endpoints as described in
828
- * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT Wireless Service
829
- * endpoints</a> in the <i>AWS General Reference</i>.</p>
828
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT
829
+ * Wireless Service endpoints</a>. You can use both IPv4 and IPv6 protocols to connect
830
+ * to the endpoints and send requests to the AWS IoT Wireless service. For more information,
831
+ * see <a href="https://docs.aws.amazon.com/iot-wireless/latest/developerguide/wireless-ipv6-access.html">Using
832
+ * IPv6 with AWS IoT Wireless</a>.</p>
830
833
  * @public
831
834
  */
832
835
  export declare class IoTWireless extends IoTWirelessClient implements IoTWireless {
@@ -284,7 +284,7 @@ export interface IoTWirelessClientResolvedConfig extends IoTWirelessClientResolv
284
284
  * <p>AWS IoT Wireless provides bi-directional communication between internet-connected
285
285
  * wireless devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS
286
286
  * IoT, use the IoT Wireless API. These wireless devices use the Low Power Wide Area
287
- * Networking (LPWAN) communication protocol to communicate with AWS IoT.</p>
287
+ * Networking (LPWAN) communication protocol to communicate with AWS IoT. </p>
288
288
  * <p>Using the API, you can perform create, read, update, and delete operations for your
289
289
  * wireless devices, gateways, destinations, and profiles. After onboarding your devices,
290
290
  * you can use the API operations to set log levels and monitor your devices with
@@ -295,8 +295,11 @@ export interface IoTWirelessClientResolvedConfig extends IoTWirelessClientResolv
295
295
  * schedule a session to update the firmware of individual devices or an entire group of
296
296
  * devices in a multicast group.</p>
297
297
  * <p>To connect to the AWS IoT Wireless Service, use the Service endpoints as described in
298
- * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT Wireless Service
299
- * endpoints</a> in the <i>AWS General Reference</i>.</p>
298
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT
299
+ * Wireless Service endpoints</a>. You can use both IPv4 and IPv6 protocols to connect
300
+ * to the endpoints and send requests to the AWS IoT Wireless service. For more information,
301
+ * see <a href="https://docs.aws.amazon.com/iot-wireless/latest/developerguide/wireless-ipv6-access.html">Using
302
+ * IPv6 with AWS IoT Wireless</a>.</p>
300
303
  * @public
301
304
  */
302
305
  export declare class IoTWirelessClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTWirelessClientResolvedConfig> {
@@ -29,19 +29,19 @@ declare const CreateWirelessGatewayCommand_base: {
29
29
  /**
30
30
  * <p>Provisions a wireless gateway.</p>
31
31
  * <note>
32
- * <p>When provisioning a wireless gateway, you might run into duplication errors
33
- * for the following reasons.</p>
32
+ * <p>When provisioning a wireless gateway, you might run into duplication errors for
33
+ * the following reasons.</p>
34
34
  * <ul>
35
35
  * <li>
36
36
  * <p>If you specify a <code>GatewayEui</code> value that already exists.</p>
37
37
  * </li>
38
38
  * <li>
39
39
  * <p>If you used a <code>ClientRequestToken</code> with the same parameters
40
- * within the last 10 minutes.</p>
40
+ * within the last 10 minutes.</p>
41
41
  * </li>
42
42
  * </ul>
43
- * <p>To avoid this error, make sure that you use unique identifiers and parameters
44
- * for each request within the specified time period.</p>
43
+ * <p>To avoid this error, make sure that you use unique identifiers and parameters for
44
+ * each request within the specified time period.</p>
45
45
  * </note>
46
46
  * @example
47
47
  * Use a bare-bones client and the command you need to make an API call.
@@ -27,7 +27,7 @@ declare const DeleteMulticastGroupCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a multicast group if it is not in use by a fuota task.</p>
30
+ * <p>Deletes a multicast group if it is not in use by a FUOTA task.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -24,24 +24,24 @@ export interface DeleteWirelessGatewayCommandOutput extends DeleteWirelessGatewa
24
24
  declare const DeleteWirelessGatewayCommand_base: {
25
25
  new (input: DeleteWirelessGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
26
  new (__0_0: DeleteWirelessGatewayCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; /** @internal type navigation helper, not in runtime. */
28
28
  };
29
29
  /**
30
30
  * <p>Deletes a wireless gateway.</p>
31
31
  * <note>
32
- * <p>When deleting a wireless gateway, you might run into duplication errors
33
- * for the following reasons.</p>
32
+ * <p>When deleting a wireless gateway, you might run into duplication errors for the
33
+ * following reasons.</p>
34
34
  * <ul>
35
35
  * <li>
36
36
  * <p>If you specify a <code>GatewayEui</code> value that already exists.</p>
37
37
  * </li>
38
38
  * <li>
39
39
  * <p>If you used a <code>ClientRequestToken</code> with the same parameters
40
- * within the last 10 minutes.</p>
40
+ * within the last 10 minutes.</p>
41
41
  * </li>
42
42
  * </ul>
43
- * <p>To avoid this error, make sure that you use unique identifiers and parameters
44
- * for each request within the specified time period.</p>
43
+ * <p>To avoid this error, make sure that you use unique identifiers and parameters for
44
+ * each request within the specified time period.</p>
45
45
  * </note>
46
46
  * @example
47
47
  * Use a bare-bones client and the command you need to make an API call.
@@ -27,7 +27,7 @@ declare const DisassociateMulticastGroupFromFuotaTaskCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Disassociates a multicast group from a fuota task.</p>
30
+ * <p>Disassociates a multicast group from a FUOTA task.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,9 +27,9 @@ declare const GetLogLevelsByResourceTypesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Returns current default log levels or log levels by resource types. Based on resource
31
- * types, log levels can be for wireless device log options or wireless gateway log
32
- * options.</p>
30
+ * <p>Returns current default log levels or log levels by resource types. Based on the
31
+ * resource type, log levels can be returned for wireless device, wireless gateway, or
32
+ * FUOTA task log options.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -141,7 +141,7 @@ declare const GetPositionEstimateCommand_base: {
141
141
  * { // LteNmrObj
142
142
  * Pci: Number("int"), // required
143
143
  * Earfcn: Number("int"), // required
144
- * EutranCid: Number("int"), // required
144
+ * EutranCid: Number("int"),
145
145
  * Rsrp: Number("int"),
146
146
  * Rsrq: Number("float"),
147
147
  * },
@@ -27,8 +27,8 @@ declare const GetResourceLogLevelCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Fetches the log-level override, if any, for a given resource-ID and resource-type. It
31
- * can be used for a wireless device, wireless gateway or fuota task.</p>
30
+ * <p>Fetches the log-level override, if any, for a given resource ID and resource
31
+ * type..</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -27,7 +27,7 @@ declare const ListMulticastGroupsByFuotaTaskCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>List all multicast groups associated with a fuota task.</p>
30
+ * <p>List all multicast groups associated with a FUOTA task.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,9 +27,8 @@ declare const PutResourceLogLevelCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Sets the log-level override for a resource-ID and resource-type. This option can be
31
- * specified for a wireless gateway or a wireless device. A limit of 200 log level override
32
- * can be set per account.</p>
30
+ * <p>Sets the log-level override for a resource ID and resource type. A limit of 200 log
31
+ * level override can be set per account.</p>
33
32
  * @example
34
33
  * Use a bare-bones client and the command you need to make an API call.
35
34
  * ```javascript
@@ -28,7 +28,7 @@ declare const ResetAllResourceLogLevelsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Removes the log-level overrides for all resources; wireless devices, wireless
31
- * gateways, and fuota tasks.</p>
31
+ * gateways, and FUOTA tasks.</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -27,8 +27,8 @@ declare const ResetResourceLogLevelCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Removes the log-level override, if any, for a specific resource-ID and resource-type.
31
- * It can be used for a wireless device, a wireless gateway, or a fuota task.</p>
30
+ * <p>Removes the log-level override, if any, for a specific resource ID and resource type.
31
+ * It can be used for a wireless device, a wireless gateway, or a FUOTA task.</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -28,7 +28,7 @@ declare const UpdateLogLevelsByResourceTypesCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Set default log level, or log levels by resource types. This can be for wireless
31
- * device log options or wireless gateways log options and is used to control the log
31
+ * device, wireless gateway, or FUOTA task log options, and is used to control the log
32
32
  * messages that'll be displayed in CloudWatch.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
@@ -2,7 +2,7 @@
2
2
  * <p>AWS IoT Wireless provides bi-directional communication between internet-connected
3
3
  * wireless devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS
4
4
  * IoT, use the IoT Wireless API. These wireless devices use the Low Power Wide Area
5
- * Networking (LPWAN) communication protocol to communicate with AWS IoT.</p>
5
+ * Networking (LPWAN) communication protocol to communicate with AWS IoT. </p>
6
6
  * <p>Using the API, you can perform create, read, update, and delete operations for your
7
7
  * wireless devices, gateways, destinations, and profiles. After onboarding your devices,
8
8
  * you can use the API operations to set log levels and monitor your devices with
@@ -13,8 +13,11 @@
13
13
  * schedule a session to update the firmware of individual devices or an entire group of
14
14
  * devices in a multicast group.</p>
15
15
  * <p>To connect to the AWS IoT Wireless Service, use the Service endpoints as described in
16
- * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT Wireless Service
17
- * endpoints</a> in the <i>AWS General Reference</i>.</p>
16
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/iot-lorawan.html#iot-wireless_region">IoT
17
+ * Wireless Service endpoints</a>. You can use both IPv4 and IPv6 protocols to connect
18
+ * to the endpoints and send requests to the AWS IoT Wireless service. For more information,
19
+ * see <a href="https://docs.aws.amazon.com/iot-wireless/latest/developerguide/wireless-ipv6-access.html">Using
20
+ * IPv6 with AWS IoT Wireless</a>.</p>
18
21
  *
19
22
  * @packageDocumentation
20
23
  */
@@ -207,12 +207,14 @@ export interface AssociateAwsAccountWithPartnerAccountRequest {
207
207
  */
208
208
  Sidewalk: SidewalkAccountInfo | undefined;
209
209
  /**
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>
210
+ * <p>Each resource must have a unique client request token. The client token is used to
211
+ * implement idempotency. It ensures that the request completes no more than one time. If
212
+ * you retry a request with the same token and the same parameters, the request will
213
+ * complete successfully. However, if you try to create a new resource using the same token
214
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
215
+ * will automatically generate a unique client request. For more information about
216
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
217
+ * EC2 API requests</a>.</p>
216
218
  * @public
217
219
  */
218
220
  ClientRequestToken?: string | undefined;
@@ -734,7 +736,7 @@ export interface LteNmrObj {
734
736
  * (EUTRANCID).</p>
735
737
  * @public
736
738
  */
737
- EutranCid: number | undefined;
739
+ EutranCid?: number | undefined;
738
740
  /**
739
741
  * <p>Signal power of the reference signal received, measured in dBm
740
742
  * (decibel-milliwatts).</p>
@@ -1190,12 +1192,14 @@ export interface CreateDestinationRequest {
1190
1192
  */
1191
1193
  Tags?: Tag[] | undefined;
1192
1194
  /**
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
+ * <p>Each resource must have a unique client request token. The client token is used to
1196
+ * implement idempotency. It ensures that the request completes no more than one time. If
1197
+ * you retry a request with the same token and the same parameters, the request will
1198
+ * complete successfully. However, if you try to create a new resource using the same token
1199
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1200
+ * will automatically generate a unique client request. For more information about
1201
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1202
+ * EC2 API requests</a>.</p>
1199
1203
  * @public
1200
1204
  */
1201
1205
  ClientRequestToken?: string | undefined;
@@ -1344,12 +1348,14 @@ export interface CreateDeviceProfileRequest {
1344
1348
  */
1345
1349
  Tags?: Tag[] | undefined;
1346
1350
  /**
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>
1351
+ * <p>Each resource must have a unique client request token. The client token is used to
1352
+ * implement idempotency. It ensures that the request completes no more than one time. If
1353
+ * you retry a request with the same token and the same parameters, the request will
1354
+ * complete successfully. However, if you try to create a new resource using the same token
1355
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1356
+ * will automatically generate a unique client request. For more information about
1357
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1358
+ * EC2 API requests</a>.</p>
1353
1359
  * @public
1354
1360
  */
1355
1361
  ClientRequestToken?: string | undefined;
@@ -1423,12 +1429,14 @@ export interface CreateFuotaTaskRequest {
1423
1429
  */
1424
1430
  Description?: string | undefined;
1425
1431
  /**
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>
1432
+ * <p>Each resource must have a unique client request token. The client token is used to
1433
+ * implement idempotency. It ensures that the request completes no more than one time. If
1434
+ * you retry a request with the same token and the same parameters, the request will
1435
+ * complete successfully. However, if you try to create a new resource using the same token
1436
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1437
+ * will automatically generate a unique client request. For more information about
1438
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1439
+ * EC2 API requests</a>.</p>
1432
1440
  * @public
1433
1441
  */
1434
1442
  ClientRequestToken?: string | undefined;
@@ -1481,8 +1489,8 @@ export interface CreateFuotaTaskRequest {
1481
1489
  */
1482
1490
  FragmentIntervalMS?: number | undefined;
1483
1491
  /**
1484
- * <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
1485
- * It is sent transparently to the device. It is a binary field encoded in base64</p>
1492
+ * <p>The descriptor is the metadata about the file that is transferred to the device using
1493
+ * FUOTA, such as the software version. It is a binary field encoded in base64.</p>
1486
1494
  * @public
1487
1495
  */
1488
1496
  Descriptor?: string | undefined;
@@ -1515,22 +1523,23 @@ export declare const DlClass: {
1515
1523
  */
1516
1524
  export type DlClass = (typeof DlClass)[keyof typeof DlClass];
1517
1525
  /**
1518
- * <p>Specify the list of gateways to which you want to send the multicast downlink messages.
1519
- * The multicast message will be sent to each gateway in the sequence provided in the list.</p>
1526
+ * <p>Specify the list of gateways to which you want to send the multicast downlink
1527
+ * messages. The multicast message will be sent to each gateway in the list, with the
1528
+ * transmission interval as the time interval between each message.</p>
1520
1529
  * @public
1521
1530
  */
1522
1531
  export interface ParticipatingGatewaysMulticast {
1523
1532
  /**
1524
- * <p>The list of gateways that you want to use for sending the multicast downlink. Each downlink will be
1525
- * sent to all the gateways in the list with transmission interval between them. If list is empty the gateway
1526
- * list will be dynamically selected similar to the case of no ParticipatingGateways
1527
- * </p>
1533
+ * <p>The list of gateways that you want to use for sending the multicast downlink message.
1534
+ * Each downlink message will be sent to all the gateways in the list in the order that you
1535
+ * provided. If the gateway list is empty, then AWS IoT Core for LoRaWAN chooses the
1536
+ * gateways that were most recently used by the devices to send an uplink message.</p>
1528
1537
  * @public
1529
1538
  */
1530
1539
  GatewayList?: string[] | undefined;
1531
1540
  /**
1532
- * <p>The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting
1533
- * the multicast payload to the next gateway in the list.</p>
1541
+ * <p>The duration of time in milliseconds for which AWS IoT Core for LoRaWAN will wait
1542
+ * before transmitting the multicast payload to the next gateway in the list.</p>
1534
1543
  * @public
1535
1544
  */
1536
1545
  TransmissionInterval?: number | undefined;
@@ -1551,8 +1560,9 @@ export interface LoRaWANMulticast {
1551
1560
  */
1552
1561
  DlClass?: DlClass | undefined;
1553
1562
  /**
1554
- * <p>Specify the list of gateways to which you want to send the multicast downlink messages.
1555
- * The multicast message will be sent to each gateway in the sequence provided in the list.</p>
1563
+ * <p>Specify the list of gateways to which you want to send the multicast downlink
1564
+ * messages. The multicast message will be sent to each gateway in the list, with the
1565
+ * transmission interval as the time interval between each message.</p>
1556
1566
  * @public
1557
1567
  */
1558
1568
  ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
@@ -1572,12 +1582,14 @@ export interface CreateMulticastGroupRequest {
1572
1582
  */
1573
1583
  Description?: string | undefined;
1574
1584
  /**
1575
- * <p>Each resource must have a unique client request token. The client token is used to implement
1576
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
1577
- * with the same token and the same parameters, the request will complete successfully. However, if
1578
- * you try to create a new resource using the same token but different parameters, an HTTP 409
1579
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1580
- * 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>
1585
+ * <p>Each resource must have a unique client request token. The client token is used to
1586
+ * implement idempotency. It ensures that the request completes no more than one time. If
1587
+ * you retry a request with the same token and the same parameters, the request will
1588
+ * complete successfully. However, if you try to create a new resource using the same token
1589
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1590
+ * will automatically generate a unique client request. For more information about
1591
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1592
+ * EC2 API requests</a>.</p>
1581
1593
  * @public
1582
1594
  */
1583
1595
  ClientRequestToken?: string | undefined;
@@ -1712,12 +1724,14 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
1712
1724
  */
1713
1725
  Tags?: Tag[] | undefined;
1714
1726
  /**
1715
- * <p>Each resource must have a unique client request token. The client token is used to implement
1716
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
1717
- * with the same token and the same parameters, the request will complete successfully. However, if
1718
- * you try to create a new resource using the same token but different parameters, an HTTP 409
1719
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1720
- * 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>
1727
+ * <p>Each resource must have a unique client request token. The client token is used to
1728
+ * implement idempotency. It ensures that the request completes no more than one time. If
1729
+ * you retry a request with the same token and the same parameters, the request will
1730
+ * complete successfully. However, if you try to create a new resource using the same token
1731
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1732
+ * will automatically generate a unique client request. For more information about
1733
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1734
+ * EC2 API requests</a>.</p>
1721
1735
  * @public
1722
1736
  */
1723
1737
  ClientRequestToken?: string | undefined;
@@ -1795,12 +1809,14 @@ export interface CreateServiceProfileRequest {
1795
1809
  */
1796
1810
  Tags?: Tag[] | undefined;
1797
1811
  /**
1798
- * <p>Each resource must have a unique client request token. The client token is used to implement
1799
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
1800
- * with the same token and the same parameters, the request will complete successfully. However, if
1801
- * you try to create a new resource using the same token but different parameters, an HTTP 409
1802
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1803
- * 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>
1812
+ * <p>Each resource must have a unique client request token. The client token is used to
1813
+ * implement idempotency. It ensures that the request completes no more than one time. If
1814
+ * you retry a request with the same token and the same parameters, the request will
1815
+ * complete successfully. However, if you try to create a new resource using the same token
1816
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1817
+ * will automatically generate a unique client request. For more information about
1818
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1819
+ * EC2 API requests</a>.</p>
1804
1820
  * @public
1805
1821
  */
1806
1822
  ClientRequestToken?: string | undefined;
@@ -2028,12 +2044,14 @@ export interface CreateWirelessDeviceRequest {
2028
2044
  */
2029
2045
  DestinationName: string | undefined;
2030
2046
  /**
2031
- * <p>Each resource must have a unique client request token. The client token is used to implement
2032
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
2033
- * with the same token and the same parameters, the request will complete successfully. However, if
2034
- * you try to create a new resource using the same token but different parameters, an HTTP 409
2035
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2036
- * 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>
2047
+ * <p>Each resource must have a unique client request token. The client token is used to
2048
+ * implement idempotency. It ensures that the request completes no more than one time. If
2049
+ * you retry a request with the same token and the same parameters, the request will
2050
+ * complete successfully. However, if you try to create a new resource using the same token
2051
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
2052
+ * will automatically generate a unique client request. For more information about
2053
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
2054
+ * EC2 API requests</a>.</p>
2037
2055
  * @public
2038
2056
  */
2039
2057
  ClientRequestToken?: string | undefined;
@@ -2144,12 +2162,14 @@ export interface CreateWirelessGatewayRequest {
2144
2162
  */
2145
2163
  Tags?: Tag[] | undefined;
2146
2164
  /**
2147
- * <p>Each resource must have a unique client request token. The client token is used to implement
2148
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
2149
- * with the same token and the same parameters, the request will complete successfully. However, if
2150
- * you try to create a new resource using the same token but different parameters, an HTTP 409
2151
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2152
- * 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>
2165
+ * <p>Each resource must have a unique client request token. The client token is used to
2166
+ * implement idempotency. It ensures that the request completes no more than one time. If
2167
+ * you retry a request with the same token and the same parameters, the request will
2168
+ * complete successfully. However, if you try to create a new resource using the same token
2169
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
2170
+ * will automatically generate a unique client request. For more information about
2171
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
2172
+ * EC2 API requests</a>.</p>
2153
2173
  * @public
2154
2174
  */
2155
2175
  ClientRequestToken?: string | undefined;
@@ -2305,12 +2325,14 @@ export interface CreateWirelessGatewayTaskDefinitionRequest {
2305
2325
  */
2306
2326
  Update?: UpdateWirelessGatewayTaskCreate | undefined;
2307
2327
  /**
2308
- * <p>Each resource must have a unique client request token. The client token is used to implement
2309
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
2310
- * with the same token and the same parameters, the request will complete successfully. However, if
2311
- * you try to create a new resource using the same token but different parameters, an HTTP 409
2312
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
2313
- * 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>
2328
+ * <p>Each resource must have a unique client request token. The client token is used to
2329
+ * implement idempotency. It ensures that the request completes no more than one time. If
2330
+ * you retry a request with the same token and the same parameters, the request will
2331
+ * complete successfully. However, if you try to create a new resource using the same token
2332
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
2333
+ * will automatically generate a unique client request. For more information about
2334
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
2335
+ * EC2 API requests</a>.</p>
2314
2336
  * @public
2315
2337
  */
2316
2338
  ClientRequestToken?: string | undefined;
@@ -3225,13 +3247,14 @@ export declare const FuotaTaskEvent: {
3225
3247
  export type FuotaTaskEvent = (typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
3226
3248
  /**
3227
3249
  * <p>The log options for a FUOTA task event and can be used to set log levels for a
3228
- * specific fuota task event.</p>
3229
- * <p>For a LoRaWAN FuotaTask type, possible event for a log message is <code>Fuota</code>.</p>
3250
+ * specific FUOTA task event.</p>
3251
+ * <p>For a LoRaWAN FUOTA task, the only possible event for a log message is
3252
+ * <code>Fuota</code>.</p>
3230
3253
  * @public
3231
3254
  */
3232
3255
  export interface FuotaTaskEventLogOption {
3233
3256
  /**
3234
- * <p>The event for a log message, if the log message is tied to a fuota task.</p>
3257
+ * <p>The event for a log message, if the log message is tied to a FUOTA task.</p>
3235
3258
  * @public
3236
3259
  */
3237
3260
  Event: FuotaTaskEvent | undefined;
@@ -3255,13 +3278,13 @@ export declare const FuotaTaskType: {
3255
3278
  */
3256
3279
  export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
3257
3280
  /**
3258
- * <p>The log options for fuota tasks and can be used to set log levels for a specific
3259
- * type of fuota task.</p>
3281
+ * <p>The log options for FUOTA tasks and can be used to set log levels for a specific type
3282
+ * of FUOTA task.</p>
3260
3283
  * @public
3261
3284
  */
3262
3285
  export interface FuotaTaskLogOption {
3263
3286
  /**
3264
- * <p>The fuota task type.</p>
3287
+ * <p>The FUOTA task type.</p>
3265
3288
  * @public
3266
3289
  */
3267
3290
  Type: FuotaTaskType | undefined;
@@ -3586,8 +3609,8 @@ export interface GetFuotaTaskResponse {
3586
3609
  */
3587
3610
  FragmentIntervalMS?: number | undefined;
3588
3611
  /**
3589
- * <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
3590
- * It is sent transparently to the device. It is a binary field encoded in base64</p>
3612
+ * <p>The descriptor is the metadata about the file that is transferred to the device using
3613
+ * FUOTA, such as the software version. It is a binary field encoded in base64.</p>
3591
3614
  * @public
3592
3615
  */
3593
3616
  Descriptor?: string | undefined;
@@ -3749,7 +3772,7 @@ export interface GetLogLevelsByResourceTypesResponse {
3749
3772
  */
3750
3773
  WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
3751
3774
  /**
3752
- * <p>The list of fuota task log options.</p>
3775
+ * <p>The list of FUOTA task log options.</p>
3753
3776
  * @public
3754
3777
  */
3755
3778
  FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
@@ -4042,8 +4065,9 @@ export interface LoRaWANMulticastGet {
4042
4065
  */
4043
4066
  NumberOfDevicesInGroup?: number | undefined;
4044
4067
  /**
4045
- * <p>Specify the list of gateways to which you want to send the multicast downlink messages.
4046
- * The multicast message will be sent to each gateway in the sequence provided in the list.</p>
4068
+ * <p>Specify the list of gateways to which you want to send the multicast downlink
4069
+ * messages. The multicast message will be sent to each gateway in the list, with the
4070
+ * transmission interval as the time interval between each message.</p>
4047
4071
  * @public
4048
4072
  */
4049
4073
  ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
@@ -4601,14 +4625,14 @@ export interface GetResourceEventConfigurationResponse {
4601
4625
  */
4602
4626
  export interface GetResourceLogLevelRequest {
4603
4627
  /**
4604
- * <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
4605
- * For a wireless gateway, it is the wireless gateway ID.</p>
4628
+ * <p>The unique identifier of the resource, which can be the wireless gateway ID, the
4629
+ * wireless device ID, or the FUOTA task ID.</p>
4606
4630
  * @public
4607
4631
  */
4608
4632
  ResourceIdentifier: string | undefined;
4609
4633
  /**
4610
- * <p>The type of the resource, which can be <code>WirelessDevice</code>,
4611
- * <code>WirelessGateway</code> or <code>FuotaTask</code>.</p>
4634
+ * <p>The type of resource, which can be <code>WirelessDevice</code>,
4635
+ * <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
4612
4636
  * @public
4613
4637
  */
4614
4638
  ResourceType: string | undefined;
@@ -4674,7 +4698,7 @@ export interface GetServiceEndpointRequest {
4674
4698
  /**
4675
4699
  * <p>The service type for which to get endpoint information about. Can be <code>CUPS</code>
4676
4700
  * for the Configuration and Update Server endpoint, or <code>LNS</code> for the LoRaWAN
4677
- * Network Server endpoint or <code>CLAIM</code> for the global endpoint.</p>
4701
+ * Network Server endpoint.</p>
4678
4702
  * @public
4679
4703
  */
4680
4704
  ServiceType?: WirelessGatewayServiceType | undefined;
@@ -759,13 +759,13 @@ export interface PutPositionConfigurationResponse {
759
759
  */
760
760
  export interface PutResourceLogLevelRequest {
761
761
  /**
762
- * <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
763
- * For a wireless gateway, it is the wireless gateway ID.</p>
762
+ * <p>The unique identifier of the resource, which can be the wireless gateway ID, the
763
+ * wireless device ID, or the FUOTA task ID.</p>
764
764
  * @public
765
765
  */
766
766
  ResourceIdentifier: string | undefined;
767
767
  /**
768
- * <p>The type of the resource, which can be <code>WirelessDevice</code>,
768
+ * <p>The type of resource, which can be <code>WirelessDevice</code>,
769
769
  * <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
770
770
  * @public
771
771
  */
@@ -798,13 +798,13 @@ export interface ResetAllResourceLogLevelsResponse {
798
798
  */
799
799
  export interface ResetResourceLogLevelRequest {
800
800
  /**
801
- * <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
802
- * For a wireless gateway, it is the wireless gateway ID.</p>
801
+ * <p>The unique identifier of the resource, which can be the wireless gateway ID, the
802
+ * wireless device ID, or the FUOTA task ID.</p>
803
803
  * @public
804
804
  */
805
805
  ResourceIdentifier: string | undefined;
806
806
  /**
807
- * <p>The type of the resource, which can be <code>WirelessDevice</code>,
807
+ * <p>The type of resource, which can be <code>WirelessDevice</code>,
808
808
  * <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
809
809
  * @public
810
810
  */
@@ -1083,12 +1083,14 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
1083
1083
  */
1084
1084
  DestinationName: string | undefined;
1085
1085
  /**
1086
- * <p>Each resource must have a unique client request token. The client token is used to implement
1087
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
1088
- * with the same token and the same parameters, the request will complete successfully. However, if
1089
- * you try to create a new resource using the same token but different parameters, an HTTP 409
1090
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1091
- * 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>
1086
+ * <p>Each resource must have a unique client request token. The client token is used to
1087
+ * implement idempotency. It ensures that the request completes no more than one time. If
1088
+ * you retry a request with the same token and the same parameters, the request will
1089
+ * complete successfully. However, if you try to create a new resource using the same token
1090
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1091
+ * will automatically generate a unique client request. For more information about
1092
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1093
+ * EC2 API requests</a>.</p>
1092
1094
  * @public
1093
1095
  */
1094
1096
  ClientRequestToken?: string | undefined;
@@ -1153,12 +1155,14 @@ export interface StartWirelessDeviceImportTaskRequest {
1153
1155
  */
1154
1156
  DestinationName: string | undefined;
1155
1157
  /**
1156
- * <p>Each resource must have a unique client request token. The client token is used to implement
1157
- * idempotency. It ensures that the request completes no more than one time. If you retry a request
1158
- * with the same token and the same parameters, the request will complete successfully. However, if
1159
- * you try to create a new resource using the same token but different parameters, an HTTP 409
1160
- * conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1161
- * 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>
1158
+ * <p>Each resource must have a unique client request token. The client token is used to
1159
+ * implement idempotency. It ensures that the request completes no more than one time. If
1160
+ * you retry a request with the same token and the same parameters, the request will
1161
+ * complete successfully. However, if you try to create a new resource using the same token
1162
+ * but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs
1163
+ * will automatically generate a unique client request. For more information about
1164
+ * idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon
1165
+ * EC2 API requests</a>.</p>
1162
1166
  * @public
1163
1167
  */
1164
1168
  ClientRequestToken?: string | undefined;
@@ -1406,8 +1410,8 @@ export interface UpdateFuotaTaskRequest {
1406
1410
  */
1407
1411
  FragmentIntervalMS?: number | undefined;
1408
1412
  /**
1409
- * <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
1410
- * It is sent transparently to the device. It is a binary field encoded in base64</p>
1413
+ * <p>The descriptor is the metadata about the file that is transferred to the device using
1414
+ * FUOTA, such as the software version. It is a binary field encoded in base64.</p>
1411
1415
  * @public
1412
1416
  */
1413
1417
  Descriptor?: string | undefined;
@@ -1429,7 +1433,7 @@ export interface UpdateLogLevelsByResourceTypesRequest {
1429
1433
  */
1430
1434
  DefaultLogLevel?: LogLevel | undefined;
1431
1435
  /**
1432
- * <p>The list of fuota task log options.</p>
1436
+ * <p>The list of FUOTA task log options.</p>
1433
1437
  * @public
1434
1438
  */
1435
1439
  FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
@@ -206,7 +206,7 @@ export interface LteLocalId {
206
206
  export interface LteNmrObj {
207
207
  Pci: number | undefined;
208
208
  Earfcn: number | undefined;
209
- EutranCid: number | undefined;
209
+ EutranCid?: number | undefined;
210
210
  Rsrp?: number | undefined;
211
211
  Rsrq?: number | undefined;
212
212
  }
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.772.0",
4
+ "version": "3.775.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,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.758.0",
24
- "@aws-sdk/credential-provider-node": "3.772.0",
25
- "@aws-sdk/middleware-host-header": "3.734.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.758.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.758.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.775.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
58
- "@smithy/util-stream": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
+ "@smithy/util-stream": "^4.2.0",
59
59
  "@smithy/util-utf8": "^4.0.0",
60
60
  "@types/uuid": "^9.0.1",
61
61
  "tslib": "^2.6.2",