aws-sdk-iotwireless 1.16.0 → 1.17.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +77 -1
- data/lib/aws-sdk-iotwireless/client_api.rb +61 -0
- data/lib/aws-sdk-iotwireless/types.rb +114 -0
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bac6dfa741d60ba280f8c99a04be1ba7001d81a247d012df892543e673541055
|
4
|
+
data.tar.gz: 59cf2408adf9016e3ac3b6e4407be241dbcb585ce1a0dfa7fea4b7cfcf8d5987
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0a1cf8b37e882589f552f6c4ad99470669c783bf6b689014284c26d2f96302c814f1335a4abe21ac699fd3aff70481d5f44a8e963b684621fc9d029abf14e45
|
7
|
+
data.tar.gz: edba1c23154d702c3d1beacd7c9204f2513baa0a3052aee9e8c1b0a3cba6c5a6874064c46d8f3526e7643888e7139d427667e303ff73a8cc9a54c8126e53d276
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.17.0 (2021-11-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Two new APIs, GetNetworkAnalyzerConfiguration and UpdateNetworkAnalyzerConfiguration, are added for the newly released Network Analyzer feature which enables customers to view real-time frame information and logs from LoRaWAN devices and gateways.
|
8
|
+
|
4
9
|
1.16.0 (2021-11-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
@@ -1720,6 +1720,39 @@ module Aws::IoTWireless
|
|
1720
1720
|
req.send_request(options)
|
1721
1721
|
end
|
1722
1722
|
|
1723
|
+
# Get NetworkAnalyzer configuration.
|
1724
|
+
#
|
1725
|
+
# @option params [required, String] :configuration_name
|
1726
|
+
# NetworkAnalyzer configuration name.
|
1727
|
+
#
|
1728
|
+
# @return [Types::GetNetworkAnalyzerConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1729
|
+
#
|
1730
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#trace_content #trace_content} => Types::TraceContent
|
1731
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_devices #wireless_devices} => Array<String>
|
1732
|
+
# * {Types::GetNetworkAnalyzerConfigurationResponse#wireless_gateways #wireless_gateways} => Array<String>
|
1733
|
+
#
|
1734
|
+
# @example Request syntax with placeholder values
|
1735
|
+
#
|
1736
|
+
# resp = client.get_network_analyzer_configuration({
|
1737
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1738
|
+
# })
|
1739
|
+
#
|
1740
|
+
# @example Response structure
|
1741
|
+
#
|
1742
|
+
# resp.trace_content.wireless_device_frame_info #=> String, one of "ENABLED", "DISABLED"
|
1743
|
+
# resp.trace_content.log_level #=> String, one of "INFO", "ERROR", "DISABLED"
|
1744
|
+
# resp.wireless_devices #=> Array
|
1745
|
+
# resp.wireless_devices[0] #=> String
|
1746
|
+
# resp.wireless_gateways #=> Array
|
1747
|
+
# resp.wireless_gateways[0] #=> String
|
1748
|
+
#
|
1749
|
+
# @overload get_network_analyzer_configuration(params = {})
|
1750
|
+
# @param [Hash] params ({})
|
1751
|
+
def get_network_analyzer_configuration(params = {}, options = {})
|
1752
|
+
req = build_request(:get_network_analyzer_configuration, params)
|
1753
|
+
req.send_request(options)
|
1754
|
+
end
|
1755
|
+
|
1723
1756
|
# Gets information about a partner account. If `PartnerAccountId` and
|
1724
1757
|
# `PartnerType` are `null`, returns all partner accounts.
|
1725
1758
|
#
|
@@ -3254,6 +3287,49 @@ module Aws::IoTWireless
|
|
3254
3287
|
req.send_request(options)
|
3255
3288
|
end
|
3256
3289
|
|
3290
|
+
# Update NetworkAnalyzer configuration.
|
3291
|
+
#
|
3292
|
+
# @option params [required, String] :configuration_name
|
3293
|
+
# NetworkAnalyzer configuration name.
|
3294
|
+
#
|
3295
|
+
# @option params [Types::TraceContent] :trace_content
|
3296
|
+
# Trace Content for resources.
|
3297
|
+
#
|
3298
|
+
# @option params [Array<String>] :wireless_devices_to_add
|
3299
|
+
# WirelessDevices to add into NetworkAnalyzerConfiguration.
|
3300
|
+
#
|
3301
|
+
# @option params [Array<String>] :wireless_devices_to_remove
|
3302
|
+
# WirelessDevices to remove from NetworkAnalyzerConfiguration.
|
3303
|
+
#
|
3304
|
+
# @option params [Array<String>] :wireless_gateways_to_add
|
3305
|
+
# WirelessGateways to add into NetworkAnalyzerConfiguration.
|
3306
|
+
#
|
3307
|
+
# @option params [Array<String>] :wireless_gateways_to_remove
|
3308
|
+
# WirelessGateways to remove from NetworkAnalyzerConfiguration.
|
3309
|
+
#
|
3310
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3311
|
+
#
|
3312
|
+
# @example Request syntax with placeholder values
|
3313
|
+
#
|
3314
|
+
# resp = client.update_network_analyzer_configuration({
|
3315
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
3316
|
+
# trace_content: {
|
3317
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
3318
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
3319
|
+
# },
|
3320
|
+
# wireless_devices_to_add: ["WirelessDeviceId"],
|
3321
|
+
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
3322
|
+
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
3323
|
+
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
3324
|
+
# })
|
3325
|
+
#
|
3326
|
+
# @overload update_network_analyzer_configuration(params = {})
|
3327
|
+
# @param [Hash] params ({})
|
3328
|
+
def update_network_analyzer_configuration(params = {}, options = {})
|
3329
|
+
req = build_request(:update_network_analyzer_configuration, params)
|
3330
|
+
req.send_request(options)
|
3331
|
+
end
|
3332
|
+
|
3257
3333
|
# Updates properties of a partner account.
|
3258
3334
|
#
|
3259
3335
|
# @option params [required, Types::SidewalkUpdateAccount] :sidewalk
|
@@ -3421,7 +3497,7 @@ module Aws::IoTWireless
|
|
3421
3497
|
params: params,
|
3422
3498
|
config: config)
|
3423
3499
|
context[:gem_name] = 'aws-sdk-iotwireless'
|
3424
|
-
context[:gem_version] = '1.
|
3500
|
+
context[:gem_version] = '1.17.0'
|
3425
3501
|
Seahorse::Client::Request.new(handlers, context)
|
3426
3502
|
end
|
3427
3503
|
|
@@ -162,6 +162,8 @@ module Aws::IoTWireless
|
|
162
162
|
GetMulticastGroupResponse = Shapes::StructureShape.new(name: 'GetMulticastGroupResponse')
|
163
163
|
GetMulticastGroupSessionRequest = Shapes::StructureShape.new(name: 'GetMulticastGroupSessionRequest')
|
164
164
|
GetMulticastGroupSessionResponse = Shapes::StructureShape.new(name: 'GetMulticastGroupSessionResponse')
|
165
|
+
GetNetworkAnalyzerConfigurationRequest = Shapes::StructureShape.new(name: 'GetNetworkAnalyzerConfigurationRequest')
|
166
|
+
GetNetworkAnalyzerConfigurationResponse = Shapes::StructureShape.new(name: 'GetNetworkAnalyzerConfigurationResponse')
|
165
167
|
GetPartnerAccountRequest = Shapes::StructureShape.new(name: 'GetPartnerAccountRequest')
|
166
168
|
GetPartnerAccountResponse = Shapes::StructureShape.new(name: 'GetPartnerAccountResponse')
|
167
169
|
GetResourceEventConfigurationRequest = Shapes::StructureShape.new(name: 'GetResourceEventConfigurationRequest')
|
@@ -266,6 +268,7 @@ module Aws::IoTWireless
|
|
266
268
|
MulticastWirelessMetadata = Shapes::StructureShape.new(name: 'MulticastWirelessMetadata')
|
267
269
|
NetId = Shapes::StringShape.new(name: 'NetId')
|
268
270
|
NetIdFilters = Shapes::ListShape.new(name: 'NetIdFilters')
|
271
|
+
NetworkAnalyzerConfigurationName = Shapes::StringShape.new(name: 'NetworkAnalyzerConfigurationName')
|
269
272
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
270
273
|
NumberOfDevicesInGroup = Shapes::IntegerShape.new(name: 'NumberOfDevicesInGroup')
|
271
274
|
NumberOfDevicesRequested = Shapes::IntegerShape.new(name: 'NumberOfDevicesRequested')
|
@@ -366,6 +369,7 @@ module Aws::IoTWireless
|
|
366
369
|
ThingName = Shapes::StringShape.new(name: 'ThingName')
|
367
370
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
368
371
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
372
|
+
TraceContent = Shapes::StructureShape.new(name: 'TraceContent')
|
369
373
|
TransmitMode = Shapes::IntegerShape.new(name: 'TransmitMode')
|
370
374
|
UlBucketSize = Shapes::IntegerShape.new(name: 'UlBucketSize')
|
371
375
|
UlRate = Shapes::IntegerShape.new(name: 'UlRate')
|
@@ -381,6 +385,8 @@ module Aws::IoTWireless
|
|
381
385
|
UpdateLogLevelsByResourceTypesResponse = Shapes::StructureShape.new(name: 'UpdateLogLevelsByResourceTypesResponse')
|
382
386
|
UpdateMulticastGroupRequest = Shapes::StructureShape.new(name: 'UpdateMulticastGroupRequest')
|
383
387
|
UpdateMulticastGroupResponse = Shapes::StructureShape.new(name: 'UpdateMulticastGroupResponse')
|
388
|
+
UpdateNetworkAnalyzerConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateNetworkAnalyzerConfigurationRequest')
|
389
|
+
UpdateNetworkAnalyzerConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateNetworkAnalyzerConfigurationResponse')
|
384
390
|
UpdatePartnerAccountRequest = Shapes::StructureShape.new(name: 'UpdatePartnerAccountRequest')
|
385
391
|
UpdatePartnerAccountResponse = Shapes::StructureShape.new(name: 'UpdatePartnerAccountResponse')
|
386
392
|
UpdateResourceEventConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateResourceEventConfigurationRequest')
|
@@ -397,8 +403,10 @@ module Aws::IoTWireless
|
|
397
403
|
WirelessDeviceEvent = Shapes::StringShape.new(name: 'WirelessDeviceEvent')
|
398
404
|
WirelessDeviceEventLogOption = Shapes::StructureShape.new(name: 'WirelessDeviceEventLogOption')
|
399
405
|
WirelessDeviceEventLogOptionList = Shapes::ListShape.new(name: 'WirelessDeviceEventLogOptionList')
|
406
|
+
WirelessDeviceFrameInfo = Shapes::StringShape.new(name: 'WirelessDeviceFrameInfo')
|
400
407
|
WirelessDeviceId = Shapes::StringShape.new(name: 'WirelessDeviceId')
|
401
408
|
WirelessDeviceIdType = Shapes::StringShape.new(name: 'WirelessDeviceIdType')
|
409
|
+
WirelessDeviceList = Shapes::ListShape.new(name: 'WirelessDeviceList')
|
402
410
|
WirelessDeviceLogOption = Shapes::StructureShape.new(name: 'WirelessDeviceLogOption')
|
403
411
|
WirelessDeviceLogOptionList = Shapes::ListShape.new(name: 'WirelessDeviceLogOptionList')
|
404
412
|
WirelessDeviceName = Shapes::StringShape.new(name: 'WirelessDeviceName')
|
@@ -411,6 +419,7 @@ module Aws::IoTWireless
|
|
411
419
|
WirelessGatewayEventLogOptionList = Shapes::ListShape.new(name: 'WirelessGatewayEventLogOptionList')
|
412
420
|
WirelessGatewayId = Shapes::StringShape.new(name: 'WirelessGatewayId')
|
413
421
|
WirelessGatewayIdType = Shapes::StringShape.new(name: 'WirelessGatewayIdType')
|
422
|
+
WirelessGatewayList = Shapes::ListShape.new(name: 'WirelessGatewayList')
|
414
423
|
WirelessGatewayLogOption = Shapes::StructureShape.new(name: 'WirelessGatewayLogOption')
|
415
424
|
WirelessGatewayLogOptionList = Shapes::ListShape.new(name: 'WirelessGatewayLogOptionList')
|
416
425
|
WirelessGatewayName = Shapes::StringShape.new(name: 'WirelessGatewayName')
|
@@ -776,6 +785,14 @@ module Aws::IoTWireless
|
|
776
785
|
GetMulticastGroupSessionResponse.add_member(:lo_ra_wan, Shapes::ShapeRef.new(shape: LoRaWANMulticastSession, location_name: "LoRaWAN"))
|
777
786
|
GetMulticastGroupSessionResponse.struct_class = Types::GetMulticastGroupSessionResponse
|
778
787
|
|
788
|
+
GetNetworkAnalyzerConfigurationRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, required: true, location: "uri", location_name: "ConfigurationName"))
|
789
|
+
GetNetworkAnalyzerConfigurationRequest.struct_class = Types::GetNetworkAnalyzerConfigurationRequest
|
790
|
+
|
791
|
+
GetNetworkAnalyzerConfigurationResponse.add_member(:trace_content, Shapes::ShapeRef.new(shape: TraceContent, location_name: "TraceContent"))
|
792
|
+
GetNetworkAnalyzerConfigurationResponse.add_member(:wireless_devices, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevices"))
|
793
|
+
GetNetworkAnalyzerConfigurationResponse.add_member(:wireless_gateways, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGateways"))
|
794
|
+
GetNetworkAnalyzerConfigurationResponse.struct_class = Types::GetNetworkAnalyzerConfigurationResponse
|
795
|
+
|
779
796
|
GetPartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
|
780
797
|
GetPartnerAccountRequest.add_member(:partner_type, Shapes::ShapeRef.new(shape: PartnerType, required: true, location: "querystring", location_name: "partnerType"))
|
781
798
|
GetPartnerAccountRequest.struct_class = Types::GetPartnerAccountRequest
|
@@ -1310,6 +1327,10 @@ module Aws::IoTWireless
|
|
1310
1327
|
TooManyTagsException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
|
1311
1328
|
TooManyTagsException.struct_class = Types::TooManyTagsException
|
1312
1329
|
|
1330
|
+
TraceContent.add_member(:wireless_device_frame_info, Shapes::ShapeRef.new(shape: WirelessDeviceFrameInfo, location_name: "WirelessDeviceFrameInfo"))
|
1331
|
+
TraceContent.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "LogLevel"))
|
1332
|
+
TraceContent.struct_class = Types::TraceContent
|
1333
|
+
|
1313
1334
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "resourceArn"))
|
1314
1335
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
1315
1336
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -1350,6 +1371,16 @@ module Aws::IoTWireless
|
|
1350
1371
|
|
1351
1372
|
UpdateMulticastGroupResponse.struct_class = Types::UpdateMulticastGroupResponse
|
1352
1373
|
|
1374
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: NetworkAnalyzerConfigurationName, required: true, location: "uri", location_name: "ConfigurationName"))
|
1375
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:trace_content, Shapes::ShapeRef.new(shape: TraceContent, location_name: "TraceContent"))
|
1376
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_devices_to_add, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevicesToAdd"))
|
1377
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_devices_to_remove, Shapes::ShapeRef.new(shape: WirelessDeviceList, location_name: "WirelessDevicesToRemove"))
|
1378
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_add, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToAdd"))
|
1379
|
+
UpdateNetworkAnalyzerConfigurationRequest.add_member(:wireless_gateways_to_remove, Shapes::ShapeRef.new(shape: WirelessGatewayList, location_name: "WirelessGatewaysToRemove"))
|
1380
|
+
UpdateNetworkAnalyzerConfigurationRequest.struct_class = Types::UpdateNetworkAnalyzerConfigurationRequest
|
1381
|
+
|
1382
|
+
UpdateNetworkAnalyzerConfigurationResponse.struct_class = Types::UpdateNetworkAnalyzerConfigurationResponse
|
1383
|
+
|
1353
1384
|
UpdatePartnerAccountRequest.add_member(:sidewalk, Shapes::ShapeRef.new(shape: SidewalkUpdateAccount, required: true, location_name: "Sidewalk"))
|
1354
1385
|
UpdatePartnerAccountRequest.add_member(:partner_account_id, Shapes::ShapeRef.new(shape: PartnerAccountId, required: true, location: "uri", location_name: "PartnerAccountId"))
|
1355
1386
|
UpdatePartnerAccountRequest.add_member(:partner_type, Shapes::ShapeRef.new(shape: PartnerType, required: true, location: "querystring", location_name: "partnerType"))
|
@@ -1403,6 +1434,8 @@ module Aws::IoTWireless
|
|
1403
1434
|
|
1404
1435
|
WirelessDeviceEventLogOptionList.member = Shapes::ShapeRef.new(shape: WirelessDeviceEventLogOption)
|
1405
1436
|
|
1437
|
+
WirelessDeviceList.member = Shapes::ShapeRef.new(shape: WirelessDeviceId)
|
1438
|
+
|
1406
1439
|
WirelessDeviceLogOption.add_member(:type, Shapes::ShapeRef.new(shape: WirelessDeviceType, required: true, location_name: "Type"))
|
1407
1440
|
WirelessDeviceLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
|
1408
1441
|
WirelessDeviceLogOption.add_member(:events, Shapes::ShapeRef.new(shape: WirelessDeviceEventLogOptionList, location_name: "Events"))
|
@@ -1431,6 +1464,8 @@ module Aws::IoTWireless
|
|
1431
1464
|
|
1432
1465
|
WirelessGatewayEventLogOptionList.member = Shapes::ShapeRef.new(shape: WirelessGatewayEventLogOption)
|
1433
1466
|
|
1467
|
+
WirelessGatewayList.member = Shapes::ShapeRef.new(shape: WirelessGatewayId)
|
1468
|
+
|
1434
1469
|
WirelessGatewayLogOption.add_member(:type, Shapes::ShapeRef.new(shape: WirelessGatewayType, required: true, location_name: "Type"))
|
1435
1470
|
WirelessGatewayLogOption.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "LogLevel"))
|
1436
1471
|
WirelessGatewayLogOption.add_member(:events, Shapes::ShapeRef.new(shape: WirelessGatewayEventLogOptionList, location_name: "Events"))
|
@@ -1998,6 +2033,19 @@ module Aws::IoTWireless
|
|
1998
2033
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1999
2034
|
end)
|
2000
2035
|
|
2036
|
+
api.add_operation(:get_network_analyzer_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2037
|
+
o.name = "GetNetworkAnalyzerConfiguration"
|
2038
|
+
o.http_method = "GET"
|
2039
|
+
o.http_request_uri = "/network-analyzer-configurations/{ConfigurationName}"
|
2040
|
+
o.input = Shapes::ShapeRef.new(shape: GetNetworkAnalyzerConfigurationRequest)
|
2041
|
+
o.output = Shapes::ShapeRef.new(shape: GetNetworkAnalyzerConfigurationResponse)
|
2042
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2043
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2044
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2045
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2046
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2047
|
+
end)
|
2048
|
+
|
2001
2049
|
api.add_operation(:get_partner_account, Seahorse::Model::Operation.new.tap do |o|
|
2002
2050
|
o.name = "GetPartnerAccount"
|
2003
2051
|
o.http_method = "GET"
|
@@ -2560,6 +2608,19 @@ module Aws::IoTWireless
|
|
2560
2608
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2561
2609
|
end)
|
2562
2610
|
|
2611
|
+
api.add_operation(:update_network_analyzer_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2612
|
+
o.name = "UpdateNetworkAnalyzerConfiguration"
|
2613
|
+
o.http_method = "PATCH"
|
2614
|
+
o.http_request_uri = "/network-analyzer-configurations/{ConfigurationName}"
|
2615
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateNetworkAnalyzerConfigurationRequest)
|
2616
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateNetworkAnalyzerConfigurationResponse)
|
2617
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2618
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2619
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2620
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2621
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2622
|
+
end)
|
2623
|
+
|
2563
2624
|
api.add_operation(:update_partner_account, Seahorse::Model::Operation.new.tap do |o|
|
2564
2625
|
o.name = "UpdatePartnerAccount"
|
2565
2626
|
o.http_method = "PATCH"
|
@@ -1788,6 +1788,43 @@ module Aws::IoTWireless
|
|
1788
1788
|
include Aws::Structure
|
1789
1789
|
end
|
1790
1790
|
|
1791
|
+
# @note When making an API call, you may pass GetNetworkAnalyzerConfigurationRequest
|
1792
|
+
# data as a hash:
|
1793
|
+
#
|
1794
|
+
# {
|
1795
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1796
|
+
# }
|
1797
|
+
#
|
1798
|
+
# @!attribute [rw] configuration_name
|
1799
|
+
# NetworkAnalyzer configuration name.
|
1800
|
+
# @return [String]
|
1801
|
+
#
|
1802
|
+
class GetNetworkAnalyzerConfigurationRequest < Struct.new(
|
1803
|
+
:configuration_name)
|
1804
|
+
SENSITIVE = []
|
1805
|
+
include Aws::Structure
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
# @!attribute [rw] trace_content
|
1809
|
+
# Trace Content for resources.
|
1810
|
+
# @return [Types::TraceContent]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] wireless_devices
|
1813
|
+
# List of WirelessDevices in the NetworkAnalyzerConfiguration.
|
1814
|
+
# @return [Array<String>]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] wireless_gateways
|
1817
|
+
# List of WirelessGateways in the NetworkAnalyzerConfiguration.
|
1818
|
+
# @return [Array<String>]
|
1819
|
+
#
|
1820
|
+
class GetNetworkAnalyzerConfigurationResponse < Struct.new(
|
1821
|
+
:trace_content,
|
1822
|
+
:wireless_devices,
|
1823
|
+
:wireless_gateways)
|
1824
|
+
SENSITIVE = []
|
1825
|
+
include Aws::Structure
|
1826
|
+
end
|
1827
|
+
|
1791
1828
|
# @note When making an API call, you may pass GetPartnerAccountRequest
|
1792
1829
|
# data as a hash:
|
1793
1830
|
#
|
@@ -4487,6 +4524,31 @@ module Aws::IoTWireless
|
|
4487
4524
|
include Aws::Structure
|
4488
4525
|
end
|
4489
4526
|
|
4527
|
+
# Trace Content for resources.
|
4528
|
+
#
|
4529
|
+
# @note When making an API call, you may pass TraceContent
|
4530
|
+
# data as a hash:
|
4531
|
+
#
|
4532
|
+
# {
|
4533
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4534
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
4535
|
+
# }
|
4536
|
+
#
|
4537
|
+
# @!attribute [rw] wireless_device_frame_info
|
4538
|
+
# WirelessDevice FrameInfo for trace content.
|
4539
|
+
# @return [String]
|
4540
|
+
#
|
4541
|
+
# @!attribute [rw] log_level
|
4542
|
+
# The log level for a log message.
|
4543
|
+
# @return [String]
|
4544
|
+
#
|
4545
|
+
class TraceContent < Struct.new(
|
4546
|
+
:wireless_device_frame_info,
|
4547
|
+
:log_level)
|
4548
|
+
SENSITIVE = []
|
4549
|
+
include Aws::Structure
|
4550
|
+
end
|
4551
|
+
|
4490
4552
|
# @note When making an API call, you may pass UntagResourceRequest
|
4491
4553
|
# data as a hash:
|
4492
4554
|
#
|
@@ -4700,6 +4762,58 @@ module Aws::IoTWireless
|
|
4700
4762
|
|
4701
4763
|
class UpdateMulticastGroupResponse < Aws::EmptyStructure; end
|
4702
4764
|
|
4765
|
+
# @note When making an API call, you may pass UpdateNetworkAnalyzerConfigurationRequest
|
4766
|
+
# data as a hash:
|
4767
|
+
#
|
4768
|
+
# {
|
4769
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
4770
|
+
# trace_content: {
|
4771
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
4772
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
4773
|
+
# },
|
4774
|
+
# wireless_devices_to_add: ["WirelessDeviceId"],
|
4775
|
+
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
4776
|
+
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
4777
|
+
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
4778
|
+
# }
|
4779
|
+
#
|
4780
|
+
# @!attribute [rw] configuration_name
|
4781
|
+
# NetworkAnalyzer configuration name.
|
4782
|
+
# @return [String]
|
4783
|
+
#
|
4784
|
+
# @!attribute [rw] trace_content
|
4785
|
+
# Trace Content for resources.
|
4786
|
+
# @return [Types::TraceContent]
|
4787
|
+
#
|
4788
|
+
# @!attribute [rw] wireless_devices_to_add
|
4789
|
+
# WirelessDevices to add into NetworkAnalyzerConfiguration.
|
4790
|
+
# @return [Array<String>]
|
4791
|
+
#
|
4792
|
+
# @!attribute [rw] wireless_devices_to_remove
|
4793
|
+
# WirelessDevices to remove from NetworkAnalyzerConfiguration.
|
4794
|
+
# @return [Array<String>]
|
4795
|
+
#
|
4796
|
+
# @!attribute [rw] wireless_gateways_to_add
|
4797
|
+
# WirelessGateways to add into NetworkAnalyzerConfiguration.
|
4798
|
+
# @return [Array<String>]
|
4799
|
+
#
|
4800
|
+
# @!attribute [rw] wireless_gateways_to_remove
|
4801
|
+
# WirelessGateways to remove from NetworkAnalyzerConfiguration.
|
4802
|
+
# @return [Array<String>]
|
4803
|
+
#
|
4804
|
+
class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
|
4805
|
+
:configuration_name,
|
4806
|
+
:trace_content,
|
4807
|
+
:wireless_devices_to_add,
|
4808
|
+
:wireless_devices_to_remove,
|
4809
|
+
:wireless_gateways_to_add,
|
4810
|
+
:wireless_gateways_to_remove)
|
4811
|
+
SENSITIVE = []
|
4812
|
+
include Aws::Structure
|
4813
|
+
end
|
4814
|
+
|
4815
|
+
class UpdateNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
|
4816
|
+
|
4703
4817
|
# @note When making an API call, you may pass UpdatePartnerAccountRequest
|
4704
4818
|
# data as a hash:
|
4705
4819
|
#
|
data/lib/aws-sdk-iotwireless.rb
CHANGED
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.17.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-11-
|
11
|
+
date: 2021-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|