aws-sdk-alexaforbusiness 1.19.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b11a0524cc0010bb66c8c59db0bda81039c32446
4
- data.tar.gz: 460172a787f5ddfada01d85ac25f19b6d9f65190
3
+ metadata.gz: 57d1d641192496d3d27adbcf06e6a86aa9cd9297
4
+ data.tar.gz: 7f17956f2259174296b381abd072a4cb3ef34b60
5
5
  SHA512:
6
- metadata.gz: 52c9bca0246d150899f607bea9862c3e7515753fb9881d867a180fe5f72bff25c0c550edffba72b0885f061721d2fc1a23476caf1a221896aab421438f2824af
7
- data.tar.gz: 923946854426bc01fb600824d608d91ccf4be9123f1df760bbd947abab5fa49314d7bdb0a8cb015c42d0705ad195853040f6e99d1e2669858798aa598d100bd2
6
+ metadata.gz: 561e56b65e713bbdc617afc1de8407496b0b62cc6fd1dff189d5cb2015221e8b8c43fd566c0dbe500cbd63ff7912a39b1dd856bd81973ec5890a6a857426c483
7
+ data.tar.gz: 7f54ece6a2855072128b19abb18bcef28e866d81d74ea62580a5fc4a3caafbb7337b6eb4c3feff868d96a0470965eed4ffc38461ee4cb3708e213ca66969476e
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
42
42
  # @service
43
43
  module Aws::AlexaForBusiness
44
44
 
45
- GEM_VERSION = '1.19.0'
45
+ GEM_VERSION = '1.20.0'
46
46
 
47
47
  end
@@ -209,6 +209,49 @@ module Aws::AlexaForBusiness
209
209
  # When `true`, request parameters are validated before
210
210
  # sending the request.
211
211
  #
212
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
213
+ # requests through. Formatted like 'http://proxy.com:123'.
214
+ #
215
+ # @option options [Float] :http_open_timeout (15) The number of
216
+ # seconds to wait when opening a HTTP session before rasing a
217
+ # `Timeout::Error`.
218
+ #
219
+ # @option options [Integer] :http_read_timeout (60) The default
220
+ # number of seconds to wait for response data. This value can
221
+ # safely be set
222
+ # per-request on the session yeidled by {#session_for}.
223
+ #
224
+ # @option options [Float] :http_idle_timeout (5) The number of
225
+ # seconds a connection is allowed to sit idble before it is
226
+ # considered stale. Stale connections are closed and removed
227
+ # from the pool before making a request.
228
+ #
229
+ # @option options [Float] :http_continue_timeout (1) The number of
230
+ # seconds to wait for a 100-continue response before sending the
231
+ # request body. This option has no effect unless the request has
232
+ # "Expect" header set to "100-continue". Defaults to `nil` which
233
+ # disables this behaviour. This value can safely be set per
234
+ # request on the session yeidled by {#session_for}.
235
+ #
236
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
237
+ # HTTP debug output will be sent to the `:logger`.
238
+ #
239
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
240
+ # SSL peer certificates are verified when establishing a
241
+ # connection.
242
+ #
243
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
244
+ # certificate authority bundle file that should be used when
245
+ # verifying peer certificates. If you do not pass
246
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
247
+ # will be used if available.
248
+ #
249
+ # @option options [String] :ssl_ca_directory Full path of the
250
+ # directory that contains the unbundled SSL certificate
251
+ # authority files for verifying peer certificates. If you do
252
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
253
+ # system default will be used if available.
254
+ #
212
255
  def initialize(*args)
213
256
  super
214
257
  end
@@ -585,6 +628,46 @@ module Aws::AlexaForBusiness
585
628
  req.send_request(options)
586
629
  end
587
630
 
631
+ # Creates a gateway group with the specified details.
632
+ #
633
+ # @option params [required, String] :name
634
+ # The name of the gateway group.
635
+ #
636
+ # @option params [String] :description
637
+ # The description of the gateway group.
638
+ #
639
+ # @option params [required, String] :client_request_token
640
+ # A unique, user-specified identifier for the request that ensures
641
+ # idempotency.
642
+ #
643
+ # **A suitable default value is auto-generated.** You should normally
644
+ # not need to pass this option.**
645
+ #
646
+ # @return [Types::CreateGatewayGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
647
+ #
648
+ # * {Types::CreateGatewayGroupResponse#gateway_group_arn #gateway_group_arn} => String
649
+ #
650
+ # @example Request syntax with placeholder values
651
+ #
652
+ # resp = client.create_gateway_group({
653
+ # name: "GatewayGroupName", # required
654
+ # description: "GatewayGroupDescription",
655
+ # client_request_token: "ClientRequestToken", # required
656
+ # })
657
+ #
658
+ # @example Response structure
659
+ #
660
+ # resp.gateway_group_arn #=> String
661
+ #
662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateGatewayGroup AWS API Documentation
663
+ #
664
+ # @overload create_gateway_group(params = {})
665
+ # @param [Hash] params ({})
666
+ def create_gateway_group(params = {}, options = {})
667
+ req = build_request(:create_gateway_group, params)
668
+ req.send_request(options)
669
+ end
670
+
588
671
  # Creates a new room profile with the specified details.
589
672
  #
590
673
  # @option params [required, String] :profile_name
@@ -918,6 +1001,28 @@ module Aws::AlexaForBusiness
918
1001
  req.send_request(options)
919
1002
  end
920
1003
 
1004
+ # Deletes a gateway group.
1005
+ #
1006
+ # @option params [required, String] :gateway_group_arn
1007
+ # The ARN of the gateway group to delete.
1008
+ #
1009
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1010
+ #
1011
+ # @example Request syntax with placeholder values
1012
+ #
1013
+ # resp = client.delete_gateway_group({
1014
+ # gateway_group_arn: "Arn", # required
1015
+ # })
1016
+ #
1017
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteGatewayGroup AWS API Documentation
1018
+ #
1019
+ # @overload delete_gateway_group(params = {})
1020
+ # @param [Hash] params ({})
1021
+ def delete_gateway_group(params = {}, options = {})
1022
+ req = build_request(:delete_gateway_group, params)
1023
+ req.send_request(options)
1024
+ end
1025
+
921
1026
  # Deletes a room profile by the profile ARN.
922
1027
  #
923
1028
  # @option params [String] :profile_arn
@@ -1374,6 +1479,68 @@ module Aws::AlexaForBusiness
1374
1479
  req.send_request(options)
1375
1480
  end
1376
1481
 
1482
+ # Retrieves the details of a gateway.
1483
+ #
1484
+ # @option params [required, String] :gateway_arn
1485
+ # The ARN of the gateway to get.
1486
+ #
1487
+ # @return [Types::GetGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1488
+ #
1489
+ # * {Types::GetGatewayResponse#gateway #gateway} => Types::Gateway
1490
+ #
1491
+ # @example Request syntax with placeholder values
1492
+ #
1493
+ # resp = client.get_gateway({
1494
+ # gateway_arn: "Arn", # required
1495
+ # })
1496
+ #
1497
+ # @example Response structure
1498
+ #
1499
+ # resp.gateway.arn #=> String
1500
+ # resp.gateway.name #=> String
1501
+ # resp.gateway.description #=> String
1502
+ # resp.gateway.gateway_group_arn #=> String
1503
+ # resp.gateway.software_version #=> String
1504
+ #
1505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGateway AWS API Documentation
1506
+ #
1507
+ # @overload get_gateway(params = {})
1508
+ # @param [Hash] params ({})
1509
+ def get_gateway(params = {}, options = {})
1510
+ req = build_request(:get_gateway, params)
1511
+ req.send_request(options)
1512
+ end
1513
+
1514
+ # Retrieves the details of a gateway group.
1515
+ #
1516
+ # @option params [required, String] :gateway_group_arn
1517
+ # The ARN of the gateway group to get.
1518
+ #
1519
+ # @return [Types::GetGatewayGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1520
+ #
1521
+ # * {Types::GetGatewayGroupResponse#gateway_group #gateway_group} => Types::GatewayGroup
1522
+ #
1523
+ # @example Request syntax with placeholder values
1524
+ #
1525
+ # resp = client.get_gateway_group({
1526
+ # gateway_group_arn: "Arn", # required
1527
+ # })
1528
+ #
1529
+ # @example Response structure
1530
+ #
1531
+ # resp.gateway_group.arn #=> String
1532
+ # resp.gateway_group.name #=> String
1533
+ # resp.gateway_group.description #=> String
1534
+ #
1535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGatewayGroup AWS API Documentation
1536
+ #
1537
+ # @overload get_gateway_group(params = {})
1538
+ # @param [Hash] params ({})
1539
+ def get_gateway_group(params = {}, options = {})
1540
+ req = build_request(:get_gateway_group, params)
1541
+ req.send_request(options)
1542
+ end
1543
+
1377
1544
  # Retrieves the configured values for the user enrollment invitation
1378
1545
  # email template.
1379
1546
  #
@@ -1689,6 +1856,92 @@ module Aws::AlexaForBusiness
1689
1856
  req.send_request(options)
1690
1857
  end
1691
1858
 
1859
+ # Retrieves a list of gateway group summaries. Use GetGatewayGroup to
1860
+ # retrieve details of a specific gateway group.
1861
+ #
1862
+ # @option params [String] :next_token
1863
+ # The token used to paginate though multiple pages of gateway group
1864
+ # summaries.
1865
+ #
1866
+ # @option params [Integer] :max_results
1867
+ # The maximum number of gateway group summaries to return. The default
1868
+ # is 50.
1869
+ #
1870
+ # @return [Types::ListGatewayGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1871
+ #
1872
+ # * {Types::ListGatewayGroupsResponse#gateway_groups #gateway_groups} => Array<Types::GatewayGroupSummary>
1873
+ # * {Types::ListGatewayGroupsResponse#next_token #next_token} => String
1874
+ #
1875
+ # @example Request syntax with placeholder values
1876
+ #
1877
+ # resp = client.list_gateway_groups({
1878
+ # next_token: "NextToken",
1879
+ # max_results: 1,
1880
+ # })
1881
+ #
1882
+ # @example Response structure
1883
+ #
1884
+ # resp.gateway_groups #=> Array
1885
+ # resp.gateway_groups[0].arn #=> String
1886
+ # resp.gateway_groups[0].name #=> String
1887
+ # resp.gateway_groups[0].description #=> String
1888
+ # resp.next_token #=> String
1889
+ #
1890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGatewayGroups AWS API Documentation
1891
+ #
1892
+ # @overload list_gateway_groups(params = {})
1893
+ # @param [Hash] params ({})
1894
+ def list_gateway_groups(params = {}, options = {})
1895
+ req = build_request(:list_gateway_groups, params)
1896
+ req.send_request(options)
1897
+ end
1898
+
1899
+ # Retrieves a list of gateway summaries. Use GetGateway to retrieve
1900
+ # details of a specific gateway. An optional gateway group ARN can be
1901
+ # provided to only retrieve gateway summaries of gateways that are
1902
+ # associated with that gateway group ARN.
1903
+ #
1904
+ # @option params [String] :gateway_group_arn
1905
+ # The gateway group ARN for which to list gateways.
1906
+ #
1907
+ # @option params [String] :next_token
1908
+ # The token used to paginate though multiple pages of gateway summaries.
1909
+ #
1910
+ # @option params [Integer] :max_results
1911
+ # The maximum number of gateway summaries to return. The default is 50.
1912
+ #
1913
+ # @return [Types::ListGatewaysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1914
+ #
1915
+ # * {Types::ListGatewaysResponse#gateways #gateways} => Array<Types::GatewaySummary>
1916
+ # * {Types::ListGatewaysResponse#next_token #next_token} => String
1917
+ #
1918
+ # @example Request syntax with placeholder values
1919
+ #
1920
+ # resp = client.list_gateways({
1921
+ # gateway_group_arn: "Arn",
1922
+ # next_token: "NextToken",
1923
+ # max_results: 1,
1924
+ # })
1925
+ #
1926
+ # @example Response structure
1927
+ #
1928
+ # resp.gateways #=> Array
1929
+ # resp.gateways[0].arn #=> String
1930
+ # resp.gateways[0].name #=> String
1931
+ # resp.gateways[0].description #=> String
1932
+ # resp.gateways[0].gateway_group_arn #=> String
1933
+ # resp.gateways[0].software_version #=> String
1934
+ # resp.next_token #=> String
1935
+ #
1936
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGateways AWS API Documentation
1937
+ #
1938
+ # @overload list_gateways(params = {})
1939
+ # @param [Hash] params ({})
1940
+ def list_gateways(params = {}, options = {})
1941
+ req = build_request(:list_gateways, params)
1942
+ req.send_request(options)
1943
+ end
1944
+
1692
1945
  # Lists all enabled skills in a specific skill group.
1693
1946
  #
1694
1947
  # @option params [String] :skill_group_arn
@@ -3020,6 +3273,73 @@ module Aws::AlexaForBusiness
3020
3273
  req.send_request(options)
3021
3274
  end
3022
3275
 
3276
+ # Updates the details of a gateway. If any optional field is not
3277
+ # provided, the existing corresponding value is left unmodified.
3278
+ #
3279
+ # @option params [required, String] :gateway_arn
3280
+ # The ARN of the gateway to update.
3281
+ #
3282
+ # @option params [String] :name
3283
+ # The updated name of the gateway.
3284
+ #
3285
+ # @option params [String] :description
3286
+ # The updated description of the gateway.
3287
+ #
3288
+ # @option params [String] :software_version
3289
+ # The updated software version of the gateway. The gateway automatically
3290
+ # updates its software version during normal operation.
3291
+ #
3292
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3293
+ #
3294
+ # @example Request syntax with placeholder values
3295
+ #
3296
+ # resp = client.update_gateway({
3297
+ # gateway_arn: "Arn", # required
3298
+ # name: "GatewayName",
3299
+ # description: "GatewayDescription",
3300
+ # software_version: "GatewayVersion",
3301
+ # })
3302
+ #
3303
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGateway AWS API Documentation
3304
+ #
3305
+ # @overload update_gateway(params = {})
3306
+ # @param [Hash] params ({})
3307
+ def update_gateway(params = {}, options = {})
3308
+ req = build_request(:update_gateway, params)
3309
+ req.send_request(options)
3310
+ end
3311
+
3312
+ # Updates the details of a gateway group. If any optional field is not
3313
+ # provided, the existing corresponding value is left unmodified.
3314
+ #
3315
+ # @option params [required, String] :gateway_group_arn
3316
+ # The ARN of the gateway group to update.
3317
+ #
3318
+ # @option params [String] :name
3319
+ # The updated name of the gateway group.
3320
+ #
3321
+ # @option params [String] :description
3322
+ # The updated description of the gateway group.
3323
+ #
3324
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3325
+ #
3326
+ # @example Request syntax with placeholder values
3327
+ #
3328
+ # resp = client.update_gateway_group({
3329
+ # gateway_group_arn: "Arn", # required
3330
+ # name: "GatewayGroupName",
3331
+ # description: "GatewayGroupDescription",
3332
+ # })
3333
+ #
3334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGatewayGroup AWS API Documentation
3335
+ #
3336
+ # @overload update_gateway_group(params = {})
3337
+ # @param [Hash] params ({})
3338
+ def update_gateway_group(params = {}, options = {})
3339
+ req = build_request(:update_gateway_group, params)
3340
+ req.send_request(options)
3341
+ end
3342
+
3023
3343
  # Updates an existing room profile by room profile ARN.
3024
3344
  #
3025
3345
  # @option params [String] :profile_arn
@@ -3164,7 +3484,7 @@ module Aws::AlexaForBusiness
3164
3484
  params: params,
3165
3485
  config: config)
3166
3486
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
3167
- context[:gem_version] = '1.19.0'
3487
+ context[:gem_version] = '1.20.0'
3168
3488
  Seahorse::Client::Request.new(handlers, context)
3169
3489
  end
3170
3490
 
@@ -79,6 +79,8 @@ module Aws::AlexaForBusiness
79
79
  CreateConferenceProviderResponse = Shapes::StructureShape.new(name: 'CreateConferenceProviderResponse')
80
80
  CreateContactRequest = Shapes::StructureShape.new(name: 'CreateContactRequest')
81
81
  CreateContactResponse = Shapes::StructureShape.new(name: 'CreateContactResponse')
82
+ CreateGatewayGroupRequest = Shapes::StructureShape.new(name: 'CreateGatewayGroupRequest')
83
+ CreateGatewayGroupResponse = Shapes::StructureShape.new(name: 'CreateGatewayGroupResponse')
82
84
  CreateProfileRequest = Shapes::StructureShape.new(name: 'CreateProfileRequest')
83
85
  CreateProfileResponse = Shapes::StructureShape.new(name: 'CreateProfileResponse')
84
86
  CreateRoomRequest = Shapes::StructureShape.new(name: 'CreateRoomRequest')
@@ -99,6 +101,8 @@ module Aws::AlexaForBusiness
99
101
  DeleteContactResponse = Shapes::StructureShape.new(name: 'DeleteContactResponse')
100
102
  DeleteDeviceRequest = Shapes::StructureShape.new(name: 'DeleteDeviceRequest')
101
103
  DeleteDeviceResponse = Shapes::StructureShape.new(name: 'DeleteDeviceResponse')
104
+ DeleteGatewayGroupRequest = Shapes::StructureShape.new(name: 'DeleteGatewayGroupRequest')
105
+ DeleteGatewayGroupResponse = Shapes::StructureShape.new(name: 'DeleteGatewayGroupResponse')
102
106
  DeleteProfileRequest = Shapes::StructureShape.new(name: 'DeleteProfileRequest')
103
107
  DeleteProfileResponse = Shapes::StructureShape.new(name: 'DeleteProfileResponse')
104
108
  DeleteRoomRequest = Shapes::StructureShape.new(name: 'DeleteRoomRequest')
@@ -159,6 +163,17 @@ module Aws::AlexaForBusiness
159
163
  FilterValueList = Shapes::ListShape.new(name: 'FilterValueList')
160
164
  ForgetSmartHomeAppliancesRequest = Shapes::StructureShape.new(name: 'ForgetSmartHomeAppliancesRequest')
161
165
  ForgetSmartHomeAppliancesResponse = Shapes::StructureShape.new(name: 'ForgetSmartHomeAppliancesResponse')
166
+ Gateway = Shapes::StructureShape.new(name: 'Gateway')
167
+ GatewayDescription = Shapes::StringShape.new(name: 'GatewayDescription')
168
+ GatewayGroup = Shapes::StructureShape.new(name: 'GatewayGroup')
169
+ GatewayGroupDescription = Shapes::StringShape.new(name: 'GatewayGroupDescription')
170
+ GatewayGroupName = Shapes::StringShape.new(name: 'GatewayGroupName')
171
+ GatewayGroupSummaries = Shapes::ListShape.new(name: 'GatewayGroupSummaries')
172
+ GatewayGroupSummary = Shapes::StructureShape.new(name: 'GatewayGroupSummary')
173
+ GatewayName = Shapes::StringShape.new(name: 'GatewayName')
174
+ GatewaySummaries = Shapes::ListShape.new(name: 'GatewaySummaries')
175
+ GatewaySummary = Shapes::StructureShape.new(name: 'GatewaySummary')
176
+ GatewayVersion = Shapes::StringShape.new(name: 'GatewayVersion')
162
177
  GenericKeyword = Shapes::StringShape.new(name: 'GenericKeyword')
163
178
  GenericKeywords = Shapes::ListShape.new(name: 'GenericKeywords')
164
179
  GetAddressBookRequest = Shapes::StructureShape.new(name: 'GetAddressBookRequest')
@@ -171,6 +186,10 @@ module Aws::AlexaForBusiness
171
186
  GetContactResponse = Shapes::StructureShape.new(name: 'GetContactResponse')
172
187
  GetDeviceRequest = Shapes::StructureShape.new(name: 'GetDeviceRequest')
173
188
  GetDeviceResponse = Shapes::StructureShape.new(name: 'GetDeviceResponse')
189
+ GetGatewayGroupRequest = Shapes::StructureShape.new(name: 'GetGatewayGroupRequest')
190
+ GetGatewayGroupResponse = Shapes::StructureShape.new(name: 'GetGatewayGroupResponse')
191
+ GetGatewayRequest = Shapes::StructureShape.new(name: 'GetGatewayRequest')
192
+ GetGatewayResponse = Shapes::StructureShape.new(name: 'GetGatewayResponse')
174
193
  GetInvitationConfigurationRequest = Shapes::StructureShape.new(name: 'GetInvitationConfigurationRequest')
175
194
  GetInvitationConfigurationResponse = Shapes::StructureShape.new(name: 'GetInvitationConfigurationResponse')
176
195
  GetProfileRequest = Shapes::StructureShape.new(name: 'GetProfileRequest')
@@ -195,6 +214,10 @@ module Aws::AlexaForBusiness
195
214
  ListConferenceProvidersResponse = Shapes::StructureShape.new(name: 'ListConferenceProvidersResponse')
196
215
  ListDeviceEventsRequest = Shapes::StructureShape.new(name: 'ListDeviceEventsRequest')
197
216
  ListDeviceEventsResponse = Shapes::StructureShape.new(name: 'ListDeviceEventsResponse')
217
+ ListGatewayGroupsRequest = Shapes::StructureShape.new(name: 'ListGatewayGroupsRequest')
218
+ ListGatewayGroupsResponse = Shapes::StructureShape.new(name: 'ListGatewayGroupsResponse')
219
+ ListGatewaysRequest = Shapes::StructureShape.new(name: 'ListGatewaysRequest')
220
+ ListGatewaysResponse = Shapes::StructureShape.new(name: 'ListGatewaysResponse')
198
221
  ListSkillsRequest = Shapes::StructureShape.new(name: 'ListSkillsRequest')
199
222
  ListSkillsResponse = Shapes::StructureShape.new(name: 'ListSkillsResponse')
200
223
  ListSkillsStoreCategoriesRequest = Shapes::StructureShape.new(name: 'ListSkillsStoreCategoriesRequest')
@@ -242,6 +265,7 @@ module Aws::AlexaForBusiness
242
265
  RequirePin = Shapes::StringShape.new(name: 'RequirePin')
243
266
  ResolveRoomRequest = Shapes::StructureShape.new(name: 'ResolveRoomRequest')
244
267
  ResolveRoomResponse = Shapes::StructureShape.new(name: 'ResolveRoomResponse')
268
+ ResourceAssociatedException = Shapes::StructureShape.new(name: 'ResourceAssociatedException')
245
269
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
246
270
  ReviewKey = Shapes::StringShape.new(name: 'ReviewKey')
247
271
  ReviewValue = Shapes::StringShape.new(name: 'ReviewValue')
@@ -330,6 +354,10 @@ module Aws::AlexaForBusiness
330
354
  UpdateContactResponse = Shapes::StructureShape.new(name: 'UpdateContactResponse')
331
355
  UpdateDeviceRequest = Shapes::StructureShape.new(name: 'UpdateDeviceRequest')
332
356
  UpdateDeviceResponse = Shapes::StructureShape.new(name: 'UpdateDeviceResponse')
357
+ UpdateGatewayGroupRequest = Shapes::StructureShape.new(name: 'UpdateGatewayGroupRequest')
358
+ UpdateGatewayGroupResponse = Shapes::StructureShape.new(name: 'UpdateGatewayGroupResponse')
359
+ UpdateGatewayRequest = Shapes::StructureShape.new(name: 'UpdateGatewayRequest')
360
+ UpdateGatewayResponse = Shapes::StructureShape.new(name: 'UpdateGatewayResponse')
333
361
  UpdateProfileRequest = Shapes::StructureShape.new(name: 'UpdateProfileRequest')
334
362
  UpdateProfileResponse = Shapes::StructureShape.new(name: 'UpdateProfileResponse')
335
363
  UpdateRoomRequest = Shapes::StructureShape.new(name: 'UpdateRoomRequest')
@@ -505,6 +533,14 @@ module Aws::AlexaForBusiness
505
533
  CreateContactResponse.add_member(:contact_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ContactArn"))
506
534
  CreateContactResponse.struct_class = Types::CreateContactResponse
507
535
 
536
+ CreateGatewayGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, required: true, location_name: "Name"))
537
+ CreateGatewayGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
538
+ CreateGatewayGroupRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
539
+ CreateGatewayGroupRequest.struct_class = Types::CreateGatewayGroupRequest
540
+
541
+ CreateGatewayGroupResponse.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
542
+ CreateGatewayGroupResponse.struct_class = Types::CreateGatewayGroupResponse
543
+
508
544
  CreateProfileRequest.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, required: true, location_name: "ProfileName"))
509
545
  CreateProfileRequest.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, required: true, location_name: "Timezone"))
510
546
  CreateProfileRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
@@ -575,6 +611,11 @@ module Aws::AlexaForBusiness
575
611
 
576
612
  DeleteDeviceResponse.struct_class = Types::DeleteDeviceResponse
577
613
 
614
+ DeleteGatewayGroupRequest.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayGroupArn"))
615
+ DeleteGatewayGroupRequest.struct_class = Types::DeleteGatewayGroupRequest
616
+
617
+ DeleteGatewayGroupResponse.struct_class = Types::DeleteGatewayGroupResponse
618
+
578
619
  DeleteProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
579
620
  DeleteProfileRequest.struct_class = Types::DeleteProfileRequest
580
621
 
@@ -699,6 +740,34 @@ module Aws::AlexaForBusiness
699
740
 
700
741
  ForgetSmartHomeAppliancesResponse.struct_class = Types::ForgetSmartHomeAppliancesResponse
701
742
 
743
+ Gateway.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
744
+ Gateway.add_member(:name, Shapes::ShapeRef.new(shape: GatewayName, location_name: "Name"))
745
+ Gateway.add_member(:description, Shapes::ShapeRef.new(shape: GatewayDescription, location_name: "Description"))
746
+ Gateway.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
747
+ Gateway.add_member(:software_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "SoftwareVersion"))
748
+ Gateway.struct_class = Types::Gateway
749
+
750
+ GatewayGroup.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
751
+ GatewayGroup.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, location_name: "Name"))
752
+ GatewayGroup.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
753
+ GatewayGroup.struct_class = Types::GatewayGroup
754
+
755
+ GatewayGroupSummaries.member = Shapes::ShapeRef.new(shape: GatewayGroupSummary)
756
+
757
+ GatewayGroupSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
758
+ GatewayGroupSummary.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, location_name: "Name"))
759
+ GatewayGroupSummary.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
760
+ GatewayGroupSummary.struct_class = Types::GatewayGroupSummary
761
+
762
+ GatewaySummaries.member = Shapes::ShapeRef.new(shape: GatewaySummary)
763
+
764
+ GatewaySummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
765
+ GatewaySummary.add_member(:name, Shapes::ShapeRef.new(shape: GatewayName, location_name: "Name"))
766
+ GatewaySummary.add_member(:description, Shapes::ShapeRef.new(shape: GatewayDescription, location_name: "Description"))
767
+ GatewaySummary.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
768
+ GatewaySummary.add_member(:software_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "SoftwareVersion"))
769
+ GatewaySummary.struct_class = Types::GatewaySummary
770
+
702
771
  GenericKeywords.member = Shapes::ShapeRef.new(shape: GenericKeyword)
703
772
 
704
773
  GetAddressBookRequest.add_member(:address_book_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "AddressBookArn"))
@@ -730,6 +799,18 @@ module Aws::AlexaForBusiness
730
799
  GetDeviceResponse.add_member(:device, Shapes::ShapeRef.new(shape: Device, location_name: "Device"))
731
800
  GetDeviceResponse.struct_class = Types::GetDeviceResponse
732
801
 
802
+ GetGatewayGroupRequest.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayGroupArn"))
803
+ GetGatewayGroupRequest.struct_class = Types::GetGatewayGroupRequest
804
+
805
+ GetGatewayGroupResponse.add_member(:gateway_group, Shapes::ShapeRef.new(shape: GatewayGroup, location_name: "GatewayGroup"))
806
+ GetGatewayGroupResponse.struct_class = Types::GetGatewayGroupResponse
807
+
808
+ GetGatewayRequest.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayArn"))
809
+ GetGatewayRequest.struct_class = Types::GetGatewayRequest
810
+
811
+ GetGatewayResponse.add_member(:gateway, Shapes::ShapeRef.new(shape: Gateway, location_name: "Gateway"))
812
+ GetGatewayResponse.struct_class = Types::GetGatewayResponse
813
+
733
814
  GetInvitationConfigurationRequest.struct_class = Types::GetInvitationConfigurationRequest
734
815
 
735
816
  GetInvitationConfigurationResponse.add_member(:organization_name, Shapes::ShapeRef.new(shape: OrganizationName, location_name: "OrganizationName"))
@@ -793,6 +874,23 @@ module Aws::AlexaForBusiness
793
874
  ListDeviceEventsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
794
875
  ListDeviceEventsResponse.struct_class = Types::ListDeviceEventsResponse
795
876
 
877
+ ListGatewayGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
878
+ ListGatewayGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
879
+ ListGatewayGroupsRequest.struct_class = Types::ListGatewayGroupsRequest
880
+
881
+ ListGatewayGroupsResponse.add_member(:gateway_groups, Shapes::ShapeRef.new(shape: GatewayGroupSummaries, location_name: "GatewayGroups"))
882
+ ListGatewayGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
883
+ ListGatewayGroupsResponse.struct_class = Types::ListGatewayGroupsResponse
884
+
885
+ ListGatewaysRequest.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
886
+ ListGatewaysRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
887
+ ListGatewaysRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
888
+ ListGatewaysRequest.struct_class = Types::ListGatewaysRequest
889
+
890
+ ListGatewaysResponse.add_member(:gateways, Shapes::ShapeRef.new(shape: GatewaySummaries, location_name: "Gateways"))
891
+ ListGatewaysResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
892
+ ListGatewaysResponse.struct_class = Types::ListGatewaysResponse
893
+
796
894
  ListSkillsRequest.add_member(:skill_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SkillGroupArn"))
797
895
  ListSkillsRequest.add_member(:enablement_type, Shapes::ShapeRef.new(shape: EnablementTypeFilter, location_name: "EnablementType"))
798
896
  ListSkillsRequest.add_member(:skill_type, Shapes::ShapeRef.new(shape: SkillTypeFilter, location_name: "SkillType"))
@@ -1176,6 +1274,21 @@ module Aws::AlexaForBusiness
1176
1274
 
1177
1275
  UpdateDeviceResponse.struct_class = Types::UpdateDeviceResponse
1178
1276
 
1277
+ UpdateGatewayGroupRequest.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayGroupArn"))
1278
+ UpdateGatewayGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: GatewayGroupName, location_name: "Name"))
1279
+ UpdateGatewayGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: GatewayGroupDescription, location_name: "Description"))
1280
+ UpdateGatewayGroupRequest.struct_class = Types::UpdateGatewayGroupRequest
1281
+
1282
+ UpdateGatewayGroupResponse.struct_class = Types::UpdateGatewayGroupResponse
1283
+
1284
+ UpdateGatewayRequest.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GatewayArn"))
1285
+ UpdateGatewayRequest.add_member(:name, Shapes::ShapeRef.new(shape: GatewayName, location_name: "Name"))
1286
+ UpdateGatewayRequest.add_member(:description, Shapes::ShapeRef.new(shape: GatewayDescription, location_name: "Description"))
1287
+ UpdateGatewayRequest.add_member(:software_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "SoftwareVersion"))
1288
+ UpdateGatewayRequest.struct_class = Types::UpdateGatewayRequest
1289
+
1290
+ UpdateGatewayResponse.struct_class = Types::UpdateGatewayResponse
1291
+
1179
1292
  UpdateProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
1180
1293
  UpdateProfileRequest.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, location_name: "ProfileName"))
1181
1294
  UpdateProfileRequest.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
@@ -1334,6 +1447,16 @@ module Aws::AlexaForBusiness
1334
1447
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1335
1448
  end)
1336
1449
 
1450
+ api.add_operation(:create_gateway_group, Seahorse::Model::Operation.new.tap do |o|
1451
+ o.name = "CreateGatewayGroup"
1452
+ o.http_method = "POST"
1453
+ o.http_request_uri = "/"
1454
+ o.input = Shapes::ShapeRef.new(shape: CreateGatewayGroupRequest)
1455
+ o.output = Shapes::ShapeRef.new(shape: CreateGatewayGroupResponse)
1456
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
1457
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1458
+ end)
1459
+
1337
1460
  api.add_operation(:create_profile, Seahorse::Model::Operation.new.tap do |o|
1338
1461
  o.name = "CreateProfile"
1339
1462
  o.http_method = "POST"
@@ -1427,6 +1550,15 @@ module Aws::AlexaForBusiness
1427
1550
  o.errors << Shapes::ShapeRef.new(shape: InvalidCertificateAuthorityException)
1428
1551
  end)
1429
1552
 
1553
+ api.add_operation(:delete_gateway_group, Seahorse::Model::Operation.new.tap do |o|
1554
+ o.name = "DeleteGatewayGroup"
1555
+ o.http_method = "POST"
1556
+ o.http_request_uri = "/"
1557
+ o.input = Shapes::ShapeRef.new(shape: DeleteGatewayGroupRequest)
1558
+ o.output = Shapes::ShapeRef.new(shape: DeleteGatewayGroupResponse)
1559
+ o.errors << Shapes::ShapeRef.new(shape: ResourceAssociatedException)
1560
+ end)
1561
+
1430
1562
  api.add_operation(:delete_profile, Seahorse::Model::Operation.new.tap do |o|
1431
1563
  o.name = "DeleteProfile"
1432
1564
  o.http_method = "POST"
@@ -1587,6 +1719,24 @@ module Aws::AlexaForBusiness
1587
1719
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1588
1720
  end)
1589
1721
 
1722
+ api.add_operation(:get_gateway, Seahorse::Model::Operation.new.tap do |o|
1723
+ o.name = "GetGateway"
1724
+ o.http_method = "POST"
1725
+ o.http_request_uri = "/"
1726
+ o.input = Shapes::ShapeRef.new(shape: GetGatewayRequest)
1727
+ o.output = Shapes::ShapeRef.new(shape: GetGatewayResponse)
1728
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1729
+ end)
1730
+
1731
+ api.add_operation(:get_gateway_group, Seahorse::Model::Operation.new.tap do |o|
1732
+ o.name = "GetGatewayGroup"
1733
+ o.http_method = "POST"
1734
+ o.http_request_uri = "/"
1735
+ o.input = Shapes::ShapeRef.new(shape: GetGatewayGroupRequest)
1736
+ o.output = Shapes::ShapeRef.new(shape: GetGatewayGroupResponse)
1737
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1738
+ end)
1739
+
1590
1740
  api.add_operation(:get_invitation_configuration, Seahorse::Model::Operation.new.tap do |o|
1591
1741
  o.name = "GetInvitationConfiguration"
1592
1742
  o.http_method = "POST"
@@ -1675,6 +1825,34 @@ module Aws::AlexaForBusiness
1675
1825
  )
1676
1826
  end)
1677
1827
 
1828
+ api.add_operation(:list_gateway_groups, Seahorse::Model::Operation.new.tap do |o|
1829
+ o.name = "ListGatewayGroups"
1830
+ o.http_method = "POST"
1831
+ o.http_request_uri = "/"
1832
+ o.input = Shapes::ShapeRef.new(shape: ListGatewayGroupsRequest)
1833
+ o.output = Shapes::ShapeRef.new(shape: ListGatewayGroupsResponse)
1834
+ o[:pager] = Aws::Pager.new(
1835
+ limit_key: "max_results",
1836
+ tokens: {
1837
+ "next_token" => "next_token"
1838
+ }
1839
+ )
1840
+ end)
1841
+
1842
+ api.add_operation(:list_gateways, Seahorse::Model::Operation.new.tap do |o|
1843
+ o.name = "ListGateways"
1844
+ o.http_method = "POST"
1845
+ o.http_request_uri = "/"
1846
+ o.input = Shapes::ShapeRef.new(shape: ListGatewaysRequest)
1847
+ o.output = Shapes::ShapeRef.new(shape: ListGatewaysResponse)
1848
+ o[:pager] = Aws::Pager.new(
1849
+ limit_key: "max_results",
1850
+ tokens: {
1851
+ "next_token" => "next_token"
1852
+ }
1853
+ )
1854
+ end)
1855
+
1678
1856
  api.add_operation(:list_skills, Seahorse::Model::Operation.new.tap do |o|
1679
1857
  o.name = "ListSkills"
1680
1858
  o.http_method = "POST"
@@ -2021,6 +2199,26 @@ module Aws::AlexaForBusiness
2021
2199
  o.errors << Shapes::ShapeRef.new(shape: DeviceNotRegisteredException)
2022
2200
  end)
2023
2201
 
2202
+ api.add_operation(:update_gateway, Seahorse::Model::Operation.new.tap do |o|
2203
+ o.name = "UpdateGateway"
2204
+ o.http_method = "POST"
2205
+ o.http_request_uri = "/"
2206
+ o.input = Shapes::ShapeRef.new(shape: UpdateGatewayRequest)
2207
+ o.output = Shapes::ShapeRef.new(shape: UpdateGatewayResponse)
2208
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2209
+ o.errors << Shapes::ShapeRef.new(shape: NameInUseException)
2210
+ end)
2211
+
2212
+ api.add_operation(:update_gateway_group, Seahorse::Model::Operation.new.tap do |o|
2213
+ o.name = "UpdateGatewayGroup"
2214
+ o.http_method = "POST"
2215
+ o.http_request_uri = "/"
2216
+ o.input = Shapes::ShapeRef.new(shape: UpdateGatewayGroupRequest)
2217
+ o.output = Shapes::ShapeRef.new(shape: UpdateGatewayGroupResponse)
2218
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
2219
+ o.errors << Shapes::ShapeRef.new(shape: NameInUseException)
2220
+ end)
2221
+
2024
2222
  api.add_operation(:update_profile, Seahorse::Model::Operation.new.tap do |o|
2025
2223
  o.name = "UpdateProfile"
2026
2224
  o.http_method = "POST"
@@ -757,6 +757,51 @@ module Aws::AlexaForBusiness
757
757
  include Aws::Structure
758
758
  end
759
759
 
760
+ # @note When making an API call, you may pass CreateGatewayGroupRequest
761
+ # data as a hash:
762
+ #
763
+ # {
764
+ # name: "GatewayGroupName", # required
765
+ # description: "GatewayGroupDescription",
766
+ # client_request_token: "ClientRequestToken", # required
767
+ # }
768
+ #
769
+ # @!attribute [rw] name
770
+ # The name of the gateway group.
771
+ # @return [String]
772
+ #
773
+ # @!attribute [rw] description
774
+ # The description of the gateway group.
775
+ # @return [String]
776
+ #
777
+ # @!attribute [rw] client_request_token
778
+ # A unique, user-specified identifier for the request that ensures
779
+ # idempotency.
780
+ #
781
+ # **A suitable default value is auto-generated.** You should normally
782
+ # not need to pass this option.
783
+ # @return [String]
784
+ #
785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateGatewayGroupRequest AWS API Documentation
786
+ #
787
+ class CreateGatewayGroupRequest < Struct.new(
788
+ :name,
789
+ :description,
790
+ :client_request_token)
791
+ include Aws::Structure
792
+ end
793
+
794
+ # @!attribute [rw] gateway_group_arn
795
+ # The ARN of the created gateway group.
796
+ # @return [String]
797
+ #
798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateGatewayGroupResponse AWS API Documentation
799
+ #
800
+ class CreateGatewayGroupResponse < Struct.new(
801
+ :gateway_group_arn)
802
+ include Aws::Structure
803
+ end
804
+
760
805
  # @note When making an API call, you may pass CreateProfileRequest
761
806
  # data as a hash:
762
807
  #
@@ -1135,6 +1180,28 @@ module Aws::AlexaForBusiness
1135
1180
  #
1136
1181
  class DeleteDeviceResponse < Aws::EmptyStructure; end
1137
1182
 
1183
+ # @note When making an API call, you may pass DeleteGatewayGroupRequest
1184
+ # data as a hash:
1185
+ #
1186
+ # {
1187
+ # gateway_group_arn: "Arn", # required
1188
+ # }
1189
+ #
1190
+ # @!attribute [rw] gateway_group_arn
1191
+ # The ARN of the gateway group to delete.
1192
+ # @return [String]
1193
+ #
1194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteGatewayGroupRequest AWS API Documentation
1195
+ #
1196
+ class DeleteGatewayGroupRequest < Struct.new(
1197
+ :gateway_group_arn)
1198
+ include Aws::Structure
1199
+ end
1200
+
1201
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteGatewayGroupResponse AWS API Documentation
1202
+ #
1203
+ class DeleteGatewayGroupResponse < Aws::EmptyStructure; end
1204
+
1138
1205
  # @note When making an API call, you may pass DeleteProfileRequest
1139
1206
  # data as a hash:
1140
1207
  #
@@ -1668,6 +1735,120 @@ module Aws::AlexaForBusiness
1668
1735
  #
1669
1736
  class ForgetSmartHomeAppliancesResponse < Aws::EmptyStructure; end
1670
1737
 
1738
+ # The details of the gateway.
1739
+ #
1740
+ # @!attribute [rw] arn
1741
+ # The ARN of the gateway.
1742
+ # @return [String]
1743
+ #
1744
+ # @!attribute [rw] name
1745
+ # The name of the gateway.
1746
+ # @return [String]
1747
+ #
1748
+ # @!attribute [rw] description
1749
+ # The description of the gateway.
1750
+ # @return [String]
1751
+ #
1752
+ # @!attribute [rw] gateway_group_arn
1753
+ # The ARN of the gateway group that the gateway is associated to.
1754
+ # @return [String]
1755
+ #
1756
+ # @!attribute [rw] software_version
1757
+ # The software version of the gateway. The gateway automatically
1758
+ # updates its software version during normal operation.
1759
+ # @return [String]
1760
+ #
1761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/Gateway AWS API Documentation
1762
+ #
1763
+ class Gateway < Struct.new(
1764
+ :arn,
1765
+ :name,
1766
+ :description,
1767
+ :gateway_group_arn,
1768
+ :software_version)
1769
+ include Aws::Structure
1770
+ end
1771
+
1772
+ # The details of the gateway group.
1773
+ #
1774
+ # @!attribute [rw] arn
1775
+ # The ARN of the gateway group.
1776
+ # @return [String]
1777
+ #
1778
+ # @!attribute [rw] name
1779
+ # The name of the gateway group.
1780
+ # @return [String]
1781
+ #
1782
+ # @!attribute [rw] description
1783
+ # The description of the gateway group.
1784
+ # @return [String]
1785
+ #
1786
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GatewayGroup AWS API Documentation
1787
+ #
1788
+ class GatewayGroup < Struct.new(
1789
+ :arn,
1790
+ :name,
1791
+ :description)
1792
+ include Aws::Structure
1793
+ end
1794
+
1795
+ # The summary of a gateway group.
1796
+ #
1797
+ # @!attribute [rw] arn
1798
+ # The ARN of the gateway group.
1799
+ # @return [String]
1800
+ #
1801
+ # @!attribute [rw] name
1802
+ # The name of the gateway group.
1803
+ # @return [String]
1804
+ #
1805
+ # @!attribute [rw] description
1806
+ # The description of the gateway group.
1807
+ # @return [String]
1808
+ #
1809
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GatewayGroupSummary AWS API Documentation
1810
+ #
1811
+ class GatewayGroupSummary < Struct.new(
1812
+ :arn,
1813
+ :name,
1814
+ :description)
1815
+ include Aws::Structure
1816
+ end
1817
+
1818
+ # The summary of a gateway.
1819
+ #
1820
+ # @!attribute [rw] arn
1821
+ # The ARN of the gateway.
1822
+ # @return [String]
1823
+ #
1824
+ # @!attribute [rw] name
1825
+ # The name of the gateway.
1826
+ # @return [String]
1827
+ #
1828
+ # @!attribute [rw] description
1829
+ # The description of the gateway.
1830
+ # @return [String]
1831
+ #
1832
+ # @!attribute [rw] gateway_group_arn
1833
+ # The ARN of the gateway group that the gateway is associated to.
1834
+ # @return [String]
1835
+ #
1836
+ # @!attribute [rw] software_version
1837
+ # The software version of the gateway. The gateway automatically
1838
+ # updates its software version during normal operation.
1839
+ # @return [String]
1840
+ #
1841
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GatewaySummary AWS API Documentation
1842
+ #
1843
+ class GatewaySummary < Struct.new(
1844
+ :arn,
1845
+ :name,
1846
+ :description,
1847
+ :gateway_group_arn,
1848
+ :software_version)
1849
+ include Aws::Structure
1850
+ end
1851
+
1671
1852
  # @note When making an API call, you may pass GetAddressBookRequest
1672
1853
  # data as a hash:
1673
1854
  #
@@ -1801,6 +1982,64 @@ module Aws::AlexaForBusiness
1801
1982
  include Aws::Structure
1802
1983
  end
1803
1984
 
1985
+ # @note When making an API call, you may pass GetGatewayGroupRequest
1986
+ # data as a hash:
1987
+ #
1988
+ # {
1989
+ # gateway_group_arn: "Arn", # required
1990
+ # }
1991
+ #
1992
+ # @!attribute [rw] gateway_group_arn
1993
+ # The ARN of the gateway group to get.
1994
+ # @return [String]
1995
+ #
1996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGatewayGroupRequest AWS API Documentation
1997
+ #
1998
+ class GetGatewayGroupRequest < Struct.new(
1999
+ :gateway_group_arn)
2000
+ include Aws::Structure
2001
+ end
2002
+
2003
+ # @!attribute [rw] gateway_group
2004
+ # The details of the gateway group.
2005
+ # @return [Types::GatewayGroup]
2006
+ #
2007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGatewayGroupResponse AWS API Documentation
2008
+ #
2009
+ class GetGatewayGroupResponse < Struct.new(
2010
+ :gateway_group)
2011
+ include Aws::Structure
2012
+ end
2013
+
2014
+ # @note When making an API call, you may pass GetGatewayRequest
2015
+ # data as a hash:
2016
+ #
2017
+ # {
2018
+ # gateway_arn: "Arn", # required
2019
+ # }
2020
+ #
2021
+ # @!attribute [rw] gateway_arn
2022
+ # The ARN of the gateway to get.
2023
+ # @return [String]
2024
+ #
2025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGatewayRequest AWS API Documentation
2026
+ #
2027
+ class GetGatewayRequest < Struct.new(
2028
+ :gateway_arn)
2029
+ include Aws::Structure
2030
+ end
2031
+
2032
+ # @!attribute [rw] gateway
2033
+ # The details of the gateway.
2034
+ # @return [Types::Gateway]
2035
+ #
2036
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetGatewayResponse AWS API Documentation
2037
+ #
2038
+ class GetGatewayResponse < Struct.new(
2039
+ :gateway)
2040
+ include Aws::Structure
2041
+ end
2042
+
1804
2043
  # @api private
1805
2044
  #
1806
2045
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetInvitationConfigurationRequest AWS API Documentation
@@ -2132,6 +2371,98 @@ module Aws::AlexaForBusiness
2132
2371
  include Aws::Structure
2133
2372
  end
2134
2373
 
2374
+ # @note When making an API call, you may pass ListGatewayGroupsRequest
2375
+ # data as a hash:
2376
+ #
2377
+ # {
2378
+ # next_token: "NextToken",
2379
+ # max_results: 1,
2380
+ # }
2381
+ #
2382
+ # @!attribute [rw] next_token
2383
+ # The token used to paginate though multiple pages of gateway group
2384
+ # summaries.
2385
+ # @return [String]
2386
+ #
2387
+ # @!attribute [rw] max_results
2388
+ # The maximum number of gateway group summaries to return. The default
2389
+ # is 50.
2390
+ # @return [Integer]
2391
+ #
2392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGatewayGroupsRequest AWS API Documentation
2393
+ #
2394
+ class ListGatewayGroupsRequest < Struct.new(
2395
+ :next_token,
2396
+ :max_results)
2397
+ include Aws::Structure
2398
+ end
2399
+
2400
+ # @!attribute [rw] gateway_groups
2401
+ # The gateway groups in the list.
2402
+ # @return [Array<Types::GatewayGroupSummary>]
2403
+ #
2404
+ # @!attribute [rw] next_token
2405
+ # The token used to paginate though multiple pages of gateway group
2406
+ # summaries.
2407
+ # @return [String]
2408
+ #
2409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGatewayGroupsResponse AWS API Documentation
2410
+ #
2411
+ class ListGatewayGroupsResponse < Struct.new(
2412
+ :gateway_groups,
2413
+ :next_token)
2414
+ include Aws::Structure
2415
+ end
2416
+
2417
+ # @note When making an API call, you may pass ListGatewaysRequest
2418
+ # data as a hash:
2419
+ #
2420
+ # {
2421
+ # gateway_group_arn: "Arn",
2422
+ # next_token: "NextToken",
2423
+ # max_results: 1,
2424
+ # }
2425
+ #
2426
+ # @!attribute [rw] gateway_group_arn
2427
+ # The gateway group ARN for which to list gateways.
2428
+ # @return [String]
2429
+ #
2430
+ # @!attribute [rw] next_token
2431
+ # The token used to paginate though multiple pages of gateway
2432
+ # summaries.
2433
+ # @return [String]
2434
+ #
2435
+ # @!attribute [rw] max_results
2436
+ # The maximum number of gateway summaries to return. The default is
2437
+ # 50.
2438
+ # @return [Integer]
2439
+ #
2440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGatewaysRequest AWS API Documentation
2441
+ #
2442
+ class ListGatewaysRequest < Struct.new(
2443
+ :gateway_group_arn,
2444
+ :next_token,
2445
+ :max_results)
2446
+ include Aws::Structure
2447
+ end
2448
+
2449
+ # @!attribute [rw] gateways
2450
+ # The gateways in the list.
2451
+ # @return [Array<Types::GatewaySummary>]
2452
+ #
2453
+ # @!attribute [rw] next_token
2454
+ # The token used to paginate though multiple pages of gateway
2455
+ # summaries.
2456
+ # @return [String]
2457
+ #
2458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListGatewaysResponse AWS API Documentation
2459
+ #
2460
+ class ListGatewaysResponse < Struct.new(
2461
+ :gateways,
2462
+ :next_token)
2463
+ include Aws::Structure
2464
+ end
2465
+
2135
2466
  # @note When making an API call, you may pass ListSkillsRequest
2136
2467
  # data as a hash:
2137
2468
  #
@@ -4123,6 +4454,81 @@ module Aws::AlexaForBusiness
4123
4454
  #
4124
4455
  class UpdateDeviceResponse < Aws::EmptyStructure; end
4125
4456
 
4457
+ # @note When making an API call, you may pass UpdateGatewayGroupRequest
4458
+ # data as a hash:
4459
+ #
4460
+ # {
4461
+ # gateway_group_arn: "Arn", # required
4462
+ # name: "GatewayGroupName",
4463
+ # description: "GatewayGroupDescription",
4464
+ # }
4465
+ #
4466
+ # @!attribute [rw] gateway_group_arn
4467
+ # The ARN of the gateway group to update.
4468
+ # @return [String]
4469
+ #
4470
+ # @!attribute [rw] name
4471
+ # The updated name of the gateway group.
4472
+ # @return [String]
4473
+ #
4474
+ # @!attribute [rw] description
4475
+ # The updated description of the gateway group.
4476
+ # @return [String]
4477
+ #
4478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGatewayGroupRequest AWS API Documentation
4479
+ #
4480
+ class UpdateGatewayGroupRequest < Struct.new(
4481
+ :gateway_group_arn,
4482
+ :name,
4483
+ :description)
4484
+ include Aws::Structure
4485
+ end
4486
+
4487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGatewayGroupResponse AWS API Documentation
4488
+ #
4489
+ class UpdateGatewayGroupResponse < Aws::EmptyStructure; end
4490
+
4491
+ # @note When making an API call, you may pass UpdateGatewayRequest
4492
+ # data as a hash:
4493
+ #
4494
+ # {
4495
+ # gateway_arn: "Arn", # required
4496
+ # name: "GatewayName",
4497
+ # description: "GatewayDescription",
4498
+ # software_version: "GatewayVersion",
4499
+ # }
4500
+ #
4501
+ # @!attribute [rw] gateway_arn
4502
+ # The ARN of the gateway to update.
4503
+ # @return [String]
4504
+ #
4505
+ # @!attribute [rw] name
4506
+ # The updated name of the gateway.
4507
+ # @return [String]
4508
+ #
4509
+ # @!attribute [rw] description
4510
+ # The updated description of the gateway.
4511
+ # @return [String]
4512
+ #
4513
+ # @!attribute [rw] software_version
4514
+ # The updated software version of the gateway. The gateway
4515
+ # automatically updates its software version during normal operation.
4516
+ # @return [String]
4517
+ #
4518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGatewayRequest AWS API Documentation
4519
+ #
4520
+ class UpdateGatewayRequest < Struct.new(
4521
+ :gateway_arn,
4522
+ :name,
4523
+ :description,
4524
+ :software_version)
4525
+ include Aws::Structure
4526
+ end
4527
+
4528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateGatewayResponse AWS API Documentation
4529
+ #
4530
+ class UpdateGatewayResponse < Aws::EmptyStructure; end
4531
+
4126
4532
  # @note When making an API call, you may pass UpdateProfileRequest
4127
4533
  # data as a hash:
4128
4534
  #
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.19.0
4
+ version: 1.20.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: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-alexaforbusiness/errors.rb
60
60
  - lib/aws-sdk-alexaforbusiness/resource.rb
61
61
  - lib/aws-sdk-alexaforbusiness/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: