aws-sdk-iotwireless 1.43.0 → 1.45.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +289 -49
- data/lib/aws-sdk-iotwireless/client_api.rb +154 -0
- data/lib/aws-sdk-iotwireless/endpoints.rb +42 -0
- data/lib/aws-sdk-iotwireless/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-iotwireless/types.rb +423 -51
- data/lib/aws-sdk-iotwireless.rb +1 -1
- data/sig/client.rbs +44 -0
- data/sig/types.rbs +83 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -747,6 +747,39 @@ module Aws
|
|
747
747
|
) -> _GetLogLevelsByResourceTypesResponseSuccess
|
748
748
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLogLevelsByResourceTypesResponseSuccess
|
749
749
|
|
750
|
+
interface _GetMetricConfigurationResponseSuccess
|
751
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetMetricConfigurationResponse]
|
752
|
+
def summary_metric: () -> Types::SummaryMetricConfiguration
|
753
|
+
end
|
754
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#get_metric_configuration-instance_method
|
755
|
+
def get_metric_configuration: (
|
756
|
+
) -> _GetMetricConfigurationResponseSuccess
|
757
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetricConfigurationResponseSuccess
|
758
|
+
|
759
|
+
interface _GetMetricsResponseSuccess
|
760
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetMetricsResponse]
|
761
|
+
def summary_metric_query_results: () -> ::Array[Types::SummaryMetricQueryResult]
|
762
|
+
end
|
763
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#get_metrics-instance_method
|
764
|
+
def get_metrics: (
|
765
|
+
?summary_metric_queries: Array[
|
766
|
+
{
|
767
|
+
query_id: ::String?,
|
768
|
+
metric_name: ("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")?,
|
769
|
+
dimensions: Array[
|
770
|
+
{
|
771
|
+
name: ("DeviceId" | "GatewayId")?,
|
772
|
+
value: ::String?
|
773
|
+
},
|
774
|
+
]?,
|
775
|
+
aggregation_period: ("OneHour" | "OneDay" | "OneWeek")?,
|
776
|
+
start_timestamp: ::Time?,
|
777
|
+
end_timestamp: ::Time?
|
778
|
+
},
|
779
|
+
]
|
780
|
+
) -> _GetMetricsResponseSuccess
|
781
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetricsResponseSuccess
|
782
|
+
|
750
783
|
interface _GetMulticastGroupResponseSuccess
|
751
784
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetMulticastGroupResponse]
|
752
785
|
def arn: () -> ::String
|
@@ -1721,6 +1754,17 @@ module Aws
|
|
1721
1754
|
) -> _UpdateLogLevelsByResourceTypesResponseSuccess
|
1722
1755
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLogLevelsByResourceTypesResponseSuccess
|
1723
1756
|
|
1757
|
+
interface _UpdateMetricConfigurationResponseSuccess
|
1758
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMetricConfigurationResponse]
|
1759
|
+
end
|
1760
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTWireless/Client.html#update_metric_configuration-instance_method
|
1761
|
+
def update_metric_configuration: (
|
1762
|
+
?summary_metric: {
|
1763
|
+
status: ("Enabled" | "Disabled")?
|
1764
|
+
}
|
1765
|
+
) -> _UpdateMetricConfigurationResponseSuccess
|
1766
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMetricConfigurationResponseSuccess
|
1767
|
+
|
1724
1768
|
interface _UpdateMulticastGroupResponseSuccess
|
1725
1769
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMulticastGroupResponse]
|
1726
1770
|
end
|
data/sig/types.rbs
CHANGED
@@ -487,6 +487,12 @@ module Aws::IoTWireless
|
|
487
487
|
SENSITIVE: []
|
488
488
|
end
|
489
489
|
|
490
|
+
class Dimension
|
491
|
+
attr_accessor name: ("DeviceId" | "GatewayId")
|
492
|
+
attr_accessor value: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
490
496
|
class DisassociateAwsAccountFromPartnerAccountRequest
|
491
497
|
attr_accessor partner_account_id: ::String
|
492
498
|
attr_accessor partner_type: ("Sidewalk")
|
@@ -666,6 +672,24 @@ module Aws::IoTWireless
|
|
666
672
|
SENSITIVE: []
|
667
673
|
end
|
668
674
|
|
675
|
+
class GetMetricConfigurationRequest < Aws::EmptyStructure
|
676
|
+
end
|
677
|
+
|
678
|
+
class GetMetricConfigurationResponse
|
679
|
+
attr_accessor summary_metric: Types::SummaryMetricConfiguration
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class GetMetricsRequest
|
684
|
+
attr_accessor summary_metric_queries: ::Array[Types::SummaryMetricQuery]
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class GetMetricsResponse
|
689
|
+
attr_accessor summary_metric_query_results: ::Array[Types::SummaryMetricQueryResult]
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
669
693
|
class GetMulticastGroupRequest
|
670
694
|
attr_accessor id: ::String
|
671
695
|
SENSITIVE: []
|
@@ -1279,6 +1303,7 @@ module Aws::IoTWireless
|
|
1279
1303
|
attr_accessor frequency: ::Integer
|
1280
1304
|
attr_accessor timestamp: ::String
|
1281
1305
|
attr_accessor gateways: ::Array[Types::LoRaWANGatewayMetadata]
|
1306
|
+
attr_accessor public_gateways: ::Array[Types::LoRaWANPublicGatewayMetadata]
|
1282
1307
|
SENSITIVE: []
|
1283
1308
|
end
|
1284
1309
|
|
@@ -1412,6 +1437,16 @@ module Aws::IoTWireless
|
|
1412
1437
|
SENSITIVE: []
|
1413
1438
|
end
|
1414
1439
|
|
1440
|
+
class LoRaWANPublicGatewayMetadata
|
1441
|
+
attr_accessor provider_net_id: ::String
|
1442
|
+
attr_accessor id: ::String
|
1443
|
+
attr_accessor rssi: ::Float
|
1444
|
+
attr_accessor snr: ::Float
|
1445
|
+
attr_accessor rf_region: ::String
|
1446
|
+
attr_accessor dl_allowed: bool
|
1447
|
+
SENSITIVE: []
|
1448
|
+
end
|
1449
|
+
|
1415
1450
|
class LoRaWANSendDataToDevice
|
1416
1451
|
attr_accessor f_port: ::Integer
|
1417
1452
|
attr_accessor participating_gateways: Types::ParticipatingGateways
|
@@ -1495,6 +1530,16 @@ module Aws::IoTWireless
|
|
1495
1530
|
SENSITIVE: []
|
1496
1531
|
end
|
1497
1532
|
|
1533
|
+
class MetricQueryValue
|
1534
|
+
attr_accessor min: ::Float
|
1535
|
+
attr_accessor max: ::Float
|
1536
|
+
attr_accessor sum: ::Float
|
1537
|
+
attr_accessor avg: ::Float
|
1538
|
+
attr_accessor std: ::Float
|
1539
|
+
attr_accessor p90: ::Float
|
1540
|
+
SENSITIVE: []
|
1541
|
+
end
|
1542
|
+
|
1498
1543
|
class MulticastGroup
|
1499
1544
|
attr_accessor id: ::String
|
1500
1545
|
attr_accessor arn: ::String
|
@@ -1848,6 +1893,36 @@ module Aws::IoTWireless
|
|
1848
1893
|
SENSITIVE: []
|
1849
1894
|
end
|
1850
1895
|
|
1896
|
+
class SummaryMetricConfiguration
|
1897
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
1898
|
+
SENSITIVE: []
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
class SummaryMetricQuery
|
1902
|
+
attr_accessor query_id: ::String
|
1903
|
+
attr_accessor metric_name: ("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")
|
1904
|
+
attr_accessor dimensions: ::Array[Types::Dimension]
|
1905
|
+
attr_accessor aggregation_period: ("OneHour" | "OneDay" | "OneWeek")
|
1906
|
+
attr_accessor start_timestamp: ::Time
|
1907
|
+
attr_accessor end_timestamp: ::Time
|
1908
|
+
SENSITIVE: []
|
1909
|
+
end
|
1910
|
+
|
1911
|
+
class SummaryMetricQueryResult
|
1912
|
+
attr_accessor query_id: ::String
|
1913
|
+
attr_accessor query_status: ("Succeeded" | "Failed")
|
1914
|
+
attr_accessor error: ::String
|
1915
|
+
attr_accessor metric_name: ("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")
|
1916
|
+
attr_accessor dimensions: ::Array[Types::Dimension]
|
1917
|
+
attr_accessor aggregation_period: ("OneHour" | "OneDay" | "OneWeek")
|
1918
|
+
attr_accessor start_timestamp: ::Time
|
1919
|
+
attr_accessor end_timestamp: ::Time
|
1920
|
+
attr_accessor timestamps: ::Array[::Time]
|
1921
|
+
attr_accessor values: ::Array[Types::MetricQueryValue]
|
1922
|
+
attr_accessor unit: ::String
|
1923
|
+
SENSITIVE: []
|
1924
|
+
end
|
1925
|
+
|
1851
1926
|
class Tag
|
1852
1927
|
attr_accessor key: ::String
|
1853
1928
|
attr_accessor value: ::String
|
@@ -1994,6 +2069,14 @@ module Aws::IoTWireless
|
|
1994
2069
|
class UpdateLogLevelsByResourceTypesResponse < Aws::EmptyStructure
|
1995
2070
|
end
|
1996
2071
|
|
2072
|
+
class UpdateMetricConfigurationRequest
|
2073
|
+
attr_accessor summary_metric: Types::SummaryMetricConfiguration
|
2074
|
+
SENSITIVE: []
|
2075
|
+
end
|
2076
|
+
|
2077
|
+
class UpdateMetricConfigurationResponse < Aws::EmptyStructure
|
2078
|
+
end
|
2079
|
+
|
1997
2080
|
class UpdateMulticastGroupRequest
|
1998
2081
|
attr_accessor id: ::String
|
1999
2082
|
attr_accessor name: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotwireless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|