aws-sdk-iotwireless 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0a389f96f87ecee540a8a1984f930ea17ac7f5d97cd43e0035efbffd2c976e5
4
- data.tar.gz: 92165f9b5642c680e1defa1f27901849a9114dee9137c170ef1c40ad19e91eda
3
+ metadata.gz: 325ea63aa0c03b400b18e2a2a2c13a232e9e50ab1b698e7c8f281d8acb681d42
4
+ data.tar.gz: 36f6c0afa5edc47572c95374579decb81d6bf9b2eb8bfb8f06a4b2bfb02daff9
5
5
  SHA512:
6
- metadata.gz: c347b07484db901261adab794714cf9fd0399a3d433200d16265138c669ac56b7003314ee725718e933e1a234f4e511dd3a8a7ee38305658c80c30dae334924e
7
- data.tar.gz: bd89af79f0ec37e5e2f1d72ec857c2607bdf8c586390b4034fe417fe54a18ed4ce47bc965e36e6c549139c8dc3bbc43acaf3423b3f6e51c2a3871de6dc7af1c7
6
+ metadata.gz: 6c458308f39a4a11424cfe103aa42cfb58cd9a68ed03f943516f37a08f89f53f87a42a6b1a10c7c036e5ce3f69bf71fa23854196298ee3ba0dd1baf818a65d90
7
+ data.tar.gz: cb4c8c8375c73765a993311d76b7731d29a662136584c20382a5fa214e1a234e1ec831cf9283eded3d8553c78e7cea1472ca751bf810522170452fc95530f836
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-03-31)
5
+ ------------------
6
+
7
+ * Feature - Add Sidewalk support to APIs: GetWirelessDevice, ListWirelessDevices, GetWirelessDeviceStatistics. Add Gateway connection status in GetWirelessGatewayStatistics API.
8
+
4
9
  1.6.0 (2021-03-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
48
48
  # @!group service
49
49
  module Aws::IoTWireless
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
@@ -1361,6 +1361,7 @@ module Aws::IoTWireless
1361
1361
  # * {Types::GetWirelessDeviceResponse#thing_name #thing_name} => String
1362
1362
  # * {Types::GetWirelessDeviceResponse#thing_arn #thing_arn} => String
1363
1363
  # * {Types::GetWirelessDeviceResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANDevice
1364
+ # * {Types::GetWirelessDeviceResponse#sidewalk #sidewalk} => Types::SidewalkDevice
1364
1365
  #
1365
1366
  # @example Request syntax with placeholder values
1366
1367
  #
@@ -1395,6 +1396,11 @@ module Aws::IoTWireless
1395
1396
  # resp.lo_ra_wan.abp_v1_0_x.dev_addr #=> String
1396
1397
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.nwk_s_key #=> String
1397
1398
  # resp.lo_ra_wan.abp_v1_0_x.session_keys.app_s_key #=> String
1399
+ # resp.sidewalk.sidewalk_id #=> String
1400
+ # resp.sidewalk.sidewalk_manufacturing_sn #=> String
1401
+ # resp.sidewalk.device_certificates #=> Array
1402
+ # resp.sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
1403
+ # resp.sidewalk.device_certificates[0].value #=> String
1398
1404
  #
1399
1405
  # @overload get_wireless_device(params = {})
1400
1406
  # @param [Hash] params ({})
@@ -1413,6 +1419,7 @@ module Aws::IoTWireless
1413
1419
  # * {Types::GetWirelessDeviceStatisticsResponse#wireless_device_id #wireless_device_id} => String
1414
1420
  # * {Types::GetWirelessDeviceStatisticsResponse#last_uplink_received_at #last_uplink_received_at} => String
1415
1421
  # * {Types::GetWirelessDeviceStatisticsResponse#lo_ra_wan #lo_ra_wan} => Types::LoRaWANDeviceMetadata
1422
+ # * {Types::GetWirelessDeviceStatisticsResponse#sidewalk #sidewalk} => Types::SidewalkDeviceMetadata
1416
1423
  #
1417
1424
  # @example Request syntax with placeholder values
1418
1425
  #
@@ -1433,6 +1440,10 @@ module Aws::IoTWireless
1433
1440
  # resp.lo_ra_wan.gateways[0].gateway_eui #=> String
1434
1441
  # resp.lo_ra_wan.gateways[0].snr #=> Float
1435
1442
  # resp.lo_ra_wan.gateways[0].rssi #=> Float
1443
+ # resp.sidewalk.rssi #=> Integer
1444
+ # resp.sidewalk.battery_level #=> String, one of "normal", "low", "critical"
1445
+ # resp.sidewalk.event #=> String, one of "discovered", "lost", "ack", "nack", "passthrough"
1446
+ # resp.sidewalk.device_state #=> String, one of "Provisioned", "RegisteredNotSeen", "RegisteredReachable", "RegisteredUnreachable"
1436
1447
  #
1437
1448
  # @overload get_wireless_device_statistics(params = {})
1438
1449
  # @param [Hash] params ({})
@@ -1551,6 +1562,7 @@ module Aws::IoTWireless
1551
1562
  #
1552
1563
  # * {Types::GetWirelessGatewayStatisticsResponse#wireless_gateway_id #wireless_gateway_id} => String
1553
1564
  # * {Types::GetWirelessGatewayStatisticsResponse#last_uplink_received_at #last_uplink_received_at} => String
1565
+ # * {Types::GetWirelessGatewayStatisticsResponse#connection_status #connection_status} => String
1554
1566
  #
1555
1567
  # @example Request syntax with placeholder values
1556
1568
  #
@@ -1562,6 +1574,7 @@ module Aws::IoTWireless
1562
1574
  #
1563
1575
  # resp.wireless_gateway_id #=> String
1564
1576
  # resp.last_uplink_received_at #=> String
1577
+ # resp.connection_status #=> String, one of "Connected", "Disconnected"
1565
1578
  #
1566
1579
  # @overload get_wireless_gateway_statistics(params = {})
1567
1580
  # @param [Hash] params ({})
@@ -1885,6 +1898,11 @@ module Aws::IoTWireless
1885
1898
  # resp.wireless_device_list[0].last_uplink_received_at #=> String
1886
1899
  # resp.wireless_device_list[0].lo_ra_wan.dev_eui #=> String
1887
1900
  # resp.wireless_device_list[0].sidewalk.amazon_id #=> String
1901
+ # resp.wireless_device_list[0].sidewalk.sidewalk_id #=> String
1902
+ # resp.wireless_device_list[0].sidewalk.sidewalk_manufacturing_sn #=> String
1903
+ # resp.wireless_device_list[0].sidewalk.device_certificates #=> Array
1904
+ # resp.wireless_device_list[0].sidewalk.device_certificates[0].signing_alg #=> String, one of "Ed25519", "P256r1"
1905
+ # resp.wireless_device_list[0].sidewalk.device_certificates[0].value #=> String
1888
1906
  #
1889
1907
  # @overload list_wireless_devices(params = {})
1890
1908
  # @param [Hash] params ({})
@@ -2257,7 +2275,7 @@ module Aws::IoTWireless
2257
2275
  params: params,
2258
2276
  config: config)
2259
2277
  context[:gem_name] = 'aws-sdk-iotwireless'
2260
- context[:gem_version] = '1.6.0'
2278
+ context[:gem_version] = '1.7.0'
2261
2279
  Seahorse::Client::Request.new(handlers, context)
2262
2280
  end
2263
2281
 
@@ -33,12 +33,16 @@ module Aws::IoTWireless
33
33
  AssociateWirelessGatewayWithThingRequest = Shapes::StructureShape.new(name: 'AssociateWirelessGatewayWithThingRequest')
34
34
  AssociateWirelessGatewayWithThingResponse = Shapes::StructureShape.new(name: 'AssociateWirelessGatewayWithThingResponse')
35
35
  AutoCreateTasks = Shapes::BooleanShape.new(name: 'AutoCreateTasks')
36
+ BatteryLevel = Shapes::StringShape.new(name: 'BatteryLevel')
37
+ CertificateList = Shapes::StructureShape.new(name: 'CertificateList')
36
38
  CertificatePEM = Shapes::StringShape.new(name: 'CertificatePEM')
39
+ CertificateValue = Shapes::StringShape.new(name: 'CertificateValue')
37
40
  ChannelMask = Shapes::StringShape.new(name: 'ChannelMask')
38
41
  ClassBTimeout = Shapes::IntegerShape.new(name: 'ClassBTimeout')
39
42
  ClassCTimeout = Shapes::IntegerShape.new(name: 'ClassCTimeout')
40
43
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
41
44
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
45
+ ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
42
46
  Crc = Shapes::IntegerShape.new(name: 'Crc')
43
47
  CreateDestinationRequest = Shapes::StructureShape.new(name: 'CreateDestinationRequest')
44
48
  CreateDestinationResponse = Shapes::StructureShape.new(name: 'CreateDestinationResponse')
@@ -76,11 +80,13 @@ module Aws::IoTWireless
76
80
  DevAddr = Shapes::StringShape.new(name: 'DevAddr')
77
81
  DevEui = Shapes::StringShape.new(name: 'DevEui')
78
82
  DevStatusReqFreq = Shapes::IntegerShape.new(name: 'DevStatusReqFreq')
83
+ DeviceCertificateList = Shapes::ListShape.new(name: 'DeviceCertificateList')
79
84
  DeviceProfile = Shapes::StructureShape.new(name: 'DeviceProfile')
80
85
  DeviceProfileArn = Shapes::StringShape.new(name: 'DeviceProfileArn')
81
86
  DeviceProfileId = Shapes::StringShape.new(name: 'DeviceProfileId')
82
87
  DeviceProfileList = Shapes::ListShape.new(name: 'DeviceProfileList')
83
88
  DeviceProfileName = Shapes::StringShape.new(name: 'DeviceProfileName')
89
+ DeviceState = Shapes::StringShape.new(name: 'DeviceState')
84
90
  DisassociateAwsAccountFromPartnerAccountRequest = Shapes::StructureShape.new(name: 'DisassociateAwsAccountFromPartnerAccountRequest')
85
91
  DisassociateAwsAccountFromPartnerAccountResponse = Shapes::StructureShape.new(name: 'DisassociateAwsAccountFromPartnerAccountResponse')
86
92
  DisassociateWirelessDeviceFromThingRequest = Shapes::StructureShape.new(name: 'DisassociateWirelessDeviceFromThingRequest')
@@ -96,6 +102,7 @@ module Aws::IoTWireless
96
102
  DrMax = Shapes::IntegerShape.new(name: 'DrMax')
97
103
  DrMin = Shapes::IntegerShape.new(name: 'DrMin')
98
104
  EndPoint = Shapes::StringShape.new(name: 'EndPoint')
105
+ Event = Shapes::StringShape.new(name: 'Event')
99
106
  Expression = Shapes::StringShape.new(name: 'Expression')
100
107
  ExpressionType = Shapes::StringShape.new(name: 'ExpressionType')
101
108
  FNwkSIntKey = Shapes::StringShape.new(name: 'FNwkSIntKey')
@@ -220,9 +227,14 @@ module Aws::IoTWireless
220
227
  SidewalkAccountInfo = Shapes::StructureShape.new(name: 'SidewalkAccountInfo')
221
228
  SidewalkAccountInfoWithFingerprint = Shapes::StructureShape.new(name: 'SidewalkAccountInfoWithFingerprint')
222
229
  SidewalkAccountList = Shapes::ListShape.new(name: 'SidewalkAccountList')
230
+ SidewalkDevice = Shapes::StructureShape.new(name: 'SidewalkDevice')
231
+ SidewalkDeviceMetadata = Shapes::StructureShape.new(name: 'SidewalkDeviceMetadata')
232
+ SidewalkId = Shapes::StringShape.new(name: 'SidewalkId')
223
233
  SidewalkListDevice = Shapes::StructureShape.new(name: 'SidewalkListDevice')
234
+ SidewalkManufacturingSn = Shapes::StringShape.new(name: 'SidewalkManufacturingSn')
224
235
  SidewalkSendDataToDevice = Shapes::StructureShape.new(name: 'SidewalkSendDataToDevice')
225
236
  SidewalkUpdateAccount = Shapes::StructureShape.new(name: 'SidewalkUpdateAccount')
237
+ SigningAlg = Shapes::StringShape.new(name: 'SigningAlg')
226
238
  Station = Shapes::StringShape.new(name: 'Station')
227
239
  Supports32BitFCnt = Shapes::BooleanShape.new(name: 'Supports32BitFCnt')
228
240
  SupportsClassB = Shapes::BooleanShape.new(name: 'SupportsClassB')
@@ -322,6 +334,10 @@ module Aws::IoTWireless
322
334
 
323
335
  AssociateWirelessGatewayWithThingResponse.struct_class = Types::AssociateWirelessGatewayWithThingResponse
324
336
 
337
+ CertificateList.add_member(:signing_alg, Shapes::ShapeRef.new(shape: SigningAlg, required: true, location_name: "SigningAlg"))
338
+ CertificateList.add_member(:value, Shapes::ShapeRef.new(shape: CertificateValue, required: true, location_name: "Value"))
339
+ CertificateList.struct_class = Types::CertificateList
340
+
325
341
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
326
342
  ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResourceId"))
327
343
  ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
@@ -448,6 +464,8 @@ module Aws::IoTWireless
448
464
  Destinations.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
449
465
  Destinations.struct_class = Types::Destinations
450
466
 
467
+ DeviceCertificateList.member = Shapes::ShapeRef.new(shape: CertificateList)
468
+
451
469
  DeviceProfile.add_member(:arn, Shapes::ShapeRef.new(shape: DeviceProfileArn, location_name: "Arn"))
452
470
  DeviceProfile.add_member(:name, Shapes::ShapeRef.new(shape: DeviceProfileName, location_name: "Name"))
453
471
  DeviceProfile.add_member(:id, Shapes::ShapeRef.new(shape: DeviceProfileId, location_name: "Id"))
@@ -536,6 +554,7 @@ module Aws::IoTWireless
536
554
  GetWirelessDeviceResponse.add_member(:thing_name, Shapes::ShapeRef.new(shape: ThingName, location_name: "ThingName"))
537
555
  GetWirelessDeviceResponse.add_member(:thing_arn, Shapes::ShapeRef.new(shape: ThingArn, location_name: "ThingArn"))
538
556
  GetWirelessDeviceResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANDevice, location_name: "LoRaWAN"))
557
+ GetWirelessDeviceResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkDevice, location_name: "Sidewalk"))
539
558
  GetWirelessDeviceResponse.struct_class = Types::GetWirelessDeviceResponse
540
559
 
541
560
  GetWirelessDeviceStatisticsRequest.add_member(:wireless_device_id, Shapes::ShapeRef.new(shape: WirelessDeviceId, required: true, location: "uri", location_name: "Id"))
@@ -544,6 +563,7 @@ module Aws::IoTWireless
544
563
  GetWirelessDeviceStatisticsResponse.add_member(:wireless_device_id, Shapes::ShapeRef.new(shape: WirelessDeviceId, location_name: "WirelessDeviceId"))
545
564
  GetWirelessDeviceStatisticsResponse.add_member(:last_uplink_received_at, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "LastUplinkReceivedAt"))
546
565
  GetWirelessDeviceStatisticsResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANDeviceMetadata, location_name: "LoRaWAN"))
566
+ GetWirelessDeviceStatisticsResponse.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkDeviceMetadata, location_name: "Sidewalk"))
547
567
  GetWirelessDeviceStatisticsResponse.struct_class = Types::GetWirelessDeviceStatisticsResponse
548
568
 
549
569
  GetWirelessGatewayCertificateRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayId, required: true, location: "uri", location_name: "Id"))
@@ -577,6 +597,7 @@ module Aws::IoTWireless
577
597
 
578
598
  GetWirelessGatewayStatisticsResponse.add_member(:wireless_gateway_id, Shapes::ShapeRef.new(shape: WirelessGatewayId, location_name: "WirelessGatewayId"))
579
599
  GetWirelessGatewayStatisticsResponse.add_member(:last_uplink_received_at, Shapes::ShapeRef.new(shape: ISODateTimeString, location_name: "LastUplinkReceivedAt"))
600
+ GetWirelessGatewayStatisticsResponse.add_member(:connection_status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "ConnectionStatus"))
580
601
  GetWirelessGatewayStatisticsResponse.struct_class = Types::GetWirelessGatewayStatisticsResponse
581
602
 
582
603
  GetWirelessGatewayTaskDefinitionRequest.add_member(:id, Shapes::ShapeRef.new(shape: WirelessGatewayTaskDefinitionId, required: true, location: "uri", location_name: "Id"))
@@ -820,7 +841,21 @@ module Aws::IoTWireless
820
841
 
821
842
  SidewalkAccountList.member = Shapes::ShapeRef.new(shape: SidewalkAccountInfoWithFingerprint)
822
843
 
844
+ SidewalkDevice.add_member(:sidewalk_id, Shapes::ShapeRef.new(shape: SidewalkId, location_name: "SidewalkId"))
845
+ SidewalkDevice.add_member(:sidewalk_manufacturing_sn, Shapes::ShapeRef.new(shape: SidewalkManufacturingSn, location_name: "SidewalkManufacturingSn"))
846
+ SidewalkDevice.add_member(:device_certificates, Shapes::ShapeRef.new(shape: DeviceCertificateList, location_name: "DeviceCertificates"))
847
+ SidewalkDevice.struct_class = Types::SidewalkDevice
848
+
849
+ SidewalkDeviceMetadata.add_member(:rssi, Shapes::ShapeRef.new(shape: Integer, location_name: "Rssi"))
850
+ SidewalkDeviceMetadata.add_member(:battery_level, Shapes::ShapeRef.new(shape: BatteryLevel, location_name: "BatteryLevel"))
851
+ SidewalkDeviceMetadata.add_member(:event, Shapes::ShapeRef.new(shape: Event, location_name: "Event"))
852
+ SidewalkDeviceMetadata.add_member(:device_state, Shapes::ShapeRef.new(shape: DeviceState, location_name: "DeviceState"))
853
+ SidewalkDeviceMetadata.struct_class = Types::SidewalkDeviceMetadata
854
+
823
855
  SidewalkListDevice.add_member(:amazon_id, Shapes::ShapeRef.new(shape: AmazonId, location_name: "AmazonId"))
856
+ SidewalkListDevice.add_member(:sidewalk_id, Shapes::ShapeRef.new(shape: SidewalkId, location_name: "SidewalkId"))
857
+ SidewalkListDevice.add_member(:sidewalk_manufacturing_sn, Shapes::ShapeRef.new(shape: SidewalkManufacturingSn, location_name: "SidewalkManufacturingSn"))
858
+ SidewalkListDevice.add_member(:device_certificates, Shapes::ShapeRef.new(shape: DeviceCertificateList, location_name: "DeviceCertificates"))
824
859
  SidewalkListDevice.struct_class = Types::SidewalkListDevice
825
860
 
826
861
  SidewalkSendDataToDevice.add_member(:seq, Shapes::ShapeRef.new(shape: Seq, location_name: "Seq"))
@@ -221,6 +221,23 @@ module Aws::IoTWireless
221
221
 
222
222
  class AssociateWirelessGatewayWithThingResponse < Aws::EmptyStructure; end
223
223
 
224
+ # List of sidewalk certificates.
225
+ #
226
+ # @!attribute [rw] signing_alg
227
+ # The certificate chain algorithm provided by sidewalk.
228
+ # @return [String]
229
+ #
230
+ # @!attribute [rw] value
231
+ # The value of the chosen sidewalk certificate.
232
+ # @return [String]
233
+ #
234
+ class CertificateList < Struct.new(
235
+ :signing_alg,
236
+ :value)
237
+ SENSITIVE = []
238
+ include Aws::Structure
239
+ end
240
+
224
241
  # Adding, updating, or deleting the resource can cause an inconsistent
225
242
  # state.
226
243
  #
@@ -1322,6 +1339,10 @@ module Aws::IoTWireless
1322
1339
  # Information about the wireless device.
1323
1340
  # @return [Types::LoRaWANDevice]
1324
1341
  #
1342
+ # @!attribute [rw] sidewalk
1343
+ # Sidewalk device object.
1344
+ # @return [Types::SidewalkDevice]
1345
+ #
1325
1346
  class GetWirelessDeviceResponse < Struct.new(
1326
1347
  :type,
1327
1348
  :name,
@@ -1331,7 +1352,8 @@ module Aws::IoTWireless
1331
1352
  :arn,
1332
1353
  :thing_name,
1333
1354
  :thing_arn,
1334
- :lo_ra_wan)
1355
+ :lo_ra_wan,
1356
+ :sidewalk)
1335
1357
  SENSITIVE = []
1336
1358
  include Aws::Structure
1337
1359
  end
@@ -1365,10 +1387,15 @@ module Aws::IoTWireless
1365
1387
  # Information about the wireless device's operations.
1366
1388
  # @return [Types::LoRaWANDeviceMetadata]
1367
1389
  #
1390
+ # @!attribute [rw] sidewalk
1391
+ # MetaData for Sidewalk device.
1392
+ # @return [Types::SidewalkDeviceMetadata]
1393
+ #
1368
1394
  class GetWirelessDeviceStatisticsResponse < Struct.new(
1369
1395
  :wireless_device_id,
1370
1396
  :last_uplink_received_at,
1371
- :lo_ra_wan)
1397
+ :lo_ra_wan,
1398
+ :sidewalk)
1372
1399
  SENSITIVE = []
1373
1400
  include Aws::Structure
1374
1401
  end
@@ -1522,9 +1549,14 @@ module Aws::IoTWireless
1522
1549
  # The date and time when the most recent uplink was received.
1523
1550
  # @return [String]
1524
1551
  #
1552
+ # @!attribute [rw] connection_status
1553
+ # The connection status of the wireless gateway.
1554
+ # @return [String]
1555
+ #
1525
1556
  class GetWirelessGatewayStatisticsResponse < Struct.new(
1526
1557
  :wireless_gateway_id,
1527
- :last_uplink_received_at)
1558
+ :last_uplink_received_at,
1559
+ :connection_status)
1528
1560
  SENSITIVE = []
1529
1561
  include Aws::Structure
1530
1562
  end
@@ -2814,14 +2846,78 @@ module Aws::IoTWireless
2814
2846
  include Aws::Structure
2815
2847
  end
2816
2848
 
2849
+ # Sidewalk device object.
2850
+ #
2851
+ # @!attribute [rw] sidewalk_id
2852
+ # The sidewalk device identification.
2853
+ # @return [String]
2854
+ #
2855
+ # @!attribute [rw] sidewalk_manufacturing_sn
2856
+ # The Sidewalk manufacturing series number.
2857
+ # @return [String]
2858
+ #
2859
+ # @!attribute [rw] device_certificates
2860
+ # The sidewalk device certificates for Ed25519 and P256r1.
2861
+ # @return [Array<Types::CertificateList>]
2862
+ #
2863
+ class SidewalkDevice < Struct.new(
2864
+ :sidewalk_id,
2865
+ :sidewalk_manufacturing_sn,
2866
+ :device_certificates)
2867
+ SENSITIVE = []
2868
+ include Aws::Structure
2869
+ end
2870
+
2871
+ # MetaData for Sidewalk device.
2872
+ #
2873
+ # @!attribute [rw] rssi
2874
+ # The RSSI value.
2875
+ # @return [Integer]
2876
+ #
2877
+ # @!attribute [rw] battery_level
2878
+ # Sidewalk device battery level.
2879
+ # @return [String]
2880
+ #
2881
+ # @!attribute [rw] event
2882
+ # Sidewalk device status notification.
2883
+ # @return [String]
2884
+ #
2885
+ # @!attribute [rw] device_state
2886
+ # Device state defines the device status of sidewalk device.
2887
+ # @return [String]
2888
+ #
2889
+ class SidewalkDeviceMetadata < Struct.new(
2890
+ :rssi,
2891
+ :battery_level,
2892
+ :event,
2893
+ :device_state)
2894
+ SENSITIVE = []
2895
+ include Aws::Structure
2896
+ end
2897
+
2817
2898
  # Sidewalk object used by list functions.
2818
2899
  #
2819
2900
  # @!attribute [rw] amazon_id
2820
2901
  # The Sidewalk Amazon ID.
2821
2902
  # @return [String]
2822
2903
  #
2904
+ # @!attribute [rw] sidewalk_id
2905
+ # The sidewalk device identification.
2906
+ # @return [String]
2907
+ #
2908
+ # @!attribute [rw] sidewalk_manufacturing_sn
2909
+ # The Sidewalk manufacturing series number.
2910
+ # @return [String]
2911
+ #
2912
+ # @!attribute [rw] device_certificates
2913
+ # The sidewalk device certificates for Ed25519 and P256r1.
2914
+ # @return [Array<Types::CertificateList>]
2915
+ #
2823
2916
  class SidewalkListDevice < Struct.new(
2824
- :amazon_id)
2917
+ :amazon_id,
2918
+ :sidewalk_id,
2919
+ :sidewalk_manufacturing_sn,
2920
+ :device_certificates)
2825
2921
  SENSITIVE = []
2826
2922
  include Aws::Structure
2827
2923
  end
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.6.0
4
+ version: 1.7.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: 2021-03-26 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core