aws-sdk-alexaforbusiness 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-alexaforbusiness.rb +1 -1
- data/lib/aws-sdk-alexaforbusiness/client.rb +803 -103
- data/lib/aws-sdk-alexaforbusiness/client_api.rb +568 -2
- data/lib/aws-sdk-alexaforbusiness/types.rb +1092 -25
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a12a2087aaf77c470333f69efa175257324d9638
|
4
|
+
data.tar.gz: 72420ec87604f45e4b35747cdab78aab0ffd1bea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3bcd3e193ac52bce5282568b65a024f8fcce00a977358b753e19b27da1bda2045113cd39dff748a8ba5dca72829813a7e23f3bac191dd280921cbcd5bf9a33a
|
7
|
+
data.tar.gz: a4b8065b665f851d536fd61af09eb4c5d4ae7aeb11549e7ca1dd8498b1ef8bae59ed87032a7c25aa5ccf083e68995aa45424b465e5e1cf76cc19ebc9044829ac
|
@@ -54,131 +54,133 @@ module Aws::AlexaForBusiness
|
|
54
54
|
add_plugin(Aws::Plugins::SignatureV4)
|
55
55
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
56
56
|
|
57
|
-
# @
|
58
|
-
#
|
59
|
-
#
|
57
|
+
# @overload initialize(options)
|
58
|
+
# @param [Hash] options
|
59
|
+
# @option options [required, Aws::CredentialProvider] :credentials
|
60
|
+
# Your AWS credentials. This can be an instance of any one of the
|
61
|
+
# following classes:
|
60
62
|
#
|
61
|
-
#
|
62
|
-
#
|
63
|
+
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
64
|
+
# credentials.
|
63
65
|
#
|
64
|
-
#
|
65
|
-
#
|
66
|
+
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
67
|
+
# from an EC2 IMDS on an EC2 instance.
|
66
68
|
#
|
67
|
-
#
|
68
|
-
#
|
69
|
+
# * `Aws::SharedCredentials` - Used for loading credentials from a
|
70
|
+
# shared file, such as `~/.aws/config`.
|
69
71
|
#
|
70
|
-
#
|
72
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
71
73
|
#
|
72
|
-
#
|
73
|
-
#
|
74
|
+
# When `:credentials` are not configured directly, the following
|
75
|
+
# locations will be searched for credentials:
|
76
|
+
#
|
77
|
+
# * `Aws.config[:credentials]`
|
78
|
+
# * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
|
79
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
80
|
+
# * `~/.aws/credentials`
|
81
|
+
# * `~/.aws/config`
|
82
|
+
# * EC2 IMDS instance profile - When used by default, the timeouts are
|
83
|
+
# very aggressive. Construct and pass an instance of
|
84
|
+
# `Aws::InstanceProfileCredentails` to enable retries and extended
|
85
|
+
# timeouts.
|
74
86
|
#
|
75
|
-
#
|
76
|
-
#
|
77
|
-
#
|
78
|
-
#
|
79
|
-
# * `~/.aws/config`
|
80
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts are
|
81
|
-
# very aggressive. Construct and pass an instance of
|
82
|
-
# `Aws::InstanceProfileCredentails` to enable retries and extended
|
83
|
-
# timeouts.
|
87
|
+
# @option options [required, String] :region
|
88
|
+
# The AWS region to connect to. The configured `:region` is
|
89
|
+
# used to determine the service `:endpoint`. When not passed,
|
90
|
+
# a default `:region` is search for in the following locations:
|
84
91
|
#
|
85
|
-
#
|
86
|
-
#
|
87
|
-
#
|
88
|
-
#
|
92
|
+
# * `Aws.config[:region]`
|
93
|
+
# * `ENV['AWS_REGION']`
|
94
|
+
# * `ENV['AMAZON_REGION']`
|
95
|
+
# * `ENV['AWS_DEFAULT_REGION']`
|
96
|
+
# * `~/.aws/credentials`
|
97
|
+
# * `~/.aws/config`
|
89
98
|
#
|
90
|
-
#
|
91
|
-
# * `ENV['AWS_REGION']`
|
92
|
-
# * `ENV['AMAZON_REGION']`
|
93
|
-
# * `ENV['AWS_DEFAULT_REGION']`
|
94
|
-
# * `~/.aws/credentials`
|
95
|
-
# * `~/.aws/config`
|
99
|
+
# @option options [String] :access_key_id
|
96
100
|
#
|
97
|
-
#
|
101
|
+
# @option options [Boolean] :client_side_monitoring (false)
|
102
|
+
# When `true`, client-side metrics will be collected for all API requests from
|
103
|
+
# this client.
|
98
104
|
#
|
99
|
-
#
|
100
|
-
#
|
101
|
-
#
|
105
|
+
# @option options [String] :client_side_monitoring_client_id ("")
|
106
|
+
# Allows you to provide an identifier for this client which will be attached to
|
107
|
+
# all generated client side metrics. Defaults to an empty string.
|
102
108
|
#
|
103
|
-
#
|
104
|
-
#
|
105
|
-
#
|
109
|
+
# @option options [Integer] :client_side_monitoring_port (31000)
|
110
|
+
# Required for publishing client metrics. The port that the client side monitoring
|
111
|
+
# agent is running on, where client metrics will be published via UDP.
|
106
112
|
#
|
107
|
-
#
|
108
|
-
#
|
109
|
-
#
|
113
|
+
# @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
|
114
|
+
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
115
|
+
# will use the Client Side Monitoring Agent Publisher.
|
110
116
|
#
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
117
|
+
# @option options [Boolean] :convert_params (true)
|
118
|
+
# When `true`, an attempt is made to coerce request parameters into
|
119
|
+
# the required types.
|
114
120
|
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
#
|
121
|
+
# @option options [String] :endpoint
|
122
|
+
# The client endpoint is normally constructed from the `:region`
|
123
|
+
# option. You should only configure an `:endpoint` when connecting
|
124
|
+
# to test endpoints. This should be avalid HTTP(S) URI.
|
118
125
|
#
|
119
|
-
#
|
120
|
-
#
|
121
|
-
# option. You should only configure an `:endpoint` when connecting
|
122
|
-
# to test endpoints. This should be avalid HTTP(S) URI.
|
126
|
+
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
127
|
+
# The log formatter.
|
123
128
|
#
|
124
|
-
#
|
125
|
-
#
|
129
|
+
# @option options [Symbol] :log_level (:info)
|
130
|
+
# The log level to send messages to the `:logger` at.
|
126
131
|
#
|
127
|
-
#
|
128
|
-
#
|
132
|
+
# @option options [Logger] :logger
|
133
|
+
# The Logger instance to send log messages to. If this option
|
134
|
+
# is not set, logging will be disabled.
|
129
135
|
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
136
|
+
# @option options [String] :profile ("default")
|
137
|
+
# Used when loading credentials from the shared credentials file
|
138
|
+
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
133
139
|
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
140
|
+
# @option options [Float] :retry_base_delay (0.3)
|
141
|
+
# The base delay in seconds used by the default backoff function.
|
137
142
|
#
|
138
|
-
#
|
139
|
-
#
|
143
|
+
# @option options [Symbol] :retry_jitter (:none)
|
144
|
+
# A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
|
140
145
|
#
|
141
|
-
#
|
142
|
-
# A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
|
146
|
+
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
143
147
|
#
|
144
|
-
# @
|
148
|
+
# @option options [Integer] :retry_limit (3)
|
149
|
+
# The maximum number of times to retry failed requests. Only
|
150
|
+
# ~ 500 level server errors and certain ~ 400 level client errors
|
151
|
+
# are retried. Generally, these are throttling errors, data
|
152
|
+
# checksum errors, networking errors, timeout errors and auth
|
153
|
+
# errors from expired credentials.
|
145
154
|
#
|
146
|
-
#
|
147
|
-
#
|
148
|
-
# ~ 500 level server errors and certain ~ 400 level client errors
|
149
|
-
# are retried. Generally, these are throttling errors, data
|
150
|
-
# checksum errors, networking errors, timeout errors and auth
|
151
|
-
# errors from expired credentials.
|
155
|
+
# @option options [Integer] :retry_max_delay (0)
|
156
|
+
# The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
|
152
157
|
#
|
153
|
-
#
|
154
|
-
# The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
|
158
|
+
# @option options [String] :secret_access_key
|
155
159
|
#
|
156
|
-
#
|
160
|
+
# @option options [String] :session_token
|
157
161
|
#
|
158
|
-
#
|
162
|
+
# @option options [Boolean] :simple_json (false)
|
163
|
+
# Disables request parameter conversion, validation, and formatting.
|
164
|
+
# Also disable response data type conversions. This option is useful
|
165
|
+
# when you want to ensure the highest level of performance by
|
166
|
+
# avoiding overhead of walking request parameters and response data
|
167
|
+
# structures.
|
159
168
|
#
|
160
|
-
#
|
161
|
-
#
|
162
|
-
# Also disable response data type conversions. This option is useful
|
163
|
-
# when you want to ensure the highest level of performance by
|
164
|
-
# avoiding overhead of walking request parameters and response data
|
165
|
-
# structures.
|
169
|
+
# When `:simple_json` is enabled, the request parameters hash must
|
170
|
+
# be formatted exactly as the DynamoDB API expects.
|
166
171
|
#
|
167
|
-
#
|
168
|
-
#
|
172
|
+
# @option options [Boolean] :stub_responses (false)
|
173
|
+
# Causes the client to return stubbed responses. By default
|
174
|
+
# fake responses are generated and returned. You can specify
|
175
|
+
# the response data to return or errors to raise by calling
|
176
|
+
# {ClientStubs#stub_responses}. See {ClientStubs} for more information.
|
177
|
+
#
|
178
|
+
# ** Please note ** When response stubbing is enabled, no HTTP
|
179
|
+
# requests are made, and retries are disabled.
|
169
180
|
#
|
170
|
-
#
|
171
|
-
#
|
172
|
-
#
|
173
|
-
# the response data to return or errors to raise by calling
|
174
|
-
# {ClientStubs#stub_responses}. See {ClientStubs} for more information.
|
175
|
-
#
|
176
|
-
# ** Please note ** When response stubbing is enabled, no HTTP
|
177
|
-
# requests are made, and retries are disabled.
|
178
|
-
#
|
179
|
-
# @option options [Boolean] :validate_params (true)
|
180
|
-
# When `true`, request parameters are validated before
|
181
|
-
# sending the request.
|
181
|
+
# @option options [Boolean] :validate_params (true)
|
182
|
+
# When `true`, request parameters are validated before
|
183
|
+
# sending the request.
|
182
184
|
#
|
183
185
|
def initialize(*args)
|
184
186
|
super
|
@@ -186,6 +188,30 @@ module Aws::AlexaForBusiness
|
|
186
188
|
|
187
189
|
# @!group API Operations
|
188
190
|
|
191
|
+
# Associates a skill with the organization under the customer's AWS
|
192
|
+
# account. If a skill is private, the user implicitly accepts access to
|
193
|
+
# this skill during enablement.
|
194
|
+
#
|
195
|
+
# @option params [required, String] :skill_id
|
196
|
+
# The unique identifier of the skill.
|
197
|
+
#
|
198
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
199
|
+
#
|
200
|
+
# @example Request syntax with placeholder values
|
201
|
+
#
|
202
|
+
# resp = client.approve_skill({
|
203
|
+
# skill_id: "SkillId", # required
|
204
|
+
# })
|
205
|
+
#
|
206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ApproveSkill AWS API Documentation
|
207
|
+
#
|
208
|
+
# @overload approve_skill(params = {})
|
209
|
+
# @param [Hash] params ({})
|
210
|
+
def approve_skill(params = {}, options = {})
|
211
|
+
req = build_request(:approve_skill, params)
|
212
|
+
req.send_request(options)
|
213
|
+
end
|
214
|
+
|
189
215
|
# Associates a contact with a given address book.
|
190
216
|
#
|
191
217
|
# @option params [required, String] :contact_arn
|
@@ -268,6 +294,32 @@ module Aws::AlexaForBusiness
|
|
268
294
|
req.send_request(options)
|
269
295
|
end
|
270
296
|
|
297
|
+
# Associates a skill with a skill group.
|
298
|
+
#
|
299
|
+
# @option params [String] :skill_group_arn
|
300
|
+
# The ARN of the skill group to associate the skill to.
|
301
|
+
#
|
302
|
+
# @option params [required, String] :skill_id
|
303
|
+
# The unique identifier of the skill.
|
304
|
+
#
|
305
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
306
|
+
#
|
307
|
+
# @example Request syntax with placeholder values
|
308
|
+
#
|
309
|
+
# resp = client.associate_skill_with_skill_group({
|
310
|
+
# skill_group_arn: "Arn",
|
311
|
+
# skill_id: "SkillId", # required
|
312
|
+
# })
|
313
|
+
#
|
314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/AssociateSkillWithSkillGroup AWS API Documentation
|
315
|
+
#
|
316
|
+
# @overload associate_skill_with_skill_group(params = {})
|
317
|
+
# @param [Hash] params ({})
|
318
|
+
def associate_skill_with_skill_group(params = {}, options = {})
|
319
|
+
req = build_request(:associate_skill_with_skill_group, params)
|
320
|
+
req.send_request(options)
|
321
|
+
end
|
322
|
+
|
271
323
|
# Creates an address book with the specified details.
|
272
324
|
#
|
273
325
|
# @option params [required, String] :name
|
@@ -308,6 +360,67 @@ module Aws::AlexaForBusiness
|
|
308
360
|
req.send_request(options)
|
309
361
|
end
|
310
362
|
|
363
|
+
# Adds a new conference provider under the user's AWS account.
|
364
|
+
#
|
365
|
+
# @option params [required, String] :conference_provider_name
|
366
|
+
# The name of the conference provider.
|
367
|
+
#
|
368
|
+
# @option params [required, String] :conference_provider_type
|
369
|
+
# A string that represents a type within a list of predefined types.
|
370
|
+
#
|
371
|
+
# @option params [Types::IPDialIn] :ip_dial_in
|
372
|
+
# The IP endpoint and protocol for calling.
|
373
|
+
#
|
374
|
+
# @option params [Types::PSTNDialIn] :pstn_dial_in
|
375
|
+
# The information for PSTN conferencing.
|
376
|
+
#
|
377
|
+
# @option params [required, Types::MeetingSetting] :meeting_setting
|
378
|
+
# The meeting settings for the conference provider.
|
379
|
+
#
|
380
|
+
# @option params [String] :client_request_token
|
381
|
+
# The request token of the client.
|
382
|
+
#
|
383
|
+
# **A suitable default value is auto-generated.** You should normally
|
384
|
+
# not need to pass this option.**
|
385
|
+
#
|
386
|
+
# @return [Types::CreateConferenceProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
387
|
+
#
|
388
|
+
# * {Types::CreateConferenceProviderResponse#conference_provider_arn #conference_provider_arn} => String
|
389
|
+
#
|
390
|
+
# @example Request syntax with placeholder values
|
391
|
+
#
|
392
|
+
# resp = client.create_conference_provider({
|
393
|
+
# conference_provider_name: "ConferenceProviderName", # required
|
394
|
+
# conference_provider_type: "CHIME", # required, accepts CHIME, BLUEJEANS, FUZE, GOOGLE_HANGOUTS, POLYCOM, RINGCENTRAL, SKYPE_FOR_BUSINESS, WEBEX, ZOOM, CUSTOM
|
395
|
+
# ip_dial_in: {
|
396
|
+
# endpoint: "Endpoint", # required
|
397
|
+
# comms_protocol: "SIP", # required, accepts SIP, SIPS, H323
|
398
|
+
# },
|
399
|
+
# pstn_dial_in: {
|
400
|
+
# country_code: "CountryCode", # required
|
401
|
+
# phone_number: "PhoneNumber", # required
|
402
|
+
# one_click_id_delay: "OneClickIdDelay", # required
|
403
|
+
# one_click_pin_delay: "OneClickPinDelay", # required
|
404
|
+
# },
|
405
|
+
# meeting_setting: { # required
|
406
|
+
# require_pin: "YES", # required, accepts YES, NO, OPTIONAL
|
407
|
+
# },
|
408
|
+
# client_request_token: "ClientRequestToken",
|
409
|
+
# })
|
410
|
+
#
|
411
|
+
# @example Response structure
|
412
|
+
#
|
413
|
+
# resp.conference_provider_arn #=> String
|
414
|
+
#
|
415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateConferenceProvider AWS API Documentation
|
416
|
+
#
|
417
|
+
# @overload create_conference_provider(params = {})
|
418
|
+
# @param [Hash] params ({})
|
419
|
+
def create_conference_provider(params = {}, options = {})
|
420
|
+
req = build_request(:create_conference_provider, params)
|
421
|
+
req.send_request(options)
|
422
|
+
end
|
423
|
+
|
311
424
|
# Creates a contact with the specified details.
|
312
425
|
#
|
313
426
|
# @option params [String] :display_name
|
@@ -464,8 +577,8 @@ module Aws::AlexaForBusiness
|
|
464
577
|
# client_request_token: "ClientRequestToken",
|
465
578
|
# tags: [
|
466
579
|
# {
|
467
|
-
# key: "TagKey",
|
468
|
-
# value: "TagValue",
|
580
|
+
# key: "TagKey", # required
|
581
|
+
# value: "TagValue", # required
|
469
582
|
# },
|
470
583
|
# ],
|
471
584
|
# })
|
@@ -561,8 +674,8 @@ module Aws::AlexaForBusiness
|
|
561
674
|
# client_request_token: "ClientRequestToken",
|
562
675
|
# tags: [
|
563
676
|
# {
|
564
|
-
# key: "TagKey",
|
565
|
-
# value: "TagValue",
|
677
|
+
# key: "TagKey", # required
|
678
|
+
# value: "TagValue", # required
|
566
679
|
# },
|
567
680
|
# ],
|
568
681
|
# })
|
@@ -602,6 +715,28 @@ module Aws::AlexaForBusiness
|
|
602
715
|
req.send_request(options)
|
603
716
|
end
|
604
717
|
|
718
|
+
# Deletes a conference provider.
|
719
|
+
#
|
720
|
+
# @option params [required, String] :conference_provider_arn
|
721
|
+
# The ARN of the conference provider.
|
722
|
+
#
|
723
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
724
|
+
#
|
725
|
+
# @example Request syntax with placeholder values
|
726
|
+
#
|
727
|
+
# resp = client.delete_conference_provider({
|
728
|
+
# conference_provider_arn: "Arn", # required
|
729
|
+
# })
|
730
|
+
#
|
731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteConferenceProvider AWS API Documentation
|
732
|
+
#
|
733
|
+
# @overload delete_conference_provider(params = {})
|
734
|
+
# @param [Hash] params ({})
|
735
|
+
def delete_conference_provider(params = {}, options = {})
|
736
|
+
req = build_request(:delete_conference_provider, params)
|
737
|
+
req.send_request(options)
|
738
|
+
end
|
739
|
+
|
605
740
|
# Deletes a contact by the contact ARN.
|
606
741
|
#
|
607
742
|
# @option params [required, String] :contact_arn
|
@@ -624,6 +759,28 @@ module Aws::AlexaForBusiness
|
|
624
759
|
req.send_request(options)
|
625
760
|
end
|
626
761
|
|
762
|
+
# Removes a device from Alexa For Business.
|
763
|
+
#
|
764
|
+
# @option params [required, String] :device_arn
|
765
|
+
# The ARN of the device for which to request details.
|
766
|
+
#
|
767
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
768
|
+
#
|
769
|
+
# @example Request syntax with placeholder values
|
770
|
+
#
|
771
|
+
# resp = client.delete_device({
|
772
|
+
# device_arn: "Arn", # required
|
773
|
+
# })
|
774
|
+
#
|
775
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteDevice AWS API Documentation
|
776
|
+
#
|
777
|
+
# @overload delete_device(params = {})
|
778
|
+
# @param [Hash] params ({})
|
779
|
+
def delete_device(params = {}, options = {})
|
780
|
+
req = build_request(:delete_device, params)
|
781
|
+
req.send_request(options)
|
782
|
+
end
|
783
|
+
|
627
784
|
# Deletes a room profile by the profile ARN.
|
628
785
|
#
|
629
786
|
# @option params [String] :profile_arn
|
@@ -701,6 +858,32 @@ module Aws::AlexaForBusiness
|
|
701
858
|
req.send_request(options)
|
702
859
|
end
|
703
860
|
|
861
|
+
# Unlinks a third-party account from a skill.
|
862
|
+
#
|
863
|
+
# @option params [required, String] :skill_id
|
864
|
+
# The unique identifier of a skill.
|
865
|
+
#
|
866
|
+
# @option params [String] :room_arn
|
867
|
+
# The room that the skill is authorized for.
|
868
|
+
#
|
869
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
870
|
+
#
|
871
|
+
# @example Request syntax with placeholder values
|
872
|
+
#
|
873
|
+
# resp = client.delete_skill_authorization({
|
874
|
+
# skill_id: "SkillId", # required
|
875
|
+
# room_arn: "Arn",
|
876
|
+
# })
|
877
|
+
#
|
878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteSkillAuthorization AWS API Documentation
|
879
|
+
#
|
880
|
+
# @overload delete_skill_authorization(params = {})
|
881
|
+
# @param [Hash] params ({})
|
882
|
+
def delete_skill_authorization(params = {}, options = {})
|
883
|
+
req = build_request(:delete_skill_authorization, params)
|
884
|
+
req.send_request(options)
|
885
|
+
end
|
886
|
+
|
704
887
|
# Deletes a skill group by skill group ARN.
|
705
888
|
#
|
706
889
|
# @option params [String] :skill_group_arn
|
@@ -799,6 +982,32 @@ module Aws::AlexaForBusiness
|
|
799
982
|
req.send_request(options)
|
800
983
|
end
|
801
984
|
|
985
|
+
# Disassociates a skill from a skill group.
|
986
|
+
#
|
987
|
+
# @option params [String] :skill_group_arn
|
988
|
+
# The unique identifier of a skill.
|
989
|
+
#
|
990
|
+
# @option params [required, String] :skill_id
|
991
|
+
# The ARN of a skill group to associate to a skill.
|
992
|
+
#
|
993
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
994
|
+
#
|
995
|
+
# @example Request syntax with placeholder values
|
996
|
+
#
|
997
|
+
# resp = client.disassociate_skill_from_skill_group({
|
998
|
+
# skill_group_arn: "Arn",
|
999
|
+
# skill_id: "SkillId", # required
|
1000
|
+
# })
|
1001
|
+
#
|
1002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DisassociateSkillFromSkillGroup AWS API Documentation
|
1003
|
+
#
|
1004
|
+
# @overload disassociate_skill_from_skill_group(params = {})
|
1005
|
+
# @param [Hash] params ({})
|
1006
|
+
def disassociate_skill_from_skill_group(params = {}, options = {})
|
1007
|
+
req = build_request(:disassociate_skill_from_skill_group, params)
|
1008
|
+
req.send_request(options)
|
1009
|
+
end
|
1010
|
+
|
802
1011
|
# Disassociates a skill group from a specified room. This disables all
|
803
1012
|
# skills in the skill group on all devices in the room.
|
804
1013
|
#
|
@@ -827,6 +1036,28 @@ module Aws::AlexaForBusiness
|
|
827
1036
|
req.send_request(options)
|
828
1037
|
end
|
829
1038
|
|
1039
|
+
# Forgets smart home appliances associated to a room.
|
1040
|
+
#
|
1041
|
+
# @option params [required, String] :room_arn
|
1042
|
+
# The room that the appliances are associated with.
|
1043
|
+
#
|
1044
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1045
|
+
#
|
1046
|
+
# @example Request syntax with placeholder values
|
1047
|
+
#
|
1048
|
+
# resp = client.forget_smart_home_appliances({
|
1049
|
+
# room_arn: "Arn", # required
|
1050
|
+
# })
|
1051
|
+
#
|
1052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ForgetSmartHomeAppliances AWS API Documentation
|
1053
|
+
#
|
1054
|
+
# @overload forget_smart_home_appliances(params = {})
|
1055
|
+
# @param [Hash] params ({})
|
1056
|
+
def forget_smart_home_appliances(params = {}, options = {})
|
1057
|
+
req = build_request(:forget_smart_home_appliances, params)
|
1058
|
+
req.send_request(options)
|
1059
|
+
end
|
1060
|
+
|
830
1061
|
# Gets address the book details by the address book ARN.
|
831
1062
|
#
|
832
1063
|
# @option params [required, String] :address_book_arn
|
@@ -857,6 +1088,62 @@ module Aws::AlexaForBusiness
|
|
857
1088
|
req.send_request(options)
|
858
1089
|
end
|
859
1090
|
|
1091
|
+
# Retrieves the existing conference preferences.
|
1092
|
+
#
|
1093
|
+
# @return [Types::GetConferencePreferenceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1094
|
+
#
|
1095
|
+
# * {Types::GetConferencePreferenceResponse#preference #preference} => Types::ConferencePreference
|
1096
|
+
#
|
1097
|
+
# @example Response structure
|
1098
|
+
#
|
1099
|
+
# resp.preference.default_conference_provider_arn #=> String
|
1100
|
+
#
|
1101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetConferencePreference AWS API Documentation
|
1102
|
+
#
|
1103
|
+
# @overload get_conference_preference(params = {})
|
1104
|
+
# @param [Hash] params ({})
|
1105
|
+
def get_conference_preference(params = {}, options = {})
|
1106
|
+
req = build_request(:get_conference_preference, params)
|
1107
|
+
req.send_request(options)
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
# Gets details about a specific conference provider.
|
1111
|
+
#
|
1112
|
+
# @option params [required, String] :conference_provider_arn
|
1113
|
+
# The ARN of the newly created conference provider.
|
1114
|
+
#
|
1115
|
+
# @return [Types::GetConferenceProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1116
|
+
#
|
1117
|
+
# * {Types::GetConferenceProviderResponse#conference_provider #conference_provider} => Types::ConferenceProvider
|
1118
|
+
#
|
1119
|
+
# @example Request syntax with placeholder values
|
1120
|
+
#
|
1121
|
+
# resp = client.get_conference_provider({
|
1122
|
+
# conference_provider_arn: "Arn", # required
|
1123
|
+
# })
|
1124
|
+
#
|
1125
|
+
# @example Response structure
|
1126
|
+
#
|
1127
|
+
# resp.conference_provider.arn #=> String
|
1128
|
+
# resp.conference_provider.name #=> String
|
1129
|
+
# resp.conference_provider.type #=> String, one of "CHIME", "BLUEJEANS", "FUZE", "GOOGLE_HANGOUTS", "POLYCOM", "RINGCENTRAL", "SKYPE_FOR_BUSINESS", "WEBEX", "ZOOM", "CUSTOM"
|
1130
|
+
# resp.conference_provider.ip_dial_in.endpoint #=> String
|
1131
|
+
# resp.conference_provider.ip_dial_in.comms_protocol #=> String, one of "SIP", "SIPS", "H323"
|
1132
|
+
# resp.conference_provider.pstn_dial_in.country_code #=> String
|
1133
|
+
# resp.conference_provider.pstn_dial_in.phone_number #=> String
|
1134
|
+
# resp.conference_provider.pstn_dial_in.one_click_id_delay #=> String
|
1135
|
+
# resp.conference_provider.pstn_dial_in.one_click_pin_delay #=> String
|
1136
|
+
# resp.conference_provider.meeting_setting.require_pin #=> String, one of "YES", "NO", "OPTIONAL"
|
1137
|
+
#
|
1138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetConferenceProvider AWS API Documentation
|
1139
|
+
#
|
1140
|
+
# @overload get_conference_provider(params = {})
|
1141
|
+
# @param [Hash] params ({})
|
1142
|
+
def get_conference_provider(params = {}, options = {})
|
1143
|
+
req = build_request(:get_conference_provider, params)
|
1144
|
+
req.send_request(options)
|
1145
|
+
end
|
1146
|
+
|
860
1147
|
# Gets the contact details by the contact ARN.
|
861
1148
|
#
|
862
1149
|
# @option params [required, String] :contact_arn
|
@@ -946,6 +1233,7 @@ module Aws::AlexaForBusiness
|
|
946
1233
|
#
|
947
1234
|
# resp.profile.profile_arn #=> String
|
948
1235
|
# resp.profile.profile_name #=> String
|
1236
|
+
# resp.profile.is_default #=> Boolean
|
949
1237
|
# resp.profile.address #=> String
|
950
1238
|
# resp.profile.timezone #=> String
|
951
1239
|
# resp.profile.distance_unit #=> String, one of "METRIC", "IMPERIAL"
|
@@ -954,6 +1242,7 @@ module Aws::AlexaForBusiness
|
|
954
1242
|
# resp.profile.setup_mode_disabled #=> Boolean
|
955
1243
|
# resp.profile.max_volume_limit #=> Integer
|
956
1244
|
# resp.profile.pstn_enabled #=> Boolean
|
1245
|
+
# resp.profile.address_book_arn #=> String
|
957
1246
|
#
|
958
1247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetProfile AWS API Documentation
|
959
1248
|
#
|
@@ -1066,6 +1355,51 @@ module Aws::AlexaForBusiness
|
|
1066
1355
|
req.send_request(options)
|
1067
1356
|
end
|
1068
1357
|
|
1358
|
+
# Lists conference providers under a specific AWS account.
|
1359
|
+
#
|
1360
|
+
# @option params [String] :next_token
|
1361
|
+
# The tokens used for pagination.
|
1362
|
+
#
|
1363
|
+
# @option params [Integer] :max_results
|
1364
|
+
# The maximum number of conference providers to be return per paginated
|
1365
|
+
# calls.
|
1366
|
+
#
|
1367
|
+
# @return [Types::ListConferenceProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1368
|
+
#
|
1369
|
+
# * {Types::ListConferenceProvidersResponse#conference_providers #conference_providers} => Array<Types::ConferenceProvider>
|
1370
|
+
# * {Types::ListConferenceProvidersResponse#next_token #next_token} => String
|
1371
|
+
#
|
1372
|
+
# @example Request syntax with placeholder values
|
1373
|
+
#
|
1374
|
+
# resp = client.list_conference_providers({
|
1375
|
+
# next_token: "NextToken",
|
1376
|
+
# max_results: 1,
|
1377
|
+
# })
|
1378
|
+
#
|
1379
|
+
# @example Response structure
|
1380
|
+
#
|
1381
|
+
# resp.conference_providers #=> Array
|
1382
|
+
# resp.conference_providers[0].arn #=> String
|
1383
|
+
# resp.conference_providers[0].name #=> String
|
1384
|
+
# resp.conference_providers[0].type #=> String, one of "CHIME", "BLUEJEANS", "FUZE", "GOOGLE_HANGOUTS", "POLYCOM", "RINGCENTRAL", "SKYPE_FOR_BUSINESS", "WEBEX", "ZOOM", "CUSTOM"
|
1385
|
+
# resp.conference_providers[0].ip_dial_in.endpoint #=> String
|
1386
|
+
# resp.conference_providers[0].ip_dial_in.comms_protocol #=> String, one of "SIP", "SIPS", "H323"
|
1387
|
+
# resp.conference_providers[0].pstn_dial_in.country_code #=> String
|
1388
|
+
# resp.conference_providers[0].pstn_dial_in.phone_number #=> String
|
1389
|
+
# resp.conference_providers[0].pstn_dial_in.one_click_id_delay #=> String
|
1390
|
+
# resp.conference_providers[0].pstn_dial_in.one_click_pin_delay #=> String
|
1391
|
+
# resp.conference_providers[0].meeting_setting.require_pin #=> String, one of "YES", "NO", "OPTIONAL"
|
1392
|
+
# resp.next_token #=> String
|
1393
|
+
#
|
1394
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListConferenceProviders AWS API Documentation
|
1395
|
+
#
|
1396
|
+
# @overload list_conference_providers(params = {})
|
1397
|
+
# @param [Hash] params ({})
|
1398
|
+
def list_conference_providers(params = {}, options = {})
|
1399
|
+
req = build_request(:list_conference_providers, params)
|
1400
|
+
req.send_request(options)
|
1401
|
+
end
|
1402
|
+
|
1069
1403
|
# Lists the device event history, including device connection status,
|
1070
1404
|
# for up to 30 days.
|
1071
1405
|
#
|
@@ -1127,6 +1461,13 @@ module Aws::AlexaForBusiness
|
|
1127
1461
|
# @option params [String] :skill_group_arn
|
1128
1462
|
# The ARN of the skill group for which to list enabled skills. Required.
|
1129
1463
|
#
|
1464
|
+
# @option params [String] :enablement_type
|
1465
|
+
# Whether the skill is enabled under the user's account, or if it
|
1466
|
+
# requires linking to be used.
|
1467
|
+
#
|
1468
|
+
# @option params [String] :skill_type
|
1469
|
+
# Whether the skill is publicly available or is a private skill.
|
1470
|
+
#
|
1130
1471
|
# @option params [String] :next_token
|
1131
1472
|
# An optional token returned from a prior request. Use this token for
|
1132
1473
|
# pagination of results from this action. If this parameter is
|
@@ -1148,6 +1489,8 @@ module Aws::AlexaForBusiness
|
|
1148
1489
|
#
|
1149
1490
|
# resp = client.list_skills({
|
1150
1491
|
# skill_group_arn: "Arn",
|
1492
|
+
# enablement_type: "ENABLED", # accepts ENABLED, PENDING
|
1493
|
+
# skill_type: "PUBLIC", # accepts PUBLIC, PRIVATE, ALL
|
1151
1494
|
# next_token: "NextToken",
|
1152
1495
|
# max_results: 1,
|
1153
1496
|
# })
|
@@ -1158,6 +1501,8 @@ module Aws::AlexaForBusiness
|
|
1158
1501
|
# resp.skill_summaries[0].skill_id #=> String
|
1159
1502
|
# resp.skill_summaries[0].skill_name #=> String
|
1160
1503
|
# resp.skill_summaries[0].supports_linking #=> Boolean
|
1504
|
+
# resp.skill_summaries[0].enablement_type #=> String, one of "ENABLED", "PENDING"
|
1505
|
+
# resp.skill_summaries[0].skill_type #=> String, one of "PUBLIC", "PRIVATE"
|
1161
1506
|
# resp.next_token #=> String
|
1162
1507
|
#
|
1163
1508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSkills AWS API Documentation
|
@@ -1169,6 +1514,147 @@ module Aws::AlexaForBusiness
|
|
1169
1514
|
req.send_request(options)
|
1170
1515
|
end
|
1171
1516
|
|
1517
|
+
# Lists all categories in the Alexa skill store.
|
1518
|
+
#
|
1519
|
+
# @option params [String] :next_token
|
1520
|
+
# The tokens used for pagination.
|
1521
|
+
#
|
1522
|
+
# @option params [Integer] :max_results
|
1523
|
+
# The maximum number of categories returned per paginated calls.
|
1524
|
+
#
|
1525
|
+
# @return [Types::ListSkillsStoreCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1526
|
+
#
|
1527
|
+
# * {Types::ListSkillsStoreCategoriesResponse#category_list #category_list} => Array<Types::Category>
|
1528
|
+
# * {Types::ListSkillsStoreCategoriesResponse#next_token #next_token} => String
|
1529
|
+
#
|
1530
|
+
# @example Request syntax with placeholder values
|
1531
|
+
#
|
1532
|
+
# resp = client.list_skills_store_categories({
|
1533
|
+
# next_token: "NextToken",
|
1534
|
+
# max_results: 1,
|
1535
|
+
# })
|
1536
|
+
#
|
1537
|
+
# @example Response structure
|
1538
|
+
#
|
1539
|
+
# resp.category_list #=> Array
|
1540
|
+
# resp.category_list[0].category_id #=> Integer
|
1541
|
+
# resp.category_list[0].category_name #=> String
|
1542
|
+
# resp.next_token #=> String
|
1543
|
+
#
|
1544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSkillsStoreCategories AWS API Documentation
|
1545
|
+
#
|
1546
|
+
# @overload list_skills_store_categories(params = {})
|
1547
|
+
# @param [Hash] params ({})
|
1548
|
+
def list_skills_store_categories(params = {}, options = {})
|
1549
|
+
req = build_request(:list_skills_store_categories, params)
|
1550
|
+
req.send_request(options)
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
# Lists all skills in the Alexa skill store by category.
|
1554
|
+
#
|
1555
|
+
# @option params [required, Integer] :category_id
|
1556
|
+
# The category ID for which the skills are being retrieved from the
|
1557
|
+
# skill store.
|
1558
|
+
#
|
1559
|
+
# @option params [String] :next_token
|
1560
|
+
# The tokens used for pagination.
|
1561
|
+
#
|
1562
|
+
# @option params [Integer] :max_results
|
1563
|
+
# The maximum number of skills returned per paginated calls.
|
1564
|
+
#
|
1565
|
+
# @return [Types::ListSkillsStoreSkillsByCategoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1566
|
+
#
|
1567
|
+
# * {Types::ListSkillsStoreSkillsByCategoryResponse#skills_store_skills #skills_store_skills} => Array<Types::SkillsStoreSkill>
|
1568
|
+
# * {Types::ListSkillsStoreSkillsByCategoryResponse#next_token #next_token} => String
|
1569
|
+
#
|
1570
|
+
# @example Request syntax with placeholder values
|
1571
|
+
#
|
1572
|
+
# resp = client.list_skills_store_skills_by_category({
|
1573
|
+
# category_id: 1, # required
|
1574
|
+
# next_token: "NextToken",
|
1575
|
+
# max_results: 1,
|
1576
|
+
# })
|
1577
|
+
#
|
1578
|
+
# @example Response structure
|
1579
|
+
#
|
1580
|
+
# resp.skills_store_skills #=> Array
|
1581
|
+
# resp.skills_store_skills[0].skill_id #=> String
|
1582
|
+
# resp.skills_store_skills[0].skill_name #=> String
|
1583
|
+
# resp.skills_store_skills[0].short_description #=> String
|
1584
|
+
# resp.skills_store_skills[0].icon_url #=> String
|
1585
|
+
# resp.skills_store_skills[0].sample_utterances #=> Array
|
1586
|
+
# resp.skills_store_skills[0].sample_utterances[0] #=> String
|
1587
|
+
# resp.skills_store_skills[0].skill_details.product_description #=> String
|
1588
|
+
# resp.skills_store_skills[0].skill_details.invocation_phrase #=> String
|
1589
|
+
# resp.skills_store_skills[0].skill_details.release_date #=> String
|
1590
|
+
# resp.skills_store_skills[0].skill_details.end_user_license_agreement #=> String
|
1591
|
+
# resp.skills_store_skills[0].skill_details.generic_keywords #=> Array
|
1592
|
+
# resp.skills_store_skills[0].skill_details.generic_keywords[0] #=> String
|
1593
|
+
# resp.skills_store_skills[0].skill_details.bullet_points #=> Array
|
1594
|
+
# resp.skills_store_skills[0].skill_details.bullet_points[0] #=> String
|
1595
|
+
# resp.skills_store_skills[0].skill_details.new_in_this_version_bullet_points #=> Array
|
1596
|
+
# resp.skills_store_skills[0].skill_details.new_in_this_version_bullet_points[0] #=> String
|
1597
|
+
# resp.skills_store_skills[0].skill_details.skill_types #=> Array
|
1598
|
+
# resp.skills_store_skills[0].skill_details.skill_types[0] #=> String
|
1599
|
+
# resp.skills_store_skills[0].skill_details.reviews #=> Hash
|
1600
|
+
# resp.skills_store_skills[0].skill_details.reviews["ReviewKey"] #=> String
|
1601
|
+
# resp.skills_store_skills[0].skill_details.developer_info.developer_name #=> String
|
1602
|
+
# resp.skills_store_skills[0].skill_details.developer_info.privacy_policy #=> String
|
1603
|
+
# resp.skills_store_skills[0].skill_details.developer_info.email #=> String
|
1604
|
+
# resp.skills_store_skills[0].skill_details.developer_info.url #=> String
|
1605
|
+
# resp.skills_store_skills[0].supports_linking #=> Boolean
|
1606
|
+
# resp.next_token #=> String
|
1607
|
+
#
|
1608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSkillsStoreSkillsByCategory AWS API Documentation
|
1609
|
+
#
|
1610
|
+
# @overload list_skills_store_skills_by_category(params = {})
|
1611
|
+
# @param [Hash] params ({})
|
1612
|
+
def list_skills_store_skills_by_category(params = {}, options = {})
|
1613
|
+
req = build_request(:list_skills_store_skills_by_category, params)
|
1614
|
+
req.send_request(options)
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
# Lists all of the smart home appliances associated with a room.
|
1618
|
+
#
|
1619
|
+
# @option params [required, String] :room_arn
|
1620
|
+
# The room that the appliances are associated with.
|
1621
|
+
#
|
1622
|
+
# @option params [Integer] :max_results
|
1623
|
+
# The maximum number of appliances to be return per paginated calls.
|
1624
|
+
#
|
1625
|
+
# @option params [String] :next_token
|
1626
|
+
# The tokens used for pagination.
|
1627
|
+
#
|
1628
|
+
# @return [Types::ListSmartHomeAppliancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1629
|
+
#
|
1630
|
+
# * {Types::ListSmartHomeAppliancesResponse#smart_home_appliances #smart_home_appliances} => Array<Types::SmartHomeAppliance>
|
1631
|
+
# * {Types::ListSmartHomeAppliancesResponse#next_token #next_token} => String
|
1632
|
+
#
|
1633
|
+
# @example Request syntax with placeholder values
|
1634
|
+
#
|
1635
|
+
# resp = client.list_smart_home_appliances({
|
1636
|
+
# room_arn: "Arn", # required
|
1637
|
+
# max_results: 1,
|
1638
|
+
# next_token: "NextToken",
|
1639
|
+
# })
|
1640
|
+
#
|
1641
|
+
# @example Response structure
|
1642
|
+
#
|
1643
|
+
# resp.smart_home_appliances #=> Array
|
1644
|
+
# resp.smart_home_appliances[0].friendly_name #=> String
|
1645
|
+
# resp.smart_home_appliances[0].description #=> String
|
1646
|
+
# resp.smart_home_appliances[0].manufacturer_name #=> String
|
1647
|
+
# resp.next_token #=> String
|
1648
|
+
#
|
1649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSmartHomeAppliances AWS API Documentation
|
1650
|
+
#
|
1651
|
+
# @overload list_smart_home_appliances(params = {})
|
1652
|
+
# @param [Hash] params ({})
|
1653
|
+
def list_smart_home_appliances(params = {}, options = {})
|
1654
|
+
req = build_request(:list_smart_home_appliances, params)
|
1655
|
+
req.send_request(options)
|
1656
|
+
end
|
1657
|
+
|
1172
1658
|
# Lists all tags for the specified resource.
|
1173
1659
|
#
|
1174
1660
|
# @option params [required, String] :arn
|
@@ -1215,6 +1701,31 @@ module Aws::AlexaForBusiness
|
|
1215
1701
|
req.send_request(options)
|
1216
1702
|
end
|
1217
1703
|
|
1704
|
+
# Sets the conference preferences on a specific conference provider at
|
1705
|
+
# the account level.
|
1706
|
+
#
|
1707
|
+
# @option params [required, Types::ConferencePreference] :conference_preference
|
1708
|
+
# The conference preference of a specific conference provider.
|
1709
|
+
#
|
1710
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1711
|
+
#
|
1712
|
+
# @example Request syntax with placeholder values
|
1713
|
+
#
|
1714
|
+
# resp = client.put_conference_preference({
|
1715
|
+
# conference_preference: { # required
|
1716
|
+
# default_conference_provider_arn: "Arn",
|
1717
|
+
# },
|
1718
|
+
# })
|
1719
|
+
#
|
1720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PutConferencePreference AWS API Documentation
|
1721
|
+
#
|
1722
|
+
# @overload put_conference_preference(params = {})
|
1723
|
+
# @param [Hash] params ({})
|
1724
|
+
def put_conference_preference(params = {}, options = {})
|
1725
|
+
req = build_request(:put_conference_preference, params)
|
1726
|
+
req.send_request(options)
|
1727
|
+
end
|
1728
|
+
|
1218
1729
|
# Updates room skill parameter details by room, skill, and parameter key
|
1219
1730
|
# ID. Not all skills have a room skill parameter.
|
1220
1731
|
#
|
@@ -1251,6 +1762,118 @@ module Aws::AlexaForBusiness
|
|
1251
1762
|
req.send_request(options)
|
1252
1763
|
end
|
1253
1764
|
|
1765
|
+
# Links a user's account to a third-party skill provider. If this API
|
1766
|
+
# is called by an assumed IAM role, the skill being linked must be a
|
1767
|
+
# private skill, and the skill must be owned by the AWS account that
|
1768
|
+
# assumed the IAM role.
|
1769
|
+
#
|
1770
|
+
# @option params [required, Hash<String,String>] :authorization_result
|
1771
|
+
# The authorization result specific to OAUTH code grant output. "Code”
|
1772
|
+
# must be populated in the AuthorizationResult map to establish the
|
1773
|
+
# authorization.
|
1774
|
+
#
|
1775
|
+
# @option params [required, String] :skill_id
|
1776
|
+
# The unique identifier of a skill.
|
1777
|
+
#
|
1778
|
+
# @option params [String] :room_arn
|
1779
|
+
# The room that the skill is authorized for.
|
1780
|
+
#
|
1781
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1782
|
+
#
|
1783
|
+
# @example Request syntax with placeholder values
|
1784
|
+
#
|
1785
|
+
# resp = client.put_skill_authorization({
|
1786
|
+
# authorization_result: { # required
|
1787
|
+
# "Key" => "Value",
|
1788
|
+
# },
|
1789
|
+
# skill_id: "SkillId", # required
|
1790
|
+
# room_arn: "Arn",
|
1791
|
+
# })
|
1792
|
+
#
|
1793
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PutSkillAuthorization AWS API Documentation
|
1794
|
+
#
|
1795
|
+
# @overload put_skill_authorization(params = {})
|
1796
|
+
# @param [Hash] params ({})
|
1797
|
+
def put_skill_authorization(params = {}, options = {})
|
1798
|
+
req = build_request(:put_skill_authorization, params)
|
1799
|
+
req.send_request(options)
|
1800
|
+
end
|
1801
|
+
|
1802
|
+
# Registers an Alexa-enabled device built by an Original Equipment
|
1803
|
+
# Manufacturer (OEM) using Alexa Voice Service (AVS).
|
1804
|
+
#
|
1805
|
+
# @option params [required, String] :client_id
|
1806
|
+
# The client ID of the OEM used for code-based linking authorization on
|
1807
|
+
# an AVS device.
|
1808
|
+
#
|
1809
|
+
# @option params [required, String] :user_code
|
1810
|
+
# The code that is obtained after your AVS device has made a POST
|
1811
|
+
# request to LWA as a part of the Device Authorization Request component
|
1812
|
+
# of the OAuth code-based linking specification.
|
1813
|
+
#
|
1814
|
+
# @option params [required, String] :product_id
|
1815
|
+
# The product ID used to identify your AVS device during authorization.
|
1816
|
+
#
|
1817
|
+
# @option params [required, String] :device_serial_number
|
1818
|
+
# The key generated by the OEM that uniquely identifies a specified
|
1819
|
+
# instance of your AVS device.
|
1820
|
+
#
|
1821
|
+
# @option params [required, String] :amazon_id
|
1822
|
+
# The device type ID for your AVS device generated by Amazon when the
|
1823
|
+
# OEM creates a new product on Amazon's Developer Console.
|
1824
|
+
#
|
1825
|
+
# @return [Types::RegisterAVSDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1826
|
+
#
|
1827
|
+
# * {Types::RegisterAVSDeviceResponse#device_arn #device_arn} => String
|
1828
|
+
#
|
1829
|
+
# @example Request syntax with placeholder values
|
1830
|
+
#
|
1831
|
+
# resp = client.register_avs_device({
|
1832
|
+
# client_id: "ClientId", # required
|
1833
|
+
# user_code: "UserCode", # required
|
1834
|
+
# product_id: "ProductId", # required
|
1835
|
+
# device_serial_number: "DeviceSerialNumberForAVS", # required
|
1836
|
+
# amazon_id: "AmazonId", # required
|
1837
|
+
# })
|
1838
|
+
#
|
1839
|
+
# @example Response structure
|
1840
|
+
#
|
1841
|
+
# resp.device_arn #=> String
|
1842
|
+
#
|
1843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/RegisterAVSDevice AWS API Documentation
|
1844
|
+
#
|
1845
|
+
# @overload register_avs_device(params = {})
|
1846
|
+
# @param [Hash] params ({})
|
1847
|
+
def register_avs_device(params = {}, options = {})
|
1848
|
+
req = build_request(:register_avs_device, params)
|
1849
|
+
req.send_request(options)
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
# Disassociates a skill from the organization under a user's AWS
|
1853
|
+
# account. If the skill is a private skill, it moves to an AcceptStatus
|
1854
|
+
# of PENDING. Any private or public skill that is rejected can be added
|
1855
|
+
# later by calling the ApproveSkill API.
|
1856
|
+
#
|
1857
|
+
# @option params [required, String] :skill_id
|
1858
|
+
# The unique identifier of the skill.
|
1859
|
+
#
|
1860
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1861
|
+
#
|
1862
|
+
# @example Request syntax with placeholder values
|
1863
|
+
#
|
1864
|
+
# resp = client.reject_skill({
|
1865
|
+
# skill_id: "SkillId", # required
|
1866
|
+
# })
|
1867
|
+
#
|
1868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/RejectSkill AWS API Documentation
|
1869
|
+
#
|
1870
|
+
# @overload reject_skill(params = {})
|
1871
|
+
# @param [Hash] params ({})
|
1872
|
+
def reject_skill(params = {}, options = {})
|
1873
|
+
req = build_request(:reject_skill, params)
|
1874
|
+
req.send_request(options)
|
1875
|
+
end
|
1876
|
+
|
1254
1877
|
# Determines the details for the room from which a skill request was
|
1255
1878
|
# invoked. This operation is used by skill developers.
|
1256
1879
|
#
|
@@ -1581,6 +2204,7 @@ module Aws::AlexaForBusiness
|
|
1581
2204
|
# resp.profiles #=> Array
|
1582
2205
|
# resp.profiles[0].profile_arn #=> String
|
1583
2206
|
# resp.profiles[0].profile_name #=> String
|
2207
|
+
# resp.profiles[0].is_default #=> Boolean
|
1584
2208
|
# resp.profiles[0].address #=> String
|
1585
2209
|
# resp.profiles[0].timezone #=> String
|
1586
2210
|
# resp.profiles[0].distance_unit #=> String, one of "METRIC", "IMPERIAL"
|
@@ -1860,6 +2484,29 @@ module Aws::AlexaForBusiness
|
|
1860
2484
|
req.send_request(options)
|
1861
2485
|
end
|
1862
2486
|
|
2487
|
+
# Initiates the discovery of any smart home appliances associated with
|
2488
|
+
# the room.
|
2489
|
+
#
|
2490
|
+
# @option params [required, String] :room_arn
|
2491
|
+
# The room where smart home appliance discovery was initiated.
|
2492
|
+
#
|
2493
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2494
|
+
#
|
2495
|
+
# @example Request syntax with placeholder values
|
2496
|
+
#
|
2497
|
+
# resp = client.start_smart_home_appliance_discovery({
|
2498
|
+
# room_arn: "Arn", # required
|
2499
|
+
# })
|
2500
|
+
#
|
2501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/StartSmartHomeApplianceDiscovery AWS API Documentation
|
2502
|
+
#
|
2503
|
+
# @overload start_smart_home_appliance_discovery(params = {})
|
2504
|
+
# @param [Hash] params ({})
|
2505
|
+
def start_smart_home_appliance_discovery(params = {}, options = {})
|
2506
|
+
req = build_request(:start_smart_home_appliance_discovery, params)
|
2507
|
+
req.send_request(options)
|
2508
|
+
end
|
2509
|
+
|
1863
2510
|
# Adds metadata tags to a specified resource.
|
1864
2511
|
#
|
1865
2512
|
# @option params [required, String] :arn
|
@@ -1877,8 +2524,8 @@ module Aws::AlexaForBusiness
|
|
1877
2524
|
# arn: "Arn", # required
|
1878
2525
|
# tags: [ # required
|
1879
2526
|
# {
|
1880
|
-
# key: "TagKey",
|
1881
|
-
# value: "TagValue",
|
2527
|
+
# key: "TagKey", # required
|
2528
|
+
# value: "TagValue", # required
|
1882
2529
|
# },
|
1883
2530
|
# ],
|
1884
2531
|
# })
|
@@ -1949,6 +2596,54 @@ module Aws::AlexaForBusiness
|
|
1949
2596
|
req.send_request(options)
|
1950
2597
|
end
|
1951
2598
|
|
2599
|
+
# Updates an existing conference provider's settings.
|
2600
|
+
#
|
2601
|
+
# @option params [required, String] :conference_provider_arn
|
2602
|
+
# The ARN of the conference provider.
|
2603
|
+
#
|
2604
|
+
# @option params [required, String] :conference_provider_type
|
2605
|
+
# The type of the conference provider.
|
2606
|
+
#
|
2607
|
+
# @option params [Types::IPDialIn] :ip_dial_in
|
2608
|
+
# The IP endpoint and protocol for calling.
|
2609
|
+
#
|
2610
|
+
# @option params [Types::PSTNDialIn] :pstn_dial_in
|
2611
|
+
# The information for PSTN conferencing.
|
2612
|
+
#
|
2613
|
+
# @option params [required, Types::MeetingSetting] :meeting_setting
|
2614
|
+
# The meeting settings for the conference provider.
|
2615
|
+
#
|
2616
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2617
|
+
#
|
2618
|
+
# @example Request syntax with placeholder values
|
2619
|
+
#
|
2620
|
+
# resp = client.update_conference_provider({
|
2621
|
+
# conference_provider_arn: "Arn", # required
|
2622
|
+
# conference_provider_type: "CHIME", # required, accepts CHIME, BLUEJEANS, FUZE, GOOGLE_HANGOUTS, POLYCOM, RINGCENTRAL, SKYPE_FOR_BUSINESS, WEBEX, ZOOM, CUSTOM
|
2623
|
+
# ip_dial_in: {
|
2624
|
+
# endpoint: "Endpoint", # required
|
2625
|
+
# comms_protocol: "SIP", # required, accepts SIP, SIPS, H323
|
2626
|
+
# },
|
2627
|
+
# pstn_dial_in: {
|
2628
|
+
# country_code: "CountryCode", # required
|
2629
|
+
# phone_number: "PhoneNumber", # required
|
2630
|
+
# one_click_id_delay: "OneClickIdDelay", # required
|
2631
|
+
# one_click_pin_delay: "OneClickPinDelay", # required
|
2632
|
+
# },
|
2633
|
+
# meeting_setting: { # required
|
2634
|
+
# require_pin: "YES", # required, accepts YES, NO, OPTIONAL
|
2635
|
+
# },
|
2636
|
+
# })
|
2637
|
+
#
|
2638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateConferenceProvider AWS API Documentation
|
2639
|
+
#
|
2640
|
+
# @overload update_conference_provider(params = {})
|
2641
|
+
# @param [Hash] params ({})
|
2642
|
+
def update_conference_provider(params = {}, options = {})
|
2643
|
+
req = build_request(:update_conference_provider, params)
|
2644
|
+
req.send_request(options)
|
2645
|
+
end
|
2646
|
+
|
1952
2647
|
# Updates the contact details by the contact ARN.
|
1953
2648
|
#
|
1954
2649
|
# @option params [required, String] :contact_arn
|
@@ -2021,6 +2716,10 @@ module Aws::AlexaForBusiness
|
|
2021
2716
|
# @option params [String] :profile_name
|
2022
2717
|
# The updated name for the room profile.
|
2023
2718
|
#
|
2719
|
+
# @option params [Boolean] :is_default
|
2720
|
+
# Sets the profile as default if selected. If this is missing, no update
|
2721
|
+
# is done to the default status.
|
2722
|
+
#
|
2024
2723
|
# @option params [String] :timezone
|
2025
2724
|
# The updated timezone for the room profile.
|
2026
2725
|
#
|
@@ -2052,6 +2751,7 @@ module Aws::AlexaForBusiness
|
|
2052
2751
|
# resp = client.update_profile({
|
2053
2752
|
# profile_arn: "Arn",
|
2054
2753
|
# profile_name: "ProfileName",
|
2754
|
+
# is_default: false,
|
2055
2755
|
# timezone: "Timezone",
|
2056
2756
|
# address: "Address",
|
2057
2757
|
# distance_unit: "METRIC", # accepts METRIC, IMPERIAL
|
@@ -2152,7 +2852,7 @@ module Aws::AlexaForBusiness
|
|
2152
2852
|
params: params,
|
2153
2853
|
config: config)
|
2154
2854
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
2155
|
-
context[:gem_version] = '1.
|
2855
|
+
context[:gem_version] = '1.11.0'
|
2156
2856
|
Seahorse::Client::Request.new(handlers, context)
|
2157
2857
|
end
|
2158
2858
|
|