aws-sdk-alexaforbusiness 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
  SHA1:
3
- metadata.gz: 0633ecc4e867940ff2b7011d90636e6b7cd2eb75
4
- data.tar.gz: ea310431164ac4b50e04d195257ff7dff6f27a93
3
+ metadata.gz: 20626fd57cb2c60374463e9d915efbb6b6f64969
4
+ data.tar.gz: bbdfc882da836cac8dd8d7c2c19b489c55f057c2
5
5
  SHA512:
6
- metadata.gz: 7994b592d63f697e3b944e8a9fac69e74f3c400da52c4966d45c57a7a82c558492d66e025707a680e51371bf98d7e86450758064668ca989ebe93302cedef0ff
7
- data.tar.gz: 8842254fa7d1e7c203fa2dc6b5b4a13183b7ef56b1ced398b3740a7341f0d8d8d35c643f986186fd5ccbffb3c02ef4c38321949527e260dddf91efb9a9b3be42
6
+ metadata.gz: 18f2ec9ad802130a07648a3592ddc1b1b22f46e30218c450a900bca6c08b9fec785fc02c5a61c9548bdda1382b0779b5f4008f13e90a708c8014b66bd378321b
7
+ data.tar.gz: 25ff3e9c581cf1e9fe0d0da18b53d5633dedce26668a59b26499ddd0b892a0282fe7236136d4856b5304c0a013f290a5cb8b91f9604c26299db9d45669caa66c
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
42
42
  # @service
43
43
  module Aws::AlexaForBusiness
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -635,6 +635,8 @@ module Aws::AlexaForBusiness
635
635
  # resp.device.mac_address #=> String
636
636
  # resp.device.room_arn #=> String
637
637
  # resp.device.device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE"
638
+ # resp.device.device_status_info.device_status_details #=> Array
639
+ # resp.device.device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE"
638
640
  #
639
641
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetDevice AWS API Documentation
640
642
  #
@@ -996,8 +998,8 @@ module Aws::AlexaForBusiness
996
998
  #
997
999
  # @option params [Array<Types::Filter>] :filters
998
1000
  # The filters to use to list a specified set of devices. Supported
999
- # filter keys are DeviceName, DeviceStatus, RoomName, DeviceType,
1000
- # DeviceSerialNumber, and UnassociatedOnly.
1001
+ # filter keys are DeviceName, DeviceStatus, DeviceStatusDetailCode,
1002
+ # RoomName, DeviceType, DeviceSerialNumber, and UnassociatedOnly.
1001
1003
  #
1002
1004
  # @option params [Array<Types::Sort>] :sort_criteria
1003
1005
  # The sort order to use in listing the specified set of devices.
@@ -1041,6 +1043,8 @@ module Aws::AlexaForBusiness
1041
1043
  # resp.devices[0].device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE"
1042
1044
  # resp.devices[0].room_arn #=> String
1043
1045
  # resp.devices[0].room_name #=> String
1046
+ # resp.devices[0].device_status_info.device_status_details #=> Array
1047
+ # resp.devices[0].device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE"
1044
1048
  # resp.next_token #=> String
1045
1049
  # resp.total_count #=> Integer
1046
1050
  #
@@ -1609,7 +1613,7 @@ module Aws::AlexaForBusiness
1609
1613
  params: params,
1610
1614
  config: config)
1611
1615
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
1612
- context[:gem_version] = '1.0.0'
1616
+ context[:gem_version] = '1.1.0'
1613
1617
  Seahorse::Client::Request.new(handlers, context)
1614
1618
  end
1615
1619
 
@@ -44,6 +44,10 @@ module Aws::AlexaForBusiness
44
44
  DeviceName = Shapes::StringShape.new(name: 'DeviceName')
45
45
  DeviceSerialNumber = Shapes::StringShape.new(name: 'DeviceSerialNumber')
46
46
  DeviceStatus = Shapes::StringShape.new(name: 'DeviceStatus')
47
+ DeviceStatusDetail = Shapes::StructureShape.new(name: 'DeviceStatusDetail')
48
+ DeviceStatusDetailCode = Shapes::StringShape.new(name: 'DeviceStatusDetailCode')
49
+ DeviceStatusDetails = Shapes::ListShape.new(name: 'DeviceStatusDetails')
50
+ DeviceStatusInfo = Shapes::StructureShape.new(name: 'DeviceStatusInfo')
47
51
  DeviceType = Shapes::StringShape.new(name: 'DeviceType')
48
52
  DisassociateDeviceFromRoomRequest = Shapes::StructureShape.new(name: 'DisassociateDeviceFromRoomRequest')
49
53
  DisassociateDeviceFromRoomResponse = Shapes::StructureShape.new(name: 'DisassociateDeviceFromRoomResponse')
@@ -255,6 +259,7 @@ module Aws::AlexaForBusiness
255
259
  Device.add_member(:mac_address, Shapes::ShapeRef.new(shape: MacAddress, location_name: "MacAddress"))
256
260
  Device.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
257
261
  Device.add_member(:device_status, Shapes::ShapeRef.new(shape: DeviceStatus, location_name: "DeviceStatus"))
262
+ Device.add_member(:device_status_info, Shapes::ShapeRef.new(shape: DeviceStatusInfo, location_name: "DeviceStatusInfo"))
258
263
  Device.struct_class = Types::Device
259
264
 
260
265
  DeviceData.add_member(:device_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DeviceArn"))
@@ -266,10 +271,19 @@ module Aws::AlexaForBusiness
266
271
  DeviceData.add_member(:device_status, Shapes::ShapeRef.new(shape: DeviceStatus, location_name: "DeviceStatus"))
267
272
  DeviceData.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
268
273
  DeviceData.add_member(:room_name, Shapes::ShapeRef.new(shape: RoomName, location_name: "RoomName"))
274
+ DeviceData.add_member(:device_status_info, Shapes::ShapeRef.new(shape: DeviceStatusInfo, location_name: "DeviceStatusInfo"))
269
275
  DeviceData.struct_class = Types::DeviceData
270
276
 
271
277
  DeviceDataList.member = Shapes::ShapeRef.new(shape: DeviceData)
272
278
 
279
+ DeviceStatusDetail.add_member(:code, Shapes::ShapeRef.new(shape: DeviceStatusDetailCode, location_name: "Code"))
280
+ DeviceStatusDetail.struct_class = Types::DeviceStatusDetail
281
+
282
+ DeviceStatusDetails.member = Shapes::ShapeRef.new(shape: DeviceStatusDetail)
283
+
284
+ DeviceStatusInfo.add_member(:device_status_details, Shapes::ShapeRef.new(shape: DeviceStatusDetails, location_name: "DeviceStatusDetails"))
285
+ DeviceStatusInfo.struct_class = Types::DeviceStatusInfo
286
+
273
287
  DisassociateDeviceFromRoomRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DeviceArn"))
274
288
  DisassociateDeviceFromRoomRequest.struct_class = Types::DisassociateDeviceFromRoomRequest
275
289
 
@@ -494,9 +494,14 @@ module Aws::AlexaForBusiness
494
494
  # @return [String]
495
495
  #
496
496
  # @!attribute [rw] device_status
497
- # The status of a device.
497
+ # The status of a device. If the status is not READY, check the
498
+ # DeviceStatusInfo for details.
498
499
  # @return [String]
499
500
  #
501
+ # @!attribute [rw] device_status_info
502
+ # Detailed information about a device's status.
503
+ # @return [Types::DeviceStatusInfo]
504
+ #
500
505
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/Device AWS API Documentation
501
506
  #
502
507
  class Device < Struct.new(
@@ -507,7 +512,8 @@ module Aws::AlexaForBusiness
507
512
  :software_version,
508
513
  :mac_address,
509
514
  :room_arn,
510
- :device_status)
515
+ :device_status,
516
+ :device_status_info)
511
517
  include Aws::Structure
512
518
  end
513
519
 
@@ -549,6 +555,10 @@ module Aws::AlexaForBusiness
549
555
  # The name of the room associated with a device.
550
556
  # @return [String]
551
557
  #
558
+ # @!attribute [rw] device_status_info
559
+ # Detailed information about a device's status.
560
+ # @return [Types::DeviceStatusInfo]
561
+ #
552
562
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeviceData AWS API Documentation
553
563
  #
554
564
  class DeviceData < Struct.new(
@@ -560,7 +570,34 @@ module Aws::AlexaForBusiness
560
570
  :mac_address,
561
571
  :device_status,
562
572
  :room_arn,
563
- :room_name)
573
+ :room_name,
574
+ :device_status_info)
575
+ include Aws::Structure
576
+ end
577
+
578
+ # Details of a device’s status.
579
+ #
580
+ # @!attribute [rw] code
581
+ # The device status detail code.
582
+ # @return [String]
583
+ #
584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeviceStatusDetail AWS API Documentation
585
+ #
586
+ class DeviceStatusDetail < Struct.new(
587
+ :code)
588
+ include Aws::Structure
589
+ end
590
+
591
+ # Detailed information about a device's status.
592
+ #
593
+ # @!attribute [rw] device_status_details
594
+ # One or more device status detail descriptions.
595
+ # @return [Array<Types::DeviceStatusDetail>]
596
+ #
597
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeviceStatusInfo AWS API Documentation
598
+ #
599
+ class DeviceStatusInfo < Struct.new(
600
+ :device_status_details)
564
601
  include Aws::Structure
565
602
  end
566
603
 
@@ -1256,8 +1293,8 @@ module Aws::AlexaForBusiness
1256
1293
  #
1257
1294
  # @!attribute [rw] filters
1258
1295
  # The filters to use to list a specified set of devices. Supported
1259
- # filter keys are DeviceName, DeviceStatus, RoomName, DeviceType,
1260
- # DeviceSerialNumber, and UnassociatedOnly.
1296
+ # filter keys are DeviceName, DeviceStatus, DeviceStatusDetailCode,
1297
+ # RoomName, DeviceType, DeviceSerialNumber, and UnassociatedOnly.
1261
1298
  # @return [Array<Types::Filter>]
1262
1299
  #
1263
1300
  # @!attribute [rw] sort_criteria
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-alexaforbusiness
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: 2017-11-30 00:00:00.000000000 Z
11
+ date: 2018-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core