Skip to content

Commit b0de95c

Browse files
author
awstools
committed
feat(client-iot-wireless): Add RoamingDeviceSNR and RoamingDeviceRSSI to Customer Metrics.
1 parent 5fff081 commit b0de95c

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

clients/client-iot-wireless/src/commands/GetMetricsCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export interface GetMetricsCommandOutput extends GetMetricsResponse, __MetadataB
3939
* SummaryMetricQueries: [ // SummaryMetricQueries
4040
* { // SummaryMetricQuery
4141
* QueryId: "STRING_VALUE",
42-
* MetricName: "DeviceRSSI" || "DeviceSNR" || "DeviceUplinkCount" || "DeviceDownlinkCount" || "DeviceUplinkLostCount" || "DeviceUplinkLostRate" || "DeviceJoinRequestCount" || "DeviceJoinAcceptCount" || "DeviceRoamingUplinkCount" || "DeviceRoamingDownlinkCount" || "GatewayUpTime" || "GatewayDownTime" || "GatewayRSSI" || "GatewaySNR" || "GatewayUplinkCount" || "GatewayDownlinkCount" || "GatewayJoinRequestCount" || "GatewayJoinAcceptCount" || "AwsAccountUplinkCount" || "AwsAccountDownlinkCount" || "AwsAccountUplinkLostCount" || "AwsAccountUplinkLostRate" || "AwsAccountJoinRequestCount" || "AwsAccountJoinAcceptCount" || "AwsAccountRoamingUplinkCount" || "AwsAccountRoamingDownlinkCount" || "AwsAccountDeviceCount" || "AwsAccountGatewayCount" || "AwsAccountActiveDeviceCount" || "AwsAccountActiveGatewayCount",
42+
* MetricName: "DeviceRSSI" || "DeviceSNR" || "DeviceRoamingRSSI" || "DeviceRoamingSNR" || "DeviceUplinkCount" || "DeviceDownlinkCount" || "DeviceUplinkLostCount" || "DeviceUplinkLostRate" || "DeviceJoinRequestCount" || "DeviceJoinAcceptCount" || "DeviceRoamingUplinkCount" || "DeviceRoamingDownlinkCount" || "GatewayUpTime" || "GatewayDownTime" || "GatewayRSSI" || "GatewaySNR" || "GatewayUplinkCount" || "GatewayDownlinkCount" || "GatewayJoinRequestCount" || "GatewayJoinAcceptCount" || "AwsAccountUplinkCount" || "AwsAccountDownlinkCount" || "AwsAccountUplinkLostCount" || "AwsAccountUplinkLostRate" || "AwsAccountJoinRequestCount" || "AwsAccountJoinAcceptCount" || "AwsAccountRoamingUplinkCount" || "AwsAccountRoamingDownlinkCount" || "AwsAccountDeviceCount" || "AwsAccountGatewayCount" || "AwsAccountActiveDeviceCount" || "AwsAccountActiveGatewayCount",
4343
* Dimensions: [ // Dimensions
4444
* { // Dimension
4545
* name: "DeviceId" || "GatewayId",
@@ -60,7 +60,7 @@ export interface GetMetricsCommandOutput extends GetMetricsResponse, __MetadataB
6060
* // QueryId: "STRING_VALUE",
6161
* // QueryStatus: "Succeeded" || "Failed",
6262
* // Error: "STRING_VALUE",
63-
* // MetricName: "DeviceRSSI" || "DeviceSNR" || "DeviceUplinkCount" || "DeviceDownlinkCount" || "DeviceUplinkLostCount" || "DeviceUplinkLostRate" || "DeviceJoinRequestCount" || "DeviceJoinAcceptCount" || "DeviceRoamingUplinkCount" || "DeviceRoamingDownlinkCount" || "GatewayUpTime" || "GatewayDownTime" || "GatewayRSSI" || "GatewaySNR" || "GatewayUplinkCount" || "GatewayDownlinkCount" || "GatewayJoinRequestCount" || "GatewayJoinAcceptCount" || "AwsAccountUplinkCount" || "AwsAccountDownlinkCount" || "AwsAccountUplinkLostCount" || "AwsAccountUplinkLostRate" || "AwsAccountJoinRequestCount" || "AwsAccountJoinAcceptCount" || "AwsAccountRoamingUplinkCount" || "AwsAccountRoamingDownlinkCount" || "AwsAccountDeviceCount" || "AwsAccountGatewayCount" || "AwsAccountActiveDeviceCount" || "AwsAccountActiveGatewayCount",
63+
* // MetricName: "DeviceRSSI" || "DeviceSNR" || "DeviceRoamingRSSI" || "DeviceRoamingSNR" || "DeviceUplinkCount" || "DeviceDownlinkCount" || "DeviceUplinkLostCount" || "DeviceUplinkLostRate" || "DeviceJoinRequestCount" || "DeviceJoinAcceptCount" || "DeviceRoamingUplinkCount" || "DeviceRoamingDownlinkCount" || "GatewayUpTime" || "GatewayDownTime" || "GatewayRSSI" || "GatewaySNR" || "GatewayUplinkCount" || "GatewayDownlinkCount" || "GatewayJoinRequestCount" || "GatewayJoinAcceptCount" || "AwsAccountUplinkCount" || "AwsAccountDownlinkCount" || "AwsAccountUplinkLostCount" || "AwsAccountUplinkLostRate" || "AwsAccountJoinRequestCount" || "AwsAccountJoinAcceptCount" || "AwsAccountRoamingUplinkCount" || "AwsAccountRoamingDownlinkCount" || "AwsAccountDeviceCount" || "AwsAccountGatewayCount" || "AwsAccountActiveDeviceCount" || "AwsAccountActiveGatewayCount",
6464
* // Dimensions: [ // Dimensions
6565
* // { // Dimension
6666
* // name: "DeviceId" || "GatewayId",

clients/client-iot-wireless/src/models/models_0.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4246,6 +4246,8 @@ export const MetricName = {
42464246
DeviceJoinRequestCount: "DeviceJoinRequestCount",
42474247
DeviceRSSI: "DeviceRSSI",
42484248
DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount",
4249+
DeviceRoamingRSSI: "DeviceRoamingRSSI",
4250+
DeviceRoamingSNR: "DeviceRoamingSNR",
42494251
DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount",
42504252
DeviceSNR: "DeviceSNR",
42514253
DeviceUplinkCount: "DeviceUplinkCount",

codegen/sdk-codegen/aws-models/iot-wireless.json

+12
Original file line numberDiff line numberDiff line change
@@ -10165,6 +10165,18 @@
1016510165
"smithy.api#enumValue": "DeviceSNR"
1016610166
}
1016710167
},
10168+
"DeviceRoamingRSSI": {
10169+
"target": "smithy.api#Unit",
10170+
"traits": {
10171+
"smithy.api#enumValue": "DeviceRoamingRSSI"
10172+
}
10173+
},
10174+
"DeviceRoamingSNR": {
10175+
"target": "smithy.api#Unit",
10176+
"traits": {
10177+
"smithy.api#enumValue": "DeviceRoamingSNR"
10178+
}
10179+
},
1016810180
"DeviceUplinkCount": {
1016910181
"target": "smithy.api#Unit",
1017010182
"traits": {

0 commit comments

Comments
 (0)