@aws-sdk/client-iot-wireless 3.540.0 → 3.545.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +27 -0
  2. package/dist-cjs/index.js +256 -0
  3. package/dist-es/IoTWireless.js +6 -0
  4. package/dist-es/commands/GetMetricConfigurationCommand.js +24 -0
  5. package/dist-es/commands/GetMetricsCommand.js +24 -0
  6. package/dist-es/commands/UpdateMetricConfigurationCommand.js +24 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +49 -0
  9. package/dist-es/protocols/Aws_restJson1.js +141 -0
  10. package/dist-types/IoTWireless.d.ts +27 -0
  11. package/dist-types/IoTWirelessClient.d.ts +8 -2
  12. package/dist-types/commands/GetMetricConfigurationCommand.d.ts +77 -0
  13. package/dist-types/commands/GetMetricsCommand.d.ts +121 -0
  14. package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +2 -1
  15. package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
  16. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  18. package/dist-types/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  19. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -2
  20. package/dist-types/commands/UpdateMetricConfigurationCommand.d.ts +77 -0
  21. package/dist-types/commands/index.d.ts +3 -0
  22. package/dist-types/index.d.ts +3 -0
  23. package/dist-types/models/models_0.d.ts +287 -321
  24. package/dist-types/models/models_1.d.ts +335 -1
  25. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  26. package/dist-types/ts3.4/IoTWireless.d.ts +54 -0
  27. package/dist-types/ts3.4/IoTWirelessClient.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/GetMetricConfigurationCommand.d.ts +39 -0
  29. package/dist-types/ts3.4/commands/GetMetricsCommand.d.ts +35 -0
  30. package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +2 -4
  31. package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/ListServiceProfilesCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/ListWirelessDevicesCommand.d.ts +4 -2
  36. package/dist-types/ts3.4/commands/UpdateMetricConfigurationCommand.d.ts +39 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +103 -73
  39. package/dist-types/ts3.4/models/models_1.d.ts +82 -1
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  41. package/package.json +1 -1
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../IoTWirelessClient";
8
- import { ListWirelessDevicesRequest } from "../models/models_0";
9
- import { ListWirelessDevicesResponse } from "../models/models_1";
8
+ import {
9
+ ListWirelessDevicesRequest,
10
+ ListWirelessDevicesResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer, $Command };
11
13
  export interface ListWirelessDevicesCommandInput
12
14
  extends ListWirelessDevicesRequest {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ IoTWirelessClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../IoTWirelessClient";
8
+ import {
9
+ UpdateMetricConfigurationRequest,
10
+ UpdateMetricConfigurationResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UpdateMetricConfigurationCommandInput
14
+ extends UpdateMetricConfigurationRequest {}
15
+ export interface UpdateMetricConfigurationCommandOutput
16
+ extends UpdateMetricConfigurationResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateMetricConfigurationCommand_base: {
19
+ new (
20
+ input: UpdateMetricConfigurationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateMetricConfigurationCommandInput,
23
+ UpdateMetricConfigurationCommandOutput,
24
+ IoTWirelessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [UpdateMetricConfigurationCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateMetricConfigurationCommandInput,
32
+ UpdateMetricConfigurationCommandOutput,
33
+ IoTWirelessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateMetricConfigurationCommand extends UpdateMetricConfigurationCommand_base {}
@@ -41,6 +41,8 @@ export * from "./GetDeviceProfileCommand";
41
41
  export * from "./GetEventConfigurationByResourceTypesCommand";
42
42
  export * from "./GetFuotaTaskCommand";
43
43
  export * from "./GetLogLevelsByResourceTypesCommand";
44
+ export * from "./GetMetricConfigurationCommand";
45
+ export * from "./GetMetricsCommand";
44
46
  export * from "./GetMulticastGroupCommand";
45
47
  export * from "./GetMulticastGroupSessionCommand";
46
48
  export * from "./GetNetworkAnalyzerConfigurationCommand";
@@ -98,6 +100,7 @@ export * from "./UpdateDestinationCommand";
98
100
  export * from "./UpdateEventConfigurationByResourceTypesCommand";
99
101
  export * from "./UpdateFuotaTaskCommand";
100
102
  export * from "./UpdateLogLevelsByResourceTypesCommand";
103
+ export * from "./UpdateMetricConfigurationCommand";
101
104
  export * from "./UpdateMulticastGroupCommand";
102
105
  export * from "./UpdateNetworkAnalyzerConfigurationCommand";
103
106
  export * from "./UpdatePartnerAccountCommand";
@@ -32,6 +32,13 @@ export interface Accuracy {
32
32
  HorizontalAccuracy?: number;
33
33
  VerticalAccuracy?: number;
34
34
  }
35
+ export declare const AggregationPeriod: {
36
+ readonly OneDay: "OneDay";
37
+ readonly OneHour: "OneHour";
38
+ readonly OneWeek: "OneWeek";
39
+ };
40
+ export type AggregationPeriod =
41
+ (typeof AggregationPeriod)[keyof typeof AggregationPeriod];
35
42
  export declare const ApplicationConfigType: {
36
43
  readonly SemtechGeoLocation: "SemtechGeolocation";
37
44
  };
@@ -690,6 +697,15 @@ export declare const DeviceState: {
690
697
  readonly REGISTEREDUNREACHABLE: "RegisteredUnreachable";
691
698
  };
692
699
  export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
700
+ export declare const DimensionName: {
701
+ readonly DeviceId: "DeviceId";
702
+ readonly GatewayId: "GatewayId";
703
+ };
704
+ export type DimensionName = (typeof DimensionName)[keyof typeof DimensionName];
705
+ export interface Dimension {
706
+ name?: DimensionName;
707
+ value?: string;
708
+ }
693
709
  export declare const PartnerType: {
694
710
  readonly Sidewalk: "Sidewalk";
695
711
  };
@@ -948,6 +964,93 @@ export interface GetLogLevelsByResourceTypesResponse {
948
964
  WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
949
965
  WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
950
966
  }
967
+ export interface GetMetricConfigurationRequest {}
968
+ export declare const SummaryMetricConfigurationStatus: {
969
+ readonly Disabled: "Disabled";
970
+ readonly Enabled: "Enabled";
971
+ };
972
+ export type SummaryMetricConfigurationStatus =
973
+ (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
974
+ export interface SummaryMetricConfiguration {
975
+ Status?: SummaryMetricConfigurationStatus;
976
+ }
977
+ export interface GetMetricConfigurationResponse {
978
+ SummaryMetric?: SummaryMetricConfiguration;
979
+ }
980
+ export declare const MetricName: {
981
+ readonly AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount";
982
+ readonly AwsAccountActiveGatewayCount: "AwsAccountActiveGatewayCount";
983
+ readonly AwsAccountDeviceCount: "AwsAccountDeviceCount";
984
+ readonly AwsAccountDownlinkCount: "AwsAccountDownlinkCount";
985
+ readonly AwsAccountGatewayCount: "AwsAccountGatewayCount";
986
+ readonly AwsAccountJoinAcceptCount: "AwsAccountJoinAcceptCount";
987
+ readonly AwsAccountJoinRequestCount: "AwsAccountJoinRequestCount";
988
+ readonly AwsAccountRoamingDownlinkCount: "AwsAccountRoamingDownlinkCount";
989
+ readonly AwsAccountRoamingUplinkCount: "AwsAccountRoamingUplinkCount";
990
+ readonly AwsAccountUplinkCount: "AwsAccountUplinkCount";
991
+ readonly AwsAccountUplinkLostCount: "AwsAccountUplinkLostCount";
992
+ readonly AwsAccountUplinkLostRate: "AwsAccountUplinkLostRate";
993
+ readonly DeviceDownlinkCount: "DeviceDownlinkCount";
994
+ readonly DeviceJoinAcceptCount: "DeviceJoinAcceptCount";
995
+ readonly DeviceJoinRequestCount: "DeviceJoinRequestCount";
996
+ readonly DeviceRSSI: "DeviceRSSI";
997
+ readonly DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount";
998
+ readonly DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount";
999
+ readonly DeviceSNR: "DeviceSNR";
1000
+ readonly DeviceUplinkCount: "DeviceUplinkCount";
1001
+ readonly DeviceUplinkLostCount: "DeviceUplinkLostCount";
1002
+ readonly DeviceUplinkLostRate: "DeviceUplinkLostRate";
1003
+ readonly GatewayDownTime: "GatewayDownTime";
1004
+ readonly GatewayDownlinkCount: "GatewayDownlinkCount";
1005
+ readonly GatewayJoinAcceptCount: "GatewayJoinAcceptCount";
1006
+ readonly GatewayJoinRequestCount: "GatewayJoinRequestCount";
1007
+ readonly GatewayRSSI: "GatewayRSSI";
1008
+ readonly GatewaySNR: "GatewaySNR";
1009
+ readonly GatewayUpTime: "GatewayUpTime";
1010
+ readonly GatewayUplinkCount: "GatewayUplinkCount";
1011
+ };
1012
+ export type MetricName = (typeof MetricName)[keyof typeof MetricName];
1013
+ export interface SummaryMetricQuery {
1014
+ QueryId?: string;
1015
+ MetricName?: MetricName;
1016
+ Dimensions?: Dimension[];
1017
+ AggregationPeriod?: AggregationPeriod;
1018
+ StartTimestamp?: Date;
1019
+ EndTimestamp?: Date;
1020
+ }
1021
+ export interface GetMetricsRequest {
1022
+ SummaryMetricQueries?: SummaryMetricQuery[];
1023
+ }
1024
+ export declare const MetricQueryStatus: {
1025
+ readonly Failed: "Failed";
1026
+ readonly Succeeded: "Succeeded";
1027
+ };
1028
+ export type MetricQueryStatus =
1029
+ (typeof MetricQueryStatus)[keyof typeof MetricQueryStatus];
1030
+ export interface MetricQueryValue {
1031
+ Min?: number;
1032
+ Max?: number;
1033
+ Sum?: number;
1034
+ Avg?: number;
1035
+ Std?: number;
1036
+ P90?: number;
1037
+ }
1038
+ export interface SummaryMetricQueryResult {
1039
+ QueryId?: string;
1040
+ QueryStatus?: MetricQueryStatus;
1041
+ Error?: string;
1042
+ MetricName?: MetricName;
1043
+ Dimensions?: Dimension[];
1044
+ AggregationPeriod?: AggregationPeriod;
1045
+ StartTimestamp?: Date;
1046
+ EndTimestamp?: Date;
1047
+ Timestamps?: Date[];
1048
+ Values?: MetricQueryValue[];
1049
+ Unit?: string;
1050
+ }
1051
+ export interface GetMetricsResponse {
1052
+ SummaryMetricQueryResults?: SummaryMetricQueryResult[];
1053
+ }
951
1054
  export interface GetMulticastGroupRequest {
952
1055
  Id: string | undefined;
953
1056
  }
@@ -1431,79 +1534,6 @@ export interface ListPositionConfigurationsRequest {
1431
1534
  MaxResults?: number;
1432
1535
  NextToken?: string;
1433
1536
  }
1434
- export interface PositionConfigurationItem {
1435
- ResourceIdentifier?: string;
1436
- ResourceType?: PositionResourceType;
1437
- Solvers?: PositionSolverDetails;
1438
- Destination?: string;
1439
- }
1440
- export interface ListPositionConfigurationsResponse {
1441
- PositionConfigurationList?: PositionConfigurationItem[];
1442
- NextToken?: string;
1443
- }
1444
- export interface ListQueuedMessagesRequest {
1445
- Id: string | undefined;
1446
- NextToken?: string;
1447
- MaxResults?: number;
1448
- WirelessDeviceType?: WirelessDeviceType;
1449
- }
1450
- export interface ListQueuedMessagesResponse {
1451
- NextToken?: string;
1452
- DownlinkQueueMessagesList?: DownlinkQueueMessage[];
1453
- }
1454
- export interface ListServiceProfilesRequest {
1455
- NextToken?: string;
1456
- MaxResults?: number;
1457
- }
1458
- export interface ServiceProfile {
1459
- Arn?: string;
1460
- Name?: string;
1461
- Id?: string;
1462
- }
1463
- export interface ListServiceProfilesResponse {
1464
- NextToken?: string;
1465
- ServiceProfileList?: ServiceProfile[];
1466
- }
1467
- export interface ListTagsForResourceRequest {
1468
- ResourceArn: string | undefined;
1469
- }
1470
- export interface ListTagsForResourceResponse {
1471
- Tags?: Tag[];
1472
- }
1473
- export interface ListWirelessDeviceImportTasksRequest {
1474
- MaxResults?: number;
1475
- NextToken?: string;
1476
- }
1477
- export interface WirelessDeviceImportTask {
1478
- Id?: string;
1479
- Arn?: string;
1480
- DestinationName?: string;
1481
- Sidewalk?: SidewalkGetStartImportInfo;
1482
- CreationTime?: Date;
1483
- Status?: ImportTaskStatus;
1484
- StatusReason?: string;
1485
- InitializedImportedDeviceCount?: number;
1486
- PendingImportedDeviceCount?: number;
1487
- OnboardedImportedDeviceCount?: number;
1488
- FailedImportedDeviceCount?: number;
1489
- }
1490
- export interface ListWirelessDeviceImportTasksResponse {
1491
- NextToken?: string;
1492
- WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
1493
- }
1494
- export interface ListWirelessDevicesRequest {
1495
- MaxResults?: number;
1496
- NextToken?: string;
1497
- DestinationName?: string;
1498
- DeviceProfileId?: string;
1499
- ServiceProfileId?: string;
1500
- WirelessDeviceType?: WirelessDeviceType;
1501
- FuotaTaskId?: string;
1502
- MulticastGroupId?: string;
1503
- }
1504
- export interface LoRaWANListDevice {
1505
- DevEui?: string;
1506
- }
1507
1537
  export declare const SidewalkAccountInfoFilterSensitiveLog: (
1508
1538
  obj: SidewalkAccountInfo
1509
1539
  ) => any;
@@ -7,17 +7,18 @@ import {
7
7
  ConnectionStatusResourceTypeEventConfiguration,
8
8
  DeviceRegistrationStateEventConfiguration,
9
9
  DeviceRegistrationStateResourceTypeEventConfiguration,
10
+ DownlinkQueueMessage,
10
11
  EventNotificationPartnerType,
11
12
  ExpressionType,
12
13
  FuotaDeviceStatus,
13
14
  IdentifierType,
15
+ ImportTaskStatus,
14
16
  JoinEventConfiguration,
15
17
  JoinResourceTypeEventConfiguration,
16
18
  LogLevel,
17
19
  LoRaWANFuotaTask,
18
20
  LoRaWANGateway,
19
21
  LoRaWANGatewayVersion,
20
- LoRaWANListDevice,
21
22
  LoRaWANMulticast,
22
23
  LoRaWANMulticastSession,
23
24
  LoRaWANSendDataToDevice,
@@ -29,8 +30,11 @@ import {
29
30
  Positioning,
30
31
  PositioningConfigStatus,
31
32
  PositionResourceType,
33
+ PositionSolverDetails,
32
34
  ProximityEventConfiguration,
33
35
  ProximityResourceTypeEventConfiguration,
36
+ SidewalkGetStartImportInfo,
37
+ SummaryMetricConfiguration,
34
38
  Tag,
35
39
  TraceContent,
36
40
  WirelessDeviceLogOption,
@@ -38,6 +42,79 @@ import {
38
42
  WirelessDeviceType,
39
43
  WirelessGatewayLogOption,
40
44
  } from "./models_0";
45
+ export interface PositionConfigurationItem {
46
+ ResourceIdentifier?: string;
47
+ ResourceType?: PositionResourceType;
48
+ Solvers?: PositionSolverDetails;
49
+ Destination?: string;
50
+ }
51
+ export interface ListPositionConfigurationsResponse {
52
+ PositionConfigurationList?: PositionConfigurationItem[];
53
+ NextToken?: string;
54
+ }
55
+ export interface ListQueuedMessagesRequest {
56
+ Id: string | undefined;
57
+ NextToken?: string;
58
+ MaxResults?: number;
59
+ WirelessDeviceType?: WirelessDeviceType;
60
+ }
61
+ export interface ListQueuedMessagesResponse {
62
+ NextToken?: string;
63
+ DownlinkQueueMessagesList?: DownlinkQueueMessage[];
64
+ }
65
+ export interface ListServiceProfilesRequest {
66
+ NextToken?: string;
67
+ MaxResults?: number;
68
+ }
69
+ export interface ServiceProfile {
70
+ Arn?: string;
71
+ Name?: string;
72
+ Id?: string;
73
+ }
74
+ export interface ListServiceProfilesResponse {
75
+ NextToken?: string;
76
+ ServiceProfileList?: ServiceProfile[];
77
+ }
78
+ export interface ListTagsForResourceRequest {
79
+ ResourceArn: string | undefined;
80
+ }
81
+ export interface ListTagsForResourceResponse {
82
+ Tags?: Tag[];
83
+ }
84
+ export interface ListWirelessDeviceImportTasksRequest {
85
+ MaxResults?: number;
86
+ NextToken?: string;
87
+ }
88
+ export interface WirelessDeviceImportTask {
89
+ Id?: string;
90
+ Arn?: string;
91
+ DestinationName?: string;
92
+ Sidewalk?: SidewalkGetStartImportInfo;
93
+ CreationTime?: Date;
94
+ Status?: ImportTaskStatus;
95
+ StatusReason?: string;
96
+ InitializedImportedDeviceCount?: number;
97
+ PendingImportedDeviceCount?: number;
98
+ OnboardedImportedDeviceCount?: number;
99
+ FailedImportedDeviceCount?: number;
100
+ }
101
+ export interface ListWirelessDeviceImportTasksResponse {
102
+ NextToken?: string;
103
+ WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
104
+ }
105
+ export interface ListWirelessDevicesRequest {
106
+ MaxResults?: number;
107
+ NextToken?: string;
108
+ DestinationName?: string;
109
+ DeviceProfileId?: string;
110
+ ServiceProfileId?: string;
111
+ WirelessDeviceType?: WirelessDeviceType;
112
+ FuotaTaskId?: string;
113
+ MulticastGroupId?: string;
114
+ }
115
+ export interface LoRaWANListDevice {
116
+ DevEui?: string;
117
+ }
41
118
  export interface SidewalkListDevice {
42
119
  AmazonId?: string;
43
120
  SidewalkId?: string;
@@ -280,6 +357,10 @@ export interface UpdateLogLevelsByResourceTypesRequest {
280
357
  WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
281
358
  }
282
359
  export interface UpdateLogLevelsByResourceTypesResponse {}
360
+ export interface UpdateMetricConfigurationRequest {
361
+ SummaryMetric?: SummaryMetricConfiguration;
362
+ }
363
+ export interface UpdateMetricConfigurationResponse {}
283
364
  export interface UpdateMulticastGroupRequest {
284
365
  Id: string | undefined;
285
366
  Name?: string;
@@ -175,6 +175,14 @@ import {
175
175
  GetLogLevelsByResourceTypesCommandInput,
176
176
  GetLogLevelsByResourceTypesCommandOutput,
177
177
  } from "../commands/GetLogLevelsByResourceTypesCommand";
178
+ import {
179
+ GetMetricConfigurationCommandInput,
180
+ GetMetricConfigurationCommandOutput,
181
+ } from "../commands/GetMetricConfigurationCommand";
182
+ import {
183
+ GetMetricsCommandInput,
184
+ GetMetricsCommandOutput,
185
+ } from "../commands/GetMetricsCommand";
178
186
  import {
179
187
  GetMulticastGroupCommandInput,
180
188
  GetMulticastGroupCommandOutput,
@@ -403,6 +411,10 @@ import {
403
411
  UpdateLogLevelsByResourceTypesCommandInput,
404
412
  UpdateLogLevelsByResourceTypesCommandOutput,
405
413
  } from "../commands/UpdateLogLevelsByResourceTypesCommand";
414
+ import {
415
+ UpdateMetricConfigurationCommandInput,
416
+ UpdateMetricConfigurationCommandOutput,
417
+ } from "../commands/UpdateMetricConfigurationCommand";
406
418
  import {
407
419
  UpdateMulticastGroupCommandInput,
408
420
  UpdateMulticastGroupCommandOutput,
@@ -611,6 +623,14 @@ export declare const se_GetLogLevelsByResourceTypesCommand: (
611
623
  input: GetLogLevelsByResourceTypesCommandInput,
612
624
  context: __SerdeContext
613
625
  ) => Promise<__HttpRequest>;
626
+ export declare const se_GetMetricConfigurationCommand: (
627
+ input: GetMetricConfigurationCommandInput,
628
+ context: __SerdeContext
629
+ ) => Promise<__HttpRequest>;
630
+ export declare const se_GetMetricsCommand: (
631
+ input: GetMetricsCommandInput,
632
+ context: __SerdeContext
633
+ ) => Promise<__HttpRequest>;
614
634
  export declare const se_GetMulticastGroupCommand: (
615
635
  input: GetMulticastGroupCommandInput,
616
636
  context: __SerdeContext
@@ -839,6 +859,10 @@ export declare const se_UpdateLogLevelsByResourceTypesCommand: (
839
859
  input: UpdateLogLevelsByResourceTypesCommandInput,
840
860
  context: __SerdeContext
841
861
  ) => Promise<__HttpRequest>;
862
+ export declare const se_UpdateMetricConfigurationCommand: (
863
+ input: UpdateMetricConfigurationCommandInput,
864
+ context: __SerdeContext
865
+ ) => Promise<__HttpRequest>;
842
866
  export declare const se_UpdateMulticastGroupCommand: (
843
867
  input: UpdateMulticastGroupCommandInput,
844
868
  context: __SerdeContext
@@ -1047,6 +1071,14 @@ export declare const de_GetLogLevelsByResourceTypesCommand: (
1047
1071
  output: __HttpResponse,
1048
1072
  context: __SerdeContext
1049
1073
  ) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
1074
+ export declare const de_GetMetricConfigurationCommand: (
1075
+ output: __HttpResponse,
1076
+ context: __SerdeContext
1077
+ ) => Promise<GetMetricConfigurationCommandOutput>;
1078
+ export declare const de_GetMetricsCommand: (
1079
+ output: __HttpResponse,
1080
+ context: __SerdeContext
1081
+ ) => Promise<GetMetricsCommandOutput>;
1050
1082
  export declare const de_GetMulticastGroupCommand: (
1051
1083
  output: __HttpResponse,
1052
1084
  context: __SerdeContext
@@ -1275,6 +1307,10 @@ export declare const de_UpdateLogLevelsByResourceTypesCommand: (
1275
1307
  output: __HttpResponse,
1276
1308
  context: __SerdeContext
1277
1309
  ) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
1310
+ export declare const de_UpdateMetricConfigurationCommand: (
1311
+ output: __HttpResponse,
1312
+ context: __SerdeContext
1313
+ ) => Promise<UpdateMetricConfigurationCommandOutput>;
1278
1314
  export declare const de_UpdateMulticastGroupCommand: (
1279
1315
  output: __HttpResponse,
1280
1316
  context: __SerdeContext
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.540.0",
4
+ "version": "3.545.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",