aws-sdk-iotwireless 1.0.0 → 1.1.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: bf1f3d2fa6acc0518b208e80a5a19598f2cb36c132a83092b72041e61293fd1a
4
- data.tar.gz: c61e511f58752a3ca75195d163de9c337731abc55a07c8f204ecaa8ad8360e09
3
+ metadata.gz: 7cf460924db0775cd65abce5b095b18e82283cdf8aa2cec237d243b9f5989422
4
+ data.tar.gz: a91f634547cf21d2f5dacea19f48dc4ff017c69986d36ed0543f2ec949918d97
5
5
  SHA512:
6
- metadata.gz: ae506733437ab91029f54dd886da940e759d2727570ff8565acb0ee483e26500d0ffe085e10e1653b0955907c3933f9b603af7a25b3ee9f4539c3386bee62b6d
7
- data.tar.gz: a2b074659b1f9371e9a045e9ae8ae9836b2170dadb43c4a42946884f37b4bca25eede9607cad617ecc0a63117e4ae356931f94e924b8419a8cfe7a7b4947dbc2
6
+ metadata.gz: 1fd14a9faf3a94c7c8721c2f6ac879d6a4550b346c419957b3ac3037451fe3e8e525314ce2a13c617d080e1c4f54c1e068f655adfb3c91b08dd46a5538d9d5cc
7
+ data.tar.gz: 3cb98250220aee92f1c7a1fbd05d904a8ace9e55ab7544d14150c707e5c7da8599a1048bc36817eb2432fddfbc5c506c821c0214689bf8ae01e3297e20aac04e
@@ -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.0.0'
51
+ GEM_VERSION = '1.1.0'
52
52
 
53
53
  end
@@ -1214,7 +1214,7 @@ module Aws::IoTWireless
1214
1214
  # @example Response structure
1215
1215
  #
1216
1216
  # resp.sidewalk.amazon_id #=> String
1217
- # resp.sidewalk.app_server_private_key #=> String
1217
+ # resp.sidewalk.fingerprint #=> String
1218
1218
  # resp.account_linked #=> Boolean
1219
1219
  #
1220
1220
  # @overload get_partner_account(params = {})
@@ -1714,7 +1714,7 @@ module Aws::IoTWireless
1714
1714
  # resp.next_token #=> String
1715
1715
  # resp.sidewalk #=> Array
1716
1716
  # resp.sidewalk[0].amazon_id #=> String
1717
- # resp.sidewalk[0].app_server_private_key #=> String
1717
+ # resp.sidewalk[0].fingerprint #=> String
1718
1718
  #
1719
1719
  # @overload list_partner_accounts(params = {})
1720
1720
  # @param [Hash] params ({})
@@ -2217,7 +2217,7 @@ module Aws::IoTWireless
2217
2217
  params: params,
2218
2218
  config: config)
2219
2219
  context[:gem_name] = 'aws-sdk-iotwireless'
2220
- context[:gem_version] = '1.0.0'
2220
+ context[:gem_version] = '1.1.0'
2221
2221
  Seahorse::Client::Request.new(handlers, context)
2222
2222
  end
2223
2223
 
@@ -101,6 +101,7 @@ module Aws::IoTWireless
101
101
  FNwkSIntKey = Shapes::StringShape.new(name: 'FNwkSIntKey')
102
102
  FPort = Shapes::IntegerShape.new(name: 'FPort')
103
103
  FactoryPresetFreqsList = Shapes::ListShape.new(name: 'FactoryPresetFreqsList')
104
+ Fingerprint = Shapes::StringShape.new(name: 'Fingerprint')
104
105
  GatewayEui = Shapes::StringShape.new(name: 'GatewayEui')
105
106
  GetDestinationRequest = Shapes::StructureShape.new(name: 'GetDestinationRequest')
106
107
  GetDestinationResponse = Shapes::StructureShape.new(name: 'GetDestinationResponse')
@@ -804,7 +805,7 @@ module Aws::IoTWireless
804
805
  SidewalkAccountInfo.struct_class = Types::SidewalkAccountInfo
805
806
 
806
807
  SidewalkAccountInfoWithFingerprint.add_member(:amazon_id, Shapes::ShapeRef.new(shape: AmazonId, location_name: "AmazonId"))
807
- SidewalkAccountInfoWithFingerprint.add_member(:app_server_private_key, Shapes::ShapeRef.new(shape: AppServerPrivateKey, location_name: "AppServerPrivateKey"))
808
+ SidewalkAccountInfoWithFingerprint.add_member(:fingerprint, Shapes::ShapeRef.new(shape: Fingerprint, location_name: "Fingerprint"))
808
809
  SidewalkAccountInfoWithFingerprint.struct_class = Types::SidewalkAccountInfoWithFingerprint
809
810
 
810
811
  SidewalkAccountList.member = Shapes::ShapeRef.new(shape: SidewalkAccountInfoWithFingerprint)
@@ -1122,8 +1122,6 @@ module Aws::IoTWireless
1122
1122
 
1123
1123
  # @!attribute [rw] sidewalk
1124
1124
  # The Sidewalk account credentials.
1125
- #
1126
- # The `AppServerPrivateKey` value is empty to protect its security.
1127
1125
  # @return [Types::SidewalkAccountInfoWithFingerprint]
1128
1126
  #
1129
1127
  # @!attribute [rw] account_linked
@@ -1266,7 +1264,8 @@ module Aws::IoTWireless
1266
1264
  # @return [String]
1267
1265
  #
1268
1266
  # @!attribute [rw] thing_name
1269
- # The name of the thing associated with the wireless device.
1267
+ # The name of the thing associated with the wireless device. The value
1268
+ # is empty if a thing isn't associated with the device.
1270
1269
  # @return [String]
1271
1270
  #
1272
1271
  # @!attribute [rw] thing_arn
@@ -1426,7 +1425,8 @@ module Aws::IoTWireless
1426
1425
  # @return [String]
1427
1426
  #
1428
1427
  # @!attribute [rw] thing_name
1429
- # The name of the thing associated with the wireless gateway.
1428
+ # The name of the thing associated with the wireless gateway. The
1429
+ # value is empty if a thing isn't associated with the gateway.
1430
1430
  # @return [String]
1431
1431
  #
1432
1432
  # @!attribute [rw] thing_arn
@@ -1688,8 +1688,6 @@ module Aws::IoTWireless
1688
1688
  #
1689
1689
  # @!attribute [rw] sidewalk
1690
1690
  # The Sidewalk account credentials.
1691
- #
1692
- # The `AppServerPrivateKey` value is empty to protect its security.
1693
1691
  # @return [Array<Types::SidewalkAccountInfoWithFingerprint>]
1694
1692
  #
1695
1693
  class ListPartnerAccountsResponse < Struct.new(
@@ -1926,7 +1924,7 @@ module Aws::IoTWireless
1926
1924
  include Aws::Structure
1927
1925
  end
1928
1926
 
1929
- # LoRa object for create functions.
1927
+ # LoRaWAN object for create functions.
1930
1928
  #
1931
1929
  # @note When making an API call, you may pass LoRaWANDevice
1932
1930
  # data as a hash:
@@ -1987,7 +1985,7 @@ module Aws::IoTWireless
1987
1985
  # @return [Types::AbpV1_1]
1988
1986
  #
1989
1987
  # @!attribute [rw] abp_v1_0_x
1990
- # LoRa object for create APIs
1988
+ # LoRaWAN object for create APIs
1991
1989
  # @return [Types::AbpV1_0_x]
1992
1990
  #
1993
1991
  class LoRaWANDevice < Struct.new(
@@ -2095,7 +2093,7 @@ module Aws::IoTWireless
2095
2093
  # @return [Integer]
2096
2094
  #
2097
2095
  # @!attribute [rw] mac_version
2098
- # The MAC version (such as OTAA 1.1 or OTA 1.0.3) to use with this
2096
+ # The MAC version (such as OTAA 1.1 or OTAA 1.0.3) to use with this
2099
2097
  # device profile.
2100
2098
  # @return [String]
2101
2099
  #
@@ -2412,7 +2410,7 @@ module Aws::IoTWireless
2412
2410
  include Aws::Structure
2413
2411
  end
2414
2412
 
2415
- # LoRa object for update functions.
2413
+ # LoRaWAN object for update functions.
2416
2414
  #
2417
2415
  # @note When making an API call, you may pass LoRaWANUpdateDevice
2418
2416
  # data as a hash:
@@ -2743,14 +2741,14 @@ module Aws::IoTWireless
2743
2741
  # The Sidewalk Amazon ID.
2744
2742
  # @return [String]
2745
2743
  #
2746
- # @!attribute [rw] app_server_private_key
2747
- # The Sidewalk application server private key.
2744
+ # @!attribute [rw] fingerprint
2745
+ # Fingerprint for Sidewalk application server private key.
2748
2746
  # @return [String]
2749
2747
  #
2750
2748
  class SidewalkAccountInfoWithFingerprint < Struct.new(
2751
2749
  :amazon_id,
2752
- :app_server_private_key)
2753
- SENSITIVE = [:app_server_private_key]
2750
+ :fingerprint)
2751
+ SENSITIVE = [:fingerprint]
2754
2752
  include Aws::Structure
2755
2753
  end
2756
2754
 
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.0.0
4
+ version: 1.1.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: 2020-12-15 00:00:00.000000000 Z
11
+ date: 2020-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core