aws-sdk-alexaforbusiness 1.31.0 → 1.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-alexaforbusiness.rb +7 -4
- data/lib/aws-sdk-alexaforbusiness/client.rb +168 -24
- data/lib/aws-sdk-alexaforbusiness/client_api.rb +81 -0
- data/lib/aws-sdk-alexaforbusiness/errors.rb +37 -15
- data/lib/aws-sdk-alexaforbusiness/resource.rb +1 -0
- data/lib/aws-sdk-alexaforbusiness/types.rb +482 -18
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e6b9c9f74a2eea62a619bd14ef858d8d5e013a74c050fae0ff0b612370faa944
|
4
|
+
data.tar.gz: 593a676f6e524d0a4e744062f34b66d3d390c2d0c9dae6731711d79278bc7691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b36f780d24123f82e5e6ea3b11dacc32ca174a61cd664fccfd5e914dfc6f683f87ce22db4acf489e4c138c4cabd1630746bc19334b155a964985a06790aac40
|
7
|
+
data.tar.gz: be65ffd2c765fe24cdad72a8d19a1fc18e3cddc3e081675c0f0e3398765beab266342d43dfbfaed72665d930065dab5c8a81ebfd51a62d2c9e0226f6f2ffa8d1
|
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# alexa_for_business = Aws::AlexaForBusiness::Client.new
|
28
|
+
# resp = alexa_for_business.approve_skill(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Alexa For Business
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Alexa For Business are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::AlexaForBusiness::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Alexa For Business API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::AlexaForBusiness
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.36.0'
|
46
49
|
|
47
50
|
end
|
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:alexaforbusiness)
|
31
31
|
|
32
32
|
module Aws::AlexaForBusiness
|
33
|
+
# An API client for AlexaForBusiness. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::AlexaForBusiness::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -93,7 +105,7 @@ module Aws::AlexaForBusiness
|
|
93
105
|
# @option options [required, String] :region
|
94
106
|
# The AWS region to connect to. The configured `:region` is
|
95
107
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
97
109
|
#
|
98
110
|
# * `Aws.config[:region]`
|
99
111
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +120,12 @@ module Aws::AlexaForBusiness
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::AlexaForBusiness
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -139,7 +161,7 @@ module Aws::AlexaForBusiness
|
|
139
161
|
# @option options [String] :endpoint
|
140
162
|
# The client endpoint is normally constructed from the `:region`
|
141
163
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
143
165
|
#
|
144
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +176,7 @@ module Aws::AlexaForBusiness
|
|
154
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
177
|
#
|
156
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
180
|
#
|
159
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
182
|
# The log formatter.
|
@@ -166,15 +188,29 @@ module Aws::AlexaForBusiness
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,30 @@ module Aws::AlexaForBusiness
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
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
|
+
#
|
190
245
|
#
|
191
246
|
# @option options [String] :secret_access_key
|
192
247
|
#
|
@@ -219,16 +274,15 @@ module Aws::AlexaForBusiness
|
|
219
274
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
275
|
#
|
221
276
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
277
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
278
|
# `Timeout::Error`.
|
224
279
|
#
|
225
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
281
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
229
283
|
#
|
230
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
285
|
+
# seconds a connection is allowed to sit idle before it is
|
232
286
|
# considered stale. Stale connections are closed and removed
|
233
287
|
# from the pool before making a request.
|
234
288
|
#
|
@@ -237,7 +291,7 @@ module Aws::AlexaForBusiness
|
|
237
291
|
# request body. This option has no effect unless the request has
|
238
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
293
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
294
|
+
# request on the session.
|
241
295
|
#
|
242
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -528,7 +582,7 @@ module Aws::AlexaForBusiness
|
|
528
582
|
# s3_key_prefix: "S3KeyPrefix",
|
529
583
|
# format: "CSV", # required, accepts CSV, CSV_ZIP
|
530
584
|
# content_range: { # required
|
531
|
-
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK
|
585
|
+
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
532
586
|
# },
|
533
587
|
# recurrence: {
|
534
588
|
# start_date: "Date",
|
@@ -818,7 +872,8 @@ module Aws::AlexaForBusiness
|
|
818
872
|
# A wake word for Alexa, Echo, Amazon, or a computer.
|
819
873
|
#
|
820
874
|
# @option params [String] :locale
|
821
|
-
# The locale of the room profile.
|
875
|
+
# The locale of the room profile. (This is currently only available to a
|
876
|
+
# limited preview audience.)
|
822
877
|
#
|
823
878
|
# @option params [String] :client_request_token
|
824
879
|
# The user-specified token that is used during the creation of a
|
@@ -836,6 +891,9 @@ module Aws::AlexaForBusiness
|
|
836
891
|
# @option params [Boolean] :pstn_enabled
|
837
892
|
# Whether PSTN calling is enabled.
|
838
893
|
#
|
894
|
+
# @option params [Types::CreateMeetingRoomConfiguration] :meeting_room_configuration
|
895
|
+
# The meeting room settings of a room profile.
|
896
|
+
#
|
839
897
|
# @return [Types::CreateProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
840
898
|
#
|
841
899
|
# * {Types::CreateProfileResponse#profile_arn #profile_arn} => String
|
@@ -854,6 +912,22 @@ module Aws::AlexaForBusiness
|
|
854
912
|
# setup_mode_disabled: false,
|
855
913
|
# max_volume_limit: 1,
|
856
914
|
# pstn_enabled: false,
|
915
|
+
# meeting_room_configuration: {
|
916
|
+
# room_utilization_metrics_enabled: false,
|
917
|
+
# end_of_meeting_reminder: {
|
918
|
+
# reminder_at_minutes: [1], # required
|
919
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # required, accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
920
|
+
# enabled: false, # required
|
921
|
+
# },
|
922
|
+
# instant_booking: {
|
923
|
+
# duration_in_minutes: 1, # required
|
924
|
+
# enabled: false, # required
|
925
|
+
# },
|
926
|
+
# require_check_in: {
|
927
|
+
# release_after_minutes: 1, # required
|
928
|
+
# enabled: false, # required
|
929
|
+
# },
|
930
|
+
# },
|
857
931
|
# })
|
858
932
|
#
|
859
933
|
# @example Response structure
|
@@ -1660,6 +1734,7 @@ module Aws::AlexaForBusiness
|
|
1660
1734
|
# resp.device.device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
1661
1735
|
# resp.device.device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE", "CREDENTIALS_ACCESS_FAILURE", "TLS_VERSION_MISMATCH", "ASSOCIATION_REJECTION", "AUTHENTICATION_FAILURE", "DHCP_FAILURE", "INTERNET_UNAVAILABLE", "DNS_FAILURE", "UNKNOWN_FAILURE", "CERTIFICATE_ISSUING_LIMIT_EXCEEDED", "INVALID_CERTIFICATE_AUTHORITY", "NETWORK_PROFILE_NOT_FOUND", "INVALID_PASSWORD_STATE", "PASSWORD_NOT_FOUND"
|
1662
1736
|
# resp.device.device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
1737
|
+
# resp.device.device_status_info.connection_status_updated_time #=> Time
|
1663
1738
|
# resp.device.network_profile_info.network_profile_arn #=> String
|
1664
1739
|
# resp.device.network_profile_info.certificate_arn #=> String
|
1665
1740
|
# resp.device.network_profile_info.certificate_expiration_time #=> Time
|
@@ -1828,6 +1903,15 @@ module Aws::AlexaForBusiness
|
|
1828
1903
|
# resp.profile.max_volume_limit #=> Integer
|
1829
1904
|
# resp.profile.pstn_enabled #=> Boolean
|
1830
1905
|
# resp.profile.address_book_arn #=> String
|
1906
|
+
# resp.profile.meeting_room_configuration.room_utilization_metrics_enabled #=> Boolean
|
1907
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_at_minutes #=> Array
|
1908
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_at_minutes[0] #=> Integer
|
1909
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_type #=> String, one of "ANNOUNCEMENT_TIME_CHECK", "ANNOUNCEMENT_VARIABLE_TIME_LEFT", "CHIME", "KNOCK"
|
1910
|
+
# resp.profile.meeting_room_configuration.end_of_meeting_reminder.enabled #=> Boolean
|
1911
|
+
# resp.profile.meeting_room_configuration.instant_booking.duration_in_minutes #=> Integer
|
1912
|
+
# resp.profile.meeting_room_configuration.instant_booking.enabled #=> Boolean
|
1913
|
+
# resp.profile.meeting_room_configuration.require_check_in.release_after_minutes #=> Integer
|
1914
|
+
# resp.profile.meeting_room_configuration.require_check_in.enabled #=> Boolean
|
1831
1915
|
#
|
1832
1916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetProfile AWS API Documentation
|
1833
1917
|
#
|
@@ -1940,7 +2024,10 @@ module Aws::AlexaForBusiness
|
|
1940
2024
|
req.send_request(options)
|
1941
2025
|
end
|
1942
2026
|
|
1943
|
-
# Lists the details of the schedules that a user configured.
|
2027
|
+
# Lists the details of the schedules that a user configured. A download
|
2028
|
+
# URL of the report associated with each schedule is returned every time
|
2029
|
+
# this action is called. A new download URL is returned each time, and
|
2030
|
+
# is valid for 24 hours.
|
1944
2031
|
#
|
1945
2032
|
# @option params [String] :next_token
|
1946
2033
|
# The token used to list the remaining schedules from the previous API
|
@@ -1954,6 +2041,8 @@ module Aws::AlexaForBusiness
|
|
1954
2041
|
# * {Types::ListBusinessReportSchedulesResponse#business_report_schedules #business_report_schedules} => Array<Types::BusinessReportSchedule>
|
1955
2042
|
# * {Types::ListBusinessReportSchedulesResponse#next_token #next_token} => String
|
1956
2043
|
#
|
2044
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2045
|
+
#
|
1957
2046
|
# @example Request syntax with placeholder values
|
1958
2047
|
#
|
1959
2048
|
# resp = client.list_business_report_schedules({
|
@@ -1969,7 +2058,7 @@ module Aws::AlexaForBusiness
|
|
1969
2058
|
# resp.business_report_schedules[0].s3_bucket_name #=> String
|
1970
2059
|
# resp.business_report_schedules[0].s3_key_prefix #=> String
|
1971
2060
|
# resp.business_report_schedules[0].format #=> String, one of "CSV", "CSV_ZIP"
|
1972
|
-
# resp.business_report_schedules[0].content_range.interval #=> String, one of "ONE_DAY", "ONE_WEEK"
|
2061
|
+
# resp.business_report_schedules[0].content_range.interval #=> String, one of "ONE_DAY", "ONE_WEEK", "THIRTY_DAYS"
|
1973
2062
|
# resp.business_report_schedules[0].recurrence.start_date #=> String
|
1974
2063
|
# resp.business_report_schedules[0].last_business_report.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED"
|
1975
2064
|
# resp.business_report_schedules[0].last_business_report.failure_code #=> String, one of "ACCESS_DENIED", "NO_SUCH_BUCKET", "INTERNAL_FAILURE"
|
@@ -2002,6 +2091,8 @@ module Aws::AlexaForBusiness
|
|
2002
2091
|
# * {Types::ListConferenceProvidersResponse#conference_providers #conference_providers} => Array<Types::ConferenceProvider>
|
2003
2092
|
# * {Types::ListConferenceProvidersResponse#next_token #next_token} => String
|
2004
2093
|
#
|
2094
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2095
|
+
#
|
2005
2096
|
# @example Request syntax with placeholder values
|
2006
2097
|
#
|
2007
2098
|
# resp = client.list_conference_providers({
|
@@ -2063,6 +2154,8 @@ module Aws::AlexaForBusiness
|
|
2063
2154
|
# * {Types::ListDeviceEventsResponse#device_events #device_events} => Array<Types::DeviceEvent>
|
2064
2155
|
# * {Types::ListDeviceEventsResponse#next_token #next_token} => String
|
2065
2156
|
#
|
2157
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2158
|
+
#
|
2066
2159
|
# @example Request syntax with placeholder values
|
2067
2160
|
#
|
2068
2161
|
# resp = client.list_device_events({
|
@@ -2105,6 +2198,8 @@ module Aws::AlexaForBusiness
|
|
2105
2198
|
# * {Types::ListGatewayGroupsResponse#gateway_groups #gateway_groups} => Array<Types::GatewayGroupSummary>
|
2106
2199
|
# * {Types::ListGatewayGroupsResponse#next_token #next_token} => String
|
2107
2200
|
#
|
2201
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2202
|
+
#
|
2108
2203
|
# @example Request syntax with placeholder values
|
2109
2204
|
#
|
2110
2205
|
# resp = client.list_gateway_groups({
|
@@ -2148,6 +2243,8 @@ module Aws::AlexaForBusiness
|
|
2148
2243
|
# * {Types::ListGatewaysResponse#gateways #gateways} => Array<Types::GatewaySummary>
|
2149
2244
|
# * {Types::ListGatewaysResponse#next_token #next_token} => String
|
2150
2245
|
#
|
2246
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2247
|
+
#
|
2151
2248
|
# @example Request syntax with placeholder values
|
2152
2249
|
#
|
2153
2250
|
# resp = client.list_gateways({
|
@@ -2178,11 +2275,10 @@ module Aws::AlexaForBusiness
|
|
2178
2275
|
# Lists all enabled skills in a specific skill group.
|
2179
2276
|
#
|
2180
2277
|
# @option params [String] :skill_group_arn
|
2181
|
-
# The ARN of the skill group for which to list enabled skills.
|
2278
|
+
# The ARN of the skill group for which to list enabled skills.
|
2182
2279
|
#
|
2183
2280
|
# @option params [String] :enablement_type
|
2184
|
-
# Whether the skill is enabled under the user's account
|
2185
|
-
# requires linking to be used.
|
2281
|
+
# Whether the skill is enabled under the user's account.
|
2186
2282
|
#
|
2187
2283
|
# @option params [String] :skill_type
|
2188
2284
|
# Whether the skill is publicly available or is a private skill.
|
@@ -2191,19 +2287,21 @@ module Aws::AlexaForBusiness
|
|
2191
2287
|
# An optional token returned from a prior request. Use this token for
|
2192
2288
|
# pagination of results from this action. If this parameter is
|
2193
2289
|
# specified, the response includes only results beyond the token, up to
|
2194
|
-
# the value specified by `MaxResults`.
|
2290
|
+
# the value specified by `MaxResults`.
|
2195
2291
|
#
|
2196
2292
|
# @option params [Integer] :max_results
|
2197
2293
|
# The maximum number of results to include in the response. If more
|
2198
2294
|
# results exist than the specified `MaxResults` value, a token is
|
2199
2295
|
# included in the response so that the remaining results can be
|
2200
|
-
# retrieved.
|
2296
|
+
# retrieved.
|
2201
2297
|
#
|
2202
2298
|
# @return [Types::ListSkillsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2203
2299
|
#
|
2204
2300
|
# * {Types::ListSkillsResponse#skill_summaries #skill_summaries} => Array<Types::SkillSummary>
|
2205
2301
|
# * {Types::ListSkillsResponse#next_token #next_token} => String
|
2206
2302
|
#
|
2303
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2304
|
+
#
|
2207
2305
|
# @example Request syntax with placeholder values
|
2208
2306
|
#
|
2209
2307
|
# resp = client.list_skills({
|
@@ -2246,6 +2344,8 @@ module Aws::AlexaForBusiness
|
|
2246
2344
|
# * {Types::ListSkillsStoreCategoriesResponse#category_list #category_list} => Array<Types::Category>
|
2247
2345
|
# * {Types::ListSkillsStoreCategoriesResponse#next_token #next_token} => String
|
2248
2346
|
#
|
2347
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2348
|
+
#
|
2249
2349
|
# @example Request syntax with placeholder values
|
2250
2350
|
#
|
2251
2351
|
# resp = client.list_skills_store_categories({
|
@@ -2286,6 +2386,8 @@ module Aws::AlexaForBusiness
|
|
2286
2386
|
# * {Types::ListSkillsStoreSkillsByCategoryResponse#skills_store_skills #skills_store_skills} => Array<Types::SkillsStoreSkill>
|
2287
2387
|
# * {Types::ListSkillsStoreSkillsByCategoryResponse#next_token #next_token} => String
|
2288
2388
|
#
|
2389
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2390
|
+
#
|
2289
2391
|
# @example Request syntax with placeholder values
|
2290
2392
|
#
|
2291
2393
|
# resp = client.list_skills_store_skills_by_category({
|
@@ -2349,6 +2451,8 @@ module Aws::AlexaForBusiness
|
|
2349
2451
|
# * {Types::ListSmartHomeAppliancesResponse#smart_home_appliances #smart_home_appliances} => Array<Types::SmartHomeAppliance>
|
2350
2452
|
# * {Types::ListSmartHomeAppliancesResponse#next_token #next_token} => String
|
2351
2453
|
#
|
2454
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2455
|
+
#
|
2352
2456
|
# @example Request syntax with placeholder values
|
2353
2457
|
#
|
2354
2458
|
# resp = client.list_smart_home_appliances({
|
@@ -2396,6 +2500,8 @@ module Aws::AlexaForBusiness
|
|
2396
2500
|
# * {Types::ListTagsResponse#tags #tags} => Array<Types::Tag>
|
2397
2501
|
# * {Types::ListTagsResponse#next_token #next_token} => String
|
2398
2502
|
#
|
2503
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2504
|
+
#
|
2399
2505
|
# @example Request syntax with placeholder values
|
2400
2506
|
#
|
2401
2507
|
# resp = client.list_tags({
|
@@ -2720,6 +2826,8 @@ module Aws::AlexaForBusiness
|
|
2720
2826
|
# * {Types::SearchAddressBooksResponse#next_token #next_token} => String
|
2721
2827
|
# * {Types::SearchAddressBooksResponse#total_count #total_count} => Integer
|
2722
2828
|
#
|
2829
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2830
|
+
#
|
2723
2831
|
# @example Request syntax with placeholder values
|
2724
2832
|
#
|
2725
2833
|
# resp = client.search_address_books({
|
@@ -2786,6 +2894,8 @@ module Aws::AlexaForBusiness
|
|
2786
2894
|
# * {Types::SearchContactsResponse#next_token #next_token} => String
|
2787
2895
|
# * {Types::SearchContactsResponse#total_count #total_count} => Integer
|
2788
2896
|
#
|
2897
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2898
|
+
#
|
2789
2899
|
# @example Request syntax with placeholder values
|
2790
2900
|
#
|
2791
2901
|
# resp = client.search_contacts({
|
@@ -2865,6 +2975,8 @@ module Aws::AlexaForBusiness
|
|
2865
2975
|
# * {Types::SearchDevicesResponse#next_token #next_token} => String
|
2866
2976
|
# * {Types::SearchDevicesResponse#total_count #total_count} => Integer
|
2867
2977
|
#
|
2978
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2979
|
+
#
|
2868
2980
|
# @example Request syntax with placeholder values
|
2869
2981
|
#
|
2870
2982
|
# resp = client.search_devices({
|
@@ -2902,6 +3014,8 @@ module Aws::AlexaForBusiness
|
|
2902
3014
|
# resp.devices[0].device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
2903
3015
|
# resp.devices[0].device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE", "CREDENTIALS_ACCESS_FAILURE", "TLS_VERSION_MISMATCH", "ASSOCIATION_REJECTION", "AUTHENTICATION_FAILURE", "DHCP_FAILURE", "INTERNET_UNAVAILABLE", "DNS_FAILURE", "UNKNOWN_FAILURE", "CERTIFICATE_ISSUING_LIMIT_EXCEEDED", "INVALID_CERTIFICATE_AUTHORITY", "NETWORK_PROFILE_NOT_FOUND", "INVALID_PASSWORD_STATE", "PASSWORD_NOT_FOUND"
|
2904
3016
|
# resp.devices[0].device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
3017
|
+
# resp.devices[0].device_status_info.connection_status_updated_time #=> Time
|
3018
|
+
# resp.devices[0].created_time #=> Time
|
2905
3019
|
# resp.next_token #=> String
|
2906
3020
|
# resp.total_count #=> Integer
|
2907
3021
|
#
|
@@ -2943,6 +3057,8 @@ module Aws::AlexaForBusiness
|
|
2943
3057
|
# * {Types::SearchNetworkProfilesResponse#next_token #next_token} => String
|
2944
3058
|
# * {Types::SearchNetworkProfilesResponse#total_count #total_count} => Integer
|
2945
3059
|
#
|
3060
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3061
|
+
#
|
2946
3062
|
# @example Request syntax with placeholder values
|
2947
3063
|
#
|
2948
3064
|
# resp = client.search_network_profiles({
|
@@ -3013,6 +3129,8 @@ module Aws::AlexaForBusiness
|
|
3013
3129
|
# * {Types::SearchProfilesResponse#next_token #next_token} => String
|
3014
3130
|
# * {Types::SearchProfilesResponse#total_count #total_count} => Integer
|
3015
3131
|
#
|
3132
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3133
|
+
#
|
3016
3134
|
# @example Request syntax with placeholder values
|
3017
3135
|
#
|
3018
3136
|
# resp = client.search_profiles({
|
@@ -3085,6 +3203,8 @@ module Aws::AlexaForBusiness
|
|
3085
3203
|
# * {Types::SearchRoomsResponse#next_token #next_token} => String
|
3086
3204
|
# * {Types::SearchRoomsResponse#total_count #total_count} => Integer
|
3087
3205
|
#
|
3206
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3207
|
+
#
|
3088
3208
|
# @example Request syntax with placeholder values
|
3089
3209
|
#
|
3090
3210
|
# resp = client.search_rooms({
|
@@ -3154,6 +3274,8 @@ module Aws::AlexaForBusiness
|
|
3154
3274
|
# * {Types::SearchSkillGroupsResponse#next_token #next_token} => String
|
3155
3275
|
# * {Types::SearchSkillGroupsResponse#total_count #total_count} => Integer
|
3156
3276
|
#
|
3277
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3278
|
+
#
|
3157
3279
|
# @example Request syntax with placeholder values
|
3158
3280
|
#
|
3159
3281
|
# resp = client.search_skill_groups({
|
@@ -3222,6 +3344,8 @@ module Aws::AlexaForBusiness
|
|
3222
3344
|
# * {Types::SearchUsersResponse#next_token #next_token} => String
|
3223
3345
|
# * {Types::SearchUsersResponse#total_count #total_count} => Integer
|
3224
3346
|
#
|
3347
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3348
|
+
#
|
3225
3349
|
# @example Request syntax with placeholder values
|
3226
3350
|
#
|
3227
3351
|
# resp = client.search_users({
|
@@ -3845,7 +3969,8 @@ module Aws::AlexaForBusiness
|
|
3845
3969
|
# The updated wake word for the room profile.
|
3846
3970
|
#
|
3847
3971
|
# @option params [String] :locale
|
3848
|
-
# The updated locale for the room profile.
|
3972
|
+
# The updated locale for the room profile. (This is currently only
|
3973
|
+
# available to a limited preview audience.)
|
3849
3974
|
#
|
3850
3975
|
# @option params [Boolean] :setup_mode_disabled
|
3851
3976
|
# Whether the setup mode of the profile is enabled.
|
@@ -3856,6 +3981,9 @@ module Aws::AlexaForBusiness
|
|
3856
3981
|
# @option params [Boolean] :pstn_enabled
|
3857
3982
|
# Whether the PSTN setting of the room profile is enabled.
|
3858
3983
|
#
|
3984
|
+
# @option params [Types::UpdateMeetingRoomConfiguration] :meeting_room_configuration
|
3985
|
+
# The updated meeting room settings of a room profile.
|
3986
|
+
#
|
3859
3987
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3860
3988
|
#
|
3861
3989
|
# @example Request syntax with placeholder values
|
@@ -3873,6 +4001,22 @@ module Aws::AlexaForBusiness
|
|
3873
4001
|
# setup_mode_disabled: false,
|
3874
4002
|
# max_volume_limit: 1,
|
3875
4003
|
# pstn_enabled: false,
|
4004
|
+
# meeting_room_configuration: {
|
4005
|
+
# room_utilization_metrics_enabled: false,
|
4006
|
+
# end_of_meeting_reminder: {
|
4007
|
+
# reminder_at_minutes: [1],
|
4008
|
+
# reminder_type: "ANNOUNCEMENT_TIME_CHECK", # accepts ANNOUNCEMENT_TIME_CHECK, ANNOUNCEMENT_VARIABLE_TIME_LEFT, CHIME, KNOCK
|
4009
|
+
# enabled: false,
|
4010
|
+
# },
|
4011
|
+
# instant_booking: {
|
4012
|
+
# duration_in_minutes: 1,
|
4013
|
+
# enabled: false,
|
4014
|
+
# },
|
4015
|
+
# require_check_in: {
|
4016
|
+
# release_after_minutes: 1,
|
4017
|
+
# enabled: false,
|
4018
|
+
# },
|
4019
|
+
# },
|
3876
4020
|
# })
|
3877
4021
|
#
|
3878
4022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateProfile AWS API Documentation
|
@@ -3965,7 +4109,7 @@ module Aws::AlexaForBusiness
|
|
3965
4109
|
params: params,
|
3966
4110
|
config: config)
|
3967
4111
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
3968
|
-
context[:gem_version] = '1.
|
4112
|
+
context[:gem_version] = '1.36.0'
|
3969
4113
|
Seahorse::Client::Request.new(handlers, context)
|
3970
4114
|
end
|
3971
4115
|
|