aws-sdk-alexaforbusiness 1.34.0 → 1.35.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
- SHA1:
3
- metadata.gz: e23a96983210d0e2ee08cbd009bd1321ae8f5685
4
- data.tar.gz: f217c7700248578bf747c45bc2576341b85791a2
2
+ SHA256:
3
+ metadata.gz: 67750b32ab6eff6bf0edd829c51831d0db73d324abf5ac6719e5625979603cfa
4
+ data.tar.gz: ba7e1547826459f955c34c5acc5cafca369f54e00a4af1d11a029350f267b4f4
5
5
  SHA512:
6
- metadata.gz: 29d02e7480d0a96c3b57904610b2219b5e3f1b522cd7bca1c88fbd853629f53479dc770acdef79eb87a8e6c1ee6bbc99acf54bd12e74d9aa495dcc1589c9accc
7
- data.tar.gz: 4207f59e94a1f6045a9dd0adac6da7e7ed760121243b34b52820c074787b29a0d6222a7501690e85091a101eebbc858ad5efeb148a192126b0408f3298981a88
6
+ metadata.gz: 675f62a4378503f01257811fd61543c1d44fe68a3040971d0dcfbe837c61f757148cde852072976ffcc3c382ccfb92c0f9ffcf9864a8542f3328b9b6f150a3e6
7
+ data.tar.gz: 6dcccf73af79aa341d9fe118194d71f452a0fb87e1637c3015fc2f64ae546c8d73712a11d2f843470bd16cbeb1da80f2fc17a086d5dd55e79385128a4accdad1
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
45
45
  # @service
46
46
  module Aws::AlexaForBusiness
47
47
 
48
- GEM_VERSION = '1.34.0'
48
+ GEM_VERSION = '1.35.0'
49
49
 
50
50
  end
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:alexaforbusiness)
32
32
  module Aws::AlexaForBusiness
33
33
  # An API client for AlexaForBusiness. To construct a client, you need to configure a `:region` and `:credentials`.
34
34
  #
35
- # client = Aws::AlexaForBusiness::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
35
+ # client = Aws::AlexaForBusiness::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
40
  #
41
41
  # For details on configuring region and credentials see
42
42
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -105,7 +105,7 @@ module Aws::AlexaForBusiness
105
105
  # @option options [required, String] :region
106
106
  # The AWS region to connect to. The configured `:region` is
107
107
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
109
109
  #
110
110
  # * `Aws.config[:region]`
111
111
  # * `ENV['AWS_REGION']`
@@ -161,7 +161,7 @@ module Aws::AlexaForBusiness
161
161
  # @option options [String] :endpoint
162
162
  # The client endpoint is normally constructed from the `:region`
163
163
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
165
165
  #
166
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -229,15 +229,19 @@ module Aws::AlexaForBusiness
229
229
  #
230
230
  # @option options [String] :retry_mode ("legacy")
231
231
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
232
+ #
233
+ # * `legacy` - The pre-existing retry behavior. This is default value if
234
+ # no retry mode is provided.
235
+ #
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ #
240
+ # * `adaptive` - An experimental retry mode that includes all the
241
+ # functionality of `standard` mode along with automatic client side
242
+ # throttling. This is a provisional mode that may change behavior
243
+ # in the future.
244
+ #
241
245
  #
242
246
  # @option options [String] :secret_access_key
243
247
  #
@@ -275,8 +279,7 @@ module Aws::AlexaForBusiness
275
279
  #
276
280
  # @option options [Integer] :http_read_timeout (60) The default
277
281
  # number of seconds to wait for response data. This value can
278
- # safely be set
279
- # per-request on the session yielded by {#session_for}.
282
+ # safely be set per-request on the session.
280
283
  #
281
284
  # @option options [Float] :http_idle_timeout (5) The number of
282
285
  # seconds a connection is allowed to sit idle before it is
@@ -288,7 +291,7 @@ module Aws::AlexaForBusiness
288
291
  # request body. This option has no effect unless the request has
289
292
  # "Expect" header set to "100-continue". Defaults to `nil` which
290
293
  # disables this behaviour. This value can safely be set per
291
- # request on the session yielded by {#session_for}.
294
+ # request on the session.
292
295
  #
293
296
  # @option options [Boolean] :http_wire_trace (false) When `true`,
294
297
  # HTTP debug output will be sent to the `:logger`.
@@ -2038,6 +2041,8 @@ module Aws::AlexaForBusiness
2038
2041
  # * {Types::ListBusinessReportSchedulesResponse#business_report_schedules #business_report_schedules} => Array<Types::BusinessReportSchedule>
2039
2042
  # * {Types::ListBusinessReportSchedulesResponse#next_token #next_token} => String
2040
2043
  #
2044
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2045
+ #
2041
2046
  # @example Request syntax with placeholder values
2042
2047
  #
2043
2048
  # resp = client.list_business_report_schedules({
@@ -2086,6 +2091,8 @@ module Aws::AlexaForBusiness
2086
2091
  # * {Types::ListConferenceProvidersResponse#conference_providers #conference_providers} => Array<Types::ConferenceProvider>
2087
2092
  # * {Types::ListConferenceProvidersResponse#next_token #next_token} => String
2088
2093
  #
2094
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2095
+ #
2089
2096
  # @example Request syntax with placeholder values
2090
2097
  #
2091
2098
  # resp = client.list_conference_providers({
@@ -2147,6 +2154,8 @@ module Aws::AlexaForBusiness
2147
2154
  # * {Types::ListDeviceEventsResponse#device_events #device_events} => Array<Types::DeviceEvent>
2148
2155
  # * {Types::ListDeviceEventsResponse#next_token #next_token} => String
2149
2156
  #
2157
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2158
+ #
2150
2159
  # @example Request syntax with placeholder values
2151
2160
  #
2152
2161
  # resp = client.list_device_events({
@@ -2189,6 +2198,8 @@ module Aws::AlexaForBusiness
2189
2198
  # * {Types::ListGatewayGroupsResponse#gateway_groups #gateway_groups} => Array<Types::GatewayGroupSummary>
2190
2199
  # * {Types::ListGatewayGroupsResponse#next_token #next_token} => String
2191
2200
  #
2201
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2202
+ #
2192
2203
  # @example Request syntax with placeholder values
2193
2204
  #
2194
2205
  # resp = client.list_gateway_groups({
@@ -2232,6 +2243,8 @@ module Aws::AlexaForBusiness
2232
2243
  # * {Types::ListGatewaysResponse#gateways #gateways} => Array<Types::GatewaySummary>
2233
2244
  # * {Types::ListGatewaysResponse#next_token #next_token} => String
2234
2245
  #
2246
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2247
+ #
2235
2248
  # @example Request syntax with placeholder values
2236
2249
  #
2237
2250
  # resp = client.list_gateways({
@@ -2287,6 +2300,8 @@ module Aws::AlexaForBusiness
2287
2300
  # * {Types::ListSkillsResponse#skill_summaries #skill_summaries} => Array<Types::SkillSummary>
2288
2301
  # * {Types::ListSkillsResponse#next_token #next_token} => String
2289
2302
  #
2303
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2304
+ #
2290
2305
  # @example Request syntax with placeholder values
2291
2306
  #
2292
2307
  # resp = client.list_skills({
@@ -2329,6 +2344,8 @@ module Aws::AlexaForBusiness
2329
2344
  # * {Types::ListSkillsStoreCategoriesResponse#category_list #category_list} => Array<Types::Category>
2330
2345
  # * {Types::ListSkillsStoreCategoriesResponse#next_token #next_token} => String
2331
2346
  #
2347
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2348
+ #
2332
2349
  # @example Request syntax with placeholder values
2333
2350
  #
2334
2351
  # resp = client.list_skills_store_categories({
@@ -2369,6 +2386,8 @@ module Aws::AlexaForBusiness
2369
2386
  # * {Types::ListSkillsStoreSkillsByCategoryResponse#skills_store_skills #skills_store_skills} => Array<Types::SkillsStoreSkill>
2370
2387
  # * {Types::ListSkillsStoreSkillsByCategoryResponse#next_token #next_token} => String
2371
2388
  #
2389
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2390
+ #
2372
2391
  # @example Request syntax with placeholder values
2373
2392
  #
2374
2393
  # resp = client.list_skills_store_skills_by_category({
@@ -2432,6 +2451,8 @@ module Aws::AlexaForBusiness
2432
2451
  # * {Types::ListSmartHomeAppliancesResponse#smart_home_appliances #smart_home_appliances} => Array<Types::SmartHomeAppliance>
2433
2452
  # * {Types::ListSmartHomeAppliancesResponse#next_token #next_token} => String
2434
2453
  #
2454
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2455
+ #
2435
2456
  # @example Request syntax with placeholder values
2436
2457
  #
2437
2458
  # resp = client.list_smart_home_appliances({
@@ -2479,6 +2500,8 @@ module Aws::AlexaForBusiness
2479
2500
  # * {Types::ListTagsResponse#tags #tags} => Array<Types::Tag>
2480
2501
  # * {Types::ListTagsResponse#next_token #next_token} => String
2481
2502
  #
2503
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2504
+ #
2482
2505
  # @example Request syntax with placeholder values
2483
2506
  #
2484
2507
  # resp = client.list_tags({
@@ -2803,6 +2826,8 @@ module Aws::AlexaForBusiness
2803
2826
  # * {Types::SearchAddressBooksResponse#next_token #next_token} => String
2804
2827
  # * {Types::SearchAddressBooksResponse#total_count #total_count} => Integer
2805
2828
  #
2829
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2830
+ #
2806
2831
  # @example Request syntax with placeholder values
2807
2832
  #
2808
2833
  # resp = client.search_address_books({
@@ -2869,6 +2894,8 @@ module Aws::AlexaForBusiness
2869
2894
  # * {Types::SearchContactsResponse#next_token #next_token} => String
2870
2895
  # * {Types::SearchContactsResponse#total_count #total_count} => Integer
2871
2896
  #
2897
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2898
+ #
2872
2899
  # @example Request syntax with placeholder values
2873
2900
  #
2874
2901
  # resp = client.search_contacts({
@@ -2948,6 +2975,8 @@ module Aws::AlexaForBusiness
2948
2975
  # * {Types::SearchDevicesResponse#next_token #next_token} => String
2949
2976
  # * {Types::SearchDevicesResponse#total_count #total_count} => Integer
2950
2977
  #
2978
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2979
+ #
2951
2980
  # @example Request syntax with placeholder values
2952
2981
  #
2953
2982
  # resp = client.search_devices({
@@ -3028,6 +3057,8 @@ module Aws::AlexaForBusiness
3028
3057
  # * {Types::SearchNetworkProfilesResponse#next_token #next_token} => String
3029
3058
  # * {Types::SearchNetworkProfilesResponse#total_count #total_count} => Integer
3030
3059
  #
3060
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3061
+ #
3031
3062
  # @example Request syntax with placeholder values
3032
3063
  #
3033
3064
  # resp = client.search_network_profiles({
@@ -3098,6 +3129,8 @@ module Aws::AlexaForBusiness
3098
3129
  # * {Types::SearchProfilesResponse#next_token #next_token} => String
3099
3130
  # * {Types::SearchProfilesResponse#total_count #total_count} => Integer
3100
3131
  #
3132
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3133
+ #
3101
3134
  # @example Request syntax with placeholder values
3102
3135
  #
3103
3136
  # resp = client.search_profiles({
@@ -3170,6 +3203,8 @@ module Aws::AlexaForBusiness
3170
3203
  # * {Types::SearchRoomsResponse#next_token #next_token} => String
3171
3204
  # * {Types::SearchRoomsResponse#total_count #total_count} => Integer
3172
3205
  #
3206
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3207
+ #
3173
3208
  # @example Request syntax with placeholder values
3174
3209
  #
3175
3210
  # resp = client.search_rooms({
@@ -3239,6 +3274,8 @@ module Aws::AlexaForBusiness
3239
3274
  # * {Types::SearchSkillGroupsResponse#next_token #next_token} => String
3240
3275
  # * {Types::SearchSkillGroupsResponse#total_count #total_count} => Integer
3241
3276
  #
3277
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3278
+ #
3242
3279
  # @example Request syntax with placeholder values
3243
3280
  #
3244
3281
  # resp = client.search_skill_groups({
@@ -3307,6 +3344,8 @@ module Aws::AlexaForBusiness
3307
3344
  # * {Types::SearchUsersResponse#next_token #next_token} => String
3308
3345
  # * {Types::SearchUsersResponse#total_count #total_count} => Integer
3309
3346
  #
3347
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3348
+ #
3310
3349
  # @example Request syntax with placeholder values
3311
3350
  #
3312
3351
  # resp = client.search_users({
@@ -4070,7 +4109,7 @@ module Aws::AlexaForBusiness
4070
4109
  params: params,
4071
4110
  config: config)
4072
4111
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
4073
- context[:gem_version] = '1.34.0'
4112
+ context[:gem_version] = '1.35.0'
4074
4113
  Seahorse::Client::Request.new(handlers, context)
4075
4114
  end
4076
4115
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::AlexaForBusiness
9
- # This class provides a resource oriented interface for AlexaForBusiness.
10
- # To create a resource object:
11
- # resource = Aws::AlexaForBusiness::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::AlexaForBusiness::Client.new(region: 'us-west-2')
15
- # resource = Aws::AlexaForBusiness::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
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.34.0
4
+ version: 1.35.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-03-09 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Alexa For Business