aws-sdk-alexaforbusiness 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6bc81be9cbb441d3252ec22698da49075bbb6be8
|
|
4
|
+
data.tar.gz: 1b198214f37cb991c26b50c18e373859f7cc19d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d3eedcb3e18c1591bd8fe33b7cf4cef87118c573ac2b50198a5071ef3236fca75d206228c90444b65ff5b4a18701038b3ff4604446523bb12a899d280bd20f1
|
|
7
|
+
data.tar.gz: ee9fb8a4689e4e5723327da3212a3121f2a3484bcd31efb546bea33802acaf5bf75473fbb4a6e88ced4badf75e693423bbfd84546c54d90b3bdbb7d2203382ae
|
|
@@ -350,18 +350,14 @@ module Aws::AlexaForBusiness
|
|
|
350
350
|
# Makes a private skill available for enrolled users to enable on their
|
|
351
351
|
# devices.
|
|
352
352
|
#
|
|
353
|
-
# @option params [String] :organization_arn
|
|
354
|
-
# The ARN of the organization.
|
|
355
|
-
#
|
|
356
353
|
# @option params [required, String] :skill_id
|
|
357
|
-
# The private skill ID you want to make available to enrolled users
|
|
354
|
+
# The private skill ID you want to make available to enrolled users.
|
|
358
355
|
#
|
|
359
356
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
360
357
|
#
|
|
361
358
|
# @example Request syntax with placeholder values
|
|
362
359
|
#
|
|
363
360
|
# resp = client.associate_skill_with_users({
|
|
364
|
-
# organization_arn: "Arn",
|
|
365
361
|
# skill_id: "SkillId", # required
|
|
366
362
|
# })
|
|
367
363
|
#
|
|
@@ -421,7 +417,9 @@ module Aws::AlexaForBusiness
|
|
|
421
417
|
# The name identifier of the schedule.
|
|
422
418
|
#
|
|
423
419
|
# @option params [String] :s3_bucket_name
|
|
424
|
-
# The S3 bucket name of the output reports.
|
|
420
|
+
# The S3 bucket name of the output reports. If this isn't specified,
|
|
421
|
+
# the report can be retrieved from a download link by calling
|
|
422
|
+
# ListBusinessReportSchedule.
|
|
425
423
|
#
|
|
426
424
|
# @option params [String] :s3_key_prefix
|
|
427
425
|
# The S3 key where the report is delivered.
|
|
@@ -434,7 +432,8 @@ module Aws::AlexaForBusiness
|
|
|
434
432
|
# The content range of the reports.
|
|
435
433
|
#
|
|
436
434
|
# @option params [Types::BusinessReportRecurrence] :recurrence
|
|
437
|
-
# The recurrence of the reports.
|
|
435
|
+
# The recurrence of the reports. If this isn't specified, the report
|
|
436
|
+
# will only be delivered one time when the API is called.
|
|
438
437
|
#
|
|
439
438
|
# @option params [String] :client_request_token
|
|
440
439
|
# The client request token.
|
|
@@ -1149,9 +1148,6 @@ module Aws::AlexaForBusiness
|
|
|
1149
1148
|
# Makes a private skill unavailable for enrolled users and prevents them
|
|
1150
1149
|
# from enabling it on their devices.
|
|
1151
1150
|
#
|
|
1152
|
-
# @option params [String] :organization_arn
|
|
1153
|
-
# The ARN of the organization.
|
|
1154
|
-
#
|
|
1155
1151
|
# @option params [required, String] :skill_id
|
|
1156
1152
|
# The private skill ID you want to make unavailable for enrolled users.
|
|
1157
1153
|
#
|
|
@@ -1160,7 +1156,6 @@ module Aws::AlexaForBusiness
|
|
|
1160
1156
|
# @example Request syntax with placeholder values
|
|
1161
1157
|
#
|
|
1162
1158
|
# resp = client.disassociate_skill_from_users({
|
|
1163
|
-
# organization_arn: "Arn",
|
|
1164
1159
|
# skill_id: "SkillId", # required
|
|
1165
1160
|
# })
|
|
1166
1161
|
#
|
|
@@ -1379,6 +1374,31 @@ module Aws::AlexaForBusiness
|
|
|
1379
1374
|
req.send_request(options)
|
|
1380
1375
|
end
|
|
1381
1376
|
|
|
1377
|
+
# Retrieves the configured values for the user enrollment invitation
|
|
1378
|
+
# email template.
|
|
1379
|
+
#
|
|
1380
|
+
# @return [Types::GetInvitationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1381
|
+
#
|
|
1382
|
+
# * {Types::GetInvitationConfigurationResponse#organization_name #organization_name} => String
|
|
1383
|
+
# * {Types::GetInvitationConfigurationResponse#contact_email #contact_email} => String
|
|
1384
|
+
# * {Types::GetInvitationConfigurationResponse#private_skill_ids #private_skill_ids} => Array<String>
|
|
1385
|
+
#
|
|
1386
|
+
# @example Response structure
|
|
1387
|
+
#
|
|
1388
|
+
# resp.organization_name #=> String
|
|
1389
|
+
# resp.contact_email #=> String
|
|
1390
|
+
# resp.private_skill_ids #=> Array
|
|
1391
|
+
# resp.private_skill_ids[0] #=> String
|
|
1392
|
+
#
|
|
1393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetInvitationConfiguration AWS API Documentation
|
|
1394
|
+
#
|
|
1395
|
+
# @overload get_invitation_configuration(params = {})
|
|
1396
|
+
# @param [Hash] params ({})
|
|
1397
|
+
def get_invitation_configuration(params = {}, options = {})
|
|
1398
|
+
req = build_request(:get_invitation_configuration, params)
|
|
1399
|
+
req.send_request(options)
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1382
1402
|
# Gets the details of a room profile by profile ARN.
|
|
1383
1403
|
#
|
|
1384
1404
|
# @option params [String] :profile_arn
|
|
@@ -1672,7 +1692,7 @@ module Aws::AlexaForBusiness
|
|
|
1672
1692
|
# Lists all enabled skills in a specific skill group.
|
|
1673
1693
|
#
|
|
1674
1694
|
# @option params [String] :skill_group_arn
|
|
1675
|
-
# The ARN of the skill group for which to list enabled skills.
|
|
1695
|
+
# The ARN of the skill group for which to list enabled skills. Required.
|
|
1676
1696
|
#
|
|
1677
1697
|
# @option params [String] :enablement_type
|
|
1678
1698
|
# Whether the skill is enabled under the user's account, or if it
|
|
@@ -1685,13 +1705,13 @@ module Aws::AlexaForBusiness
|
|
|
1685
1705
|
# An optional token returned from a prior request. Use this token for
|
|
1686
1706
|
# pagination of results from this action. If this parameter is
|
|
1687
1707
|
# specified, the response includes only results beyond the token, up to
|
|
1688
|
-
# the value specified by `MaxResults`.
|
|
1708
|
+
# the value specified by `MaxResults`. Required.
|
|
1689
1709
|
#
|
|
1690
1710
|
# @option params [Integer] :max_results
|
|
1691
1711
|
# The maximum number of results to include in the response. If more
|
|
1692
1712
|
# results exist than the specified `MaxResults` value, a token is
|
|
1693
1713
|
# included in the response so that the remaining results can be
|
|
1694
|
-
# retrieved.
|
|
1714
|
+
# retrieved. Required.
|
|
1695
1715
|
#
|
|
1696
1716
|
# @return [Types::ListSkillsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1697
1717
|
#
|
|
@@ -1939,6 +1959,39 @@ module Aws::AlexaForBusiness
|
|
|
1939
1959
|
req.send_request(options)
|
|
1940
1960
|
end
|
|
1941
1961
|
|
|
1962
|
+
# Configures the email template for the user enrollment invitation with
|
|
1963
|
+
# the specified attributes.
|
|
1964
|
+
#
|
|
1965
|
+
# @option params [required, String] :organization_name
|
|
1966
|
+
# The name of the organization sending the enrollment invite to a user.
|
|
1967
|
+
#
|
|
1968
|
+
# @option params [String] :contact_email
|
|
1969
|
+
# The email ID of the organization or individual contact that the
|
|
1970
|
+
# enrolled user can use.
|
|
1971
|
+
#
|
|
1972
|
+
# @option params [Array<String>] :private_skill_ids
|
|
1973
|
+
# The list of private skill IDs that you want to recommend to the user
|
|
1974
|
+
# to enable in the invitation.
|
|
1975
|
+
#
|
|
1976
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1977
|
+
#
|
|
1978
|
+
# @example Request syntax with placeholder values
|
|
1979
|
+
#
|
|
1980
|
+
# resp = client.put_invitation_configuration({
|
|
1981
|
+
# organization_name: "OrganizationName", # required
|
|
1982
|
+
# contact_email: "Email",
|
|
1983
|
+
# private_skill_ids: ["SkillId"],
|
|
1984
|
+
# })
|
|
1985
|
+
#
|
|
1986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PutInvitationConfiguration AWS API Documentation
|
|
1987
|
+
#
|
|
1988
|
+
# @overload put_invitation_configuration(params = {})
|
|
1989
|
+
# @param [Hash] params ({})
|
|
1990
|
+
def put_invitation_configuration(params = {}, options = {})
|
|
1991
|
+
req = build_request(:put_invitation_configuration, params)
|
|
1992
|
+
req.send_request(options)
|
|
1993
|
+
end
|
|
1994
|
+
|
|
1942
1995
|
# Updates room skill parameter details by room, skill, and parameter key
|
|
1943
1996
|
# ID. Not all skills have a room skill parameter.
|
|
1944
1997
|
#
|
|
@@ -3111,7 +3164,7 @@ module Aws::AlexaForBusiness
|
|
|
3111
3164
|
params: params,
|
|
3112
3165
|
config: config)
|
|
3113
3166
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
|
3114
|
-
context[:gem_version] = '1.
|
|
3167
|
+
context[:gem_version] = '1.16.0'
|
|
3115
3168
|
Seahorse::Client::Request.new(handlers, context)
|
|
3116
3169
|
end
|
|
3117
3170
|
|
|
@@ -171,6 +171,8 @@ module Aws::AlexaForBusiness
|
|
|
171
171
|
GetContactResponse = Shapes::StructureShape.new(name: 'GetContactResponse')
|
|
172
172
|
GetDeviceRequest = Shapes::StructureShape.new(name: 'GetDeviceRequest')
|
|
173
173
|
GetDeviceResponse = Shapes::StructureShape.new(name: 'GetDeviceResponse')
|
|
174
|
+
GetInvitationConfigurationRequest = Shapes::StructureShape.new(name: 'GetInvitationConfigurationRequest')
|
|
175
|
+
GetInvitationConfigurationResponse = Shapes::StructureShape.new(name: 'GetInvitationConfigurationResponse')
|
|
174
176
|
GetProfileRequest = Shapes::StructureShape.new(name: 'GetProfileRequest')
|
|
175
177
|
GetProfileResponse = Shapes::StructureShape.new(name: 'GetProfileResponse')
|
|
176
178
|
GetRoomRequest = Shapes::StructureShape.new(name: 'GetRoomRequest')
|
|
@@ -213,6 +215,7 @@ module Aws::AlexaForBusiness
|
|
|
213
215
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
|
214
216
|
OneClickIdDelay = Shapes::StringShape.new(name: 'OneClickIdDelay')
|
|
215
217
|
OneClickPinDelay = Shapes::StringShape.new(name: 'OneClickPinDelay')
|
|
218
|
+
OrganizationName = Shapes::StringShape.new(name: 'OrganizationName')
|
|
216
219
|
OutboundPhoneNumber = Shapes::StringShape.new(name: 'OutboundPhoneNumber')
|
|
217
220
|
PSTNDialIn = Shapes::StructureShape.new(name: 'PSTNDialIn')
|
|
218
221
|
PrivacyPolicy = Shapes::StringShape.new(name: 'PrivacyPolicy')
|
|
@@ -225,6 +228,8 @@ module Aws::AlexaForBusiness
|
|
|
225
228
|
ProviderCalendarId = Shapes::StringShape.new(name: 'ProviderCalendarId')
|
|
226
229
|
PutConferencePreferenceRequest = Shapes::StructureShape.new(name: 'PutConferencePreferenceRequest')
|
|
227
230
|
PutConferencePreferenceResponse = Shapes::StructureShape.new(name: 'PutConferencePreferenceResponse')
|
|
231
|
+
PutInvitationConfigurationRequest = Shapes::StructureShape.new(name: 'PutInvitationConfigurationRequest')
|
|
232
|
+
PutInvitationConfigurationResponse = Shapes::StructureShape.new(name: 'PutInvitationConfigurationResponse')
|
|
228
233
|
PutRoomSkillParameterRequest = Shapes::StructureShape.new(name: 'PutRoomSkillParameterRequest')
|
|
229
234
|
PutRoomSkillParameterResponse = Shapes::StructureShape.new(name: 'PutRoomSkillParameterResponse')
|
|
230
235
|
PutSkillAuthorizationRequest = Shapes::StructureShape.new(name: 'PutSkillAuthorizationRequest')
|
|
@@ -271,6 +276,7 @@ module Aws::AlexaForBusiness
|
|
|
271
276
|
SendInvitationRequest = Shapes::StructureShape.new(name: 'SendInvitationRequest')
|
|
272
277
|
SendInvitationResponse = Shapes::StructureShape.new(name: 'SendInvitationResponse')
|
|
273
278
|
ShortDescription = Shapes::StringShape.new(name: 'ShortDescription')
|
|
279
|
+
ShortSkillIdList = Shapes::ListShape.new(name: 'ShortSkillIdList')
|
|
274
280
|
SkillDetails = Shapes::StructureShape.new(name: 'SkillDetails')
|
|
275
281
|
SkillGroup = Shapes::StructureShape.new(name: 'SkillGroup')
|
|
276
282
|
SkillGroupData = Shapes::StructureShape.new(name: 'SkillGroupData')
|
|
@@ -384,7 +390,6 @@ module Aws::AlexaForBusiness
|
|
|
384
390
|
|
|
385
391
|
AssociateSkillWithSkillGroupResponse.struct_class = Types::AssociateSkillWithSkillGroupResponse
|
|
386
392
|
|
|
387
|
-
AssociateSkillWithUsersRequest.add_member(:organization_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "OrganizationArn"))
|
|
388
393
|
AssociateSkillWithUsersRequest.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, required: true, location_name: "SkillId"))
|
|
389
394
|
AssociateSkillWithUsersRequest.struct_class = Types::AssociateSkillWithUsersRequest
|
|
390
395
|
|
|
@@ -668,7 +673,6 @@ module Aws::AlexaForBusiness
|
|
|
668
673
|
|
|
669
674
|
DisassociateSkillFromSkillGroupResponse.struct_class = Types::DisassociateSkillFromSkillGroupResponse
|
|
670
675
|
|
|
671
|
-
DisassociateSkillFromUsersRequest.add_member(:organization_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "OrganizationArn"))
|
|
672
676
|
DisassociateSkillFromUsersRequest.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, required: true, location_name: "SkillId"))
|
|
673
677
|
DisassociateSkillFromUsersRequest.struct_class = Types::DisassociateSkillFromUsersRequest
|
|
674
678
|
|
|
@@ -726,6 +730,13 @@ module Aws::AlexaForBusiness
|
|
|
726
730
|
GetDeviceResponse.add_member(:device, Shapes::ShapeRef.new(shape: Device, location_name: "Device"))
|
|
727
731
|
GetDeviceResponse.struct_class = Types::GetDeviceResponse
|
|
728
732
|
|
|
733
|
+
GetInvitationConfigurationRequest.struct_class = Types::GetInvitationConfigurationRequest
|
|
734
|
+
|
|
735
|
+
GetInvitationConfigurationResponse.add_member(:organization_name, Shapes::ShapeRef.new(shape: OrganizationName, location_name: "OrganizationName"))
|
|
736
|
+
GetInvitationConfigurationResponse.add_member(:contact_email, Shapes::ShapeRef.new(shape: Email, location_name: "ContactEmail"))
|
|
737
|
+
GetInvitationConfigurationResponse.add_member(:private_skill_ids, Shapes::ShapeRef.new(shape: ShortSkillIdList, location_name: "PrivateSkillIds"))
|
|
738
|
+
GetInvitationConfigurationResponse.struct_class = Types::GetInvitationConfigurationResponse
|
|
739
|
+
|
|
729
740
|
GetProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
|
730
741
|
GetProfileRequest.struct_class = Types::GetProfileRequest
|
|
731
742
|
|
|
@@ -870,6 +881,13 @@ module Aws::AlexaForBusiness
|
|
|
870
881
|
|
|
871
882
|
PutConferencePreferenceResponse.struct_class = Types::PutConferencePreferenceResponse
|
|
872
883
|
|
|
884
|
+
PutInvitationConfigurationRequest.add_member(:organization_name, Shapes::ShapeRef.new(shape: OrganizationName, required: true, location_name: "OrganizationName"))
|
|
885
|
+
PutInvitationConfigurationRequest.add_member(:contact_email, Shapes::ShapeRef.new(shape: Email, location_name: "ContactEmail"))
|
|
886
|
+
PutInvitationConfigurationRequest.add_member(:private_skill_ids, Shapes::ShapeRef.new(shape: ShortSkillIdList, location_name: "PrivateSkillIds"))
|
|
887
|
+
PutInvitationConfigurationRequest.struct_class = Types::PutInvitationConfigurationRequest
|
|
888
|
+
|
|
889
|
+
PutInvitationConfigurationResponse.struct_class = Types::PutInvitationConfigurationResponse
|
|
890
|
+
|
|
873
891
|
PutRoomSkillParameterRequest.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
|
874
892
|
PutRoomSkillParameterRequest.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, required: true, location_name: "SkillId"))
|
|
875
893
|
PutRoomSkillParameterRequest.add_member(:room_skill_parameter, Shapes::ShapeRef.new(shape: RoomSkillParameter, required: true, location_name: "RoomSkillParameter"))
|
|
@@ -1024,6 +1042,8 @@ module Aws::AlexaForBusiness
|
|
|
1024
1042
|
|
|
1025
1043
|
SendInvitationResponse.struct_class = Types::SendInvitationResponse
|
|
1026
1044
|
|
|
1045
|
+
ShortSkillIdList.member = Shapes::ShapeRef.new(shape: SkillId)
|
|
1046
|
+
|
|
1027
1047
|
SkillDetails.add_member(:product_description, Shapes::ShapeRef.new(shape: ProductDescription, location_name: "ProductDescription"))
|
|
1028
1048
|
SkillDetails.add_member(:invocation_phrase, Shapes::ShapeRef.new(shape: InvocationPhrase, location_name: "InvocationPhrase"))
|
|
1029
1049
|
SkillDetails.add_member(:release_date, Shapes::ShapeRef.new(shape: ReleaseDate, location_name: "ReleaseDate"))
|
|
@@ -1273,6 +1293,7 @@ module Aws::AlexaForBusiness
|
|
|
1273
1293
|
o.input = Shapes::ShapeRef.new(shape: AssociateSkillWithUsersRequest)
|
|
1274
1294
|
o.output = Shapes::ShapeRef.new(shape: AssociateSkillWithUsersResponse)
|
|
1275
1295
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
1296
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1276
1297
|
end)
|
|
1277
1298
|
|
|
1278
1299
|
api.add_operation(:create_address_book, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1500,6 +1521,7 @@ module Aws::AlexaForBusiness
|
|
|
1500
1521
|
o.input = Shapes::ShapeRef.new(shape: DisassociateSkillFromUsersRequest)
|
|
1501
1522
|
o.output = Shapes::ShapeRef.new(shape: DisassociateSkillFromUsersResponse)
|
|
1502
1523
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
1524
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1503
1525
|
end)
|
|
1504
1526
|
|
|
1505
1527
|
api.add_operation(:disassociate_skill_group_from_room, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1565,6 +1587,15 @@ module Aws::AlexaForBusiness
|
|
|
1565
1587
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1566
1588
|
end)
|
|
1567
1589
|
|
|
1590
|
+
api.add_operation(:get_invitation_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
1591
|
+
o.name = "GetInvitationConfiguration"
|
|
1592
|
+
o.http_method = "POST"
|
|
1593
|
+
o.http_request_uri = "/"
|
|
1594
|
+
o.input = Shapes::ShapeRef.new(shape: GetInvitationConfigurationRequest)
|
|
1595
|
+
o.output = Shapes::ShapeRef.new(shape: GetInvitationConfigurationResponse)
|
|
1596
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1597
|
+
end)
|
|
1598
|
+
|
|
1568
1599
|
api.add_operation(:get_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
1569
1600
|
o.name = "GetProfile"
|
|
1570
1601
|
o.http_method = "POST"
|
|
@@ -1725,6 +1756,16 @@ module Aws::AlexaForBusiness
|
|
|
1725
1756
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1726
1757
|
end)
|
|
1727
1758
|
|
|
1759
|
+
api.add_operation(:put_invitation_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
1760
|
+
o.name = "PutInvitationConfiguration"
|
|
1761
|
+
o.http_method = "POST"
|
|
1762
|
+
o.http_request_uri = "/"
|
|
1763
|
+
o.input = Shapes::ShapeRef.new(shape: PutInvitationConfigurationRequest)
|
|
1764
|
+
o.output = Shapes::ShapeRef.new(shape: PutInvitationConfigurationResponse)
|
|
1765
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1766
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
1767
|
+
end)
|
|
1768
|
+
|
|
1728
1769
|
api.add_operation(:put_room_skill_parameter, Seahorse::Model::Operation.new.tap do |o|
|
|
1729
1770
|
o.name = "PutRoomSkillParameter"
|
|
1730
1771
|
o.http_method = "POST"
|
|
@@ -193,23 +193,16 @@ module Aws::AlexaForBusiness
|
|
|
193
193
|
# data as a hash:
|
|
194
194
|
#
|
|
195
195
|
# {
|
|
196
|
-
# organization_arn: "Arn",
|
|
197
196
|
# skill_id: "SkillId", # required
|
|
198
197
|
# }
|
|
199
198
|
#
|
|
200
|
-
# @!attribute [rw] organization_arn
|
|
201
|
-
# The ARN of the organization.
|
|
202
|
-
# @return [String]
|
|
203
|
-
#
|
|
204
199
|
# @!attribute [rw] skill_id
|
|
205
|
-
# The private skill ID you want to make available to enrolled
|
|
206
|
-
# users.>
|
|
200
|
+
# The private skill ID you want to make available to enrolled users.
|
|
207
201
|
# @return [String]
|
|
208
202
|
#
|
|
209
203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/AssociateSkillWithUsersRequest AWS API Documentation
|
|
210
204
|
#
|
|
211
205
|
class AssociateSkillWithUsersRequest < Struct.new(
|
|
212
|
-
:organization_arn,
|
|
213
206
|
:skill_id)
|
|
214
207
|
include Aws::Structure
|
|
215
208
|
end
|
|
@@ -579,7 +572,9 @@ module Aws::AlexaForBusiness
|
|
|
579
572
|
# @return [String]
|
|
580
573
|
#
|
|
581
574
|
# @!attribute [rw] s3_bucket_name
|
|
582
|
-
# The S3 bucket name of the output reports.
|
|
575
|
+
# The S3 bucket name of the output reports. If this isn't specified,
|
|
576
|
+
# the report can be retrieved from a download link by calling
|
|
577
|
+
# ListBusinessReportSchedule.
|
|
583
578
|
# @return [String]
|
|
584
579
|
#
|
|
585
580
|
# @!attribute [rw] s3_key_prefix
|
|
@@ -596,7 +591,8 @@ module Aws::AlexaForBusiness
|
|
|
596
591
|
# @return [Types::BusinessReportContentRange]
|
|
597
592
|
#
|
|
598
593
|
# @!attribute [rw] recurrence
|
|
599
|
-
# The recurrence of the reports.
|
|
594
|
+
# The recurrence of the reports. If this isn't specified, the report
|
|
595
|
+
# will only be delivered one time when the API is called.
|
|
600
596
|
# @return [Types::BusinessReportRecurrence]
|
|
601
597
|
#
|
|
602
598
|
# @!attribute [rw] client_request_token
|
|
@@ -1574,14 +1570,9 @@ module Aws::AlexaForBusiness
|
|
|
1574
1570
|
# data as a hash:
|
|
1575
1571
|
#
|
|
1576
1572
|
# {
|
|
1577
|
-
# organization_arn: "Arn",
|
|
1578
1573
|
# skill_id: "SkillId", # required
|
|
1579
1574
|
# }
|
|
1580
1575
|
#
|
|
1581
|
-
# @!attribute [rw] organization_arn
|
|
1582
|
-
# The ARN of the organization.
|
|
1583
|
-
# @return [String]
|
|
1584
|
-
#
|
|
1585
1576
|
# @!attribute [rw] skill_id
|
|
1586
1577
|
# The private skill ID you want to make unavailable for enrolled
|
|
1587
1578
|
# users.
|
|
@@ -1590,7 +1581,6 @@ module Aws::AlexaForBusiness
|
|
|
1590
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DisassociateSkillFromUsersRequest AWS API Documentation
|
|
1591
1582
|
#
|
|
1592
1583
|
class DisassociateSkillFromUsersRequest < Struct.new(
|
|
1593
|
-
:organization_arn,
|
|
1594
1584
|
:skill_id)
|
|
1595
1585
|
include Aws::Structure
|
|
1596
1586
|
end
|
|
@@ -1811,6 +1801,36 @@ module Aws::AlexaForBusiness
|
|
|
1811
1801
|
include Aws::Structure
|
|
1812
1802
|
end
|
|
1813
1803
|
|
|
1804
|
+
# @api private
|
|
1805
|
+
#
|
|
1806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetInvitationConfigurationRequest AWS API Documentation
|
|
1807
|
+
#
|
|
1808
|
+
class GetInvitationConfigurationRequest < Aws::EmptyStructure; end
|
|
1809
|
+
|
|
1810
|
+
# @!attribute [rw] organization_name
|
|
1811
|
+
# The name of the organization sending the enrollment invite to a
|
|
1812
|
+
# user.
|
|
1813
|
+
# @return [String]
|
|
1814
|
+
#
|
|
1815
|
+
# @!attribute [rw] contact_email
|
|
1816
|
+
# The email ID of the organization or individual contact that the
|
|
1817
|
+
# enrolled user can use.
|
|
1818
|
+
# @return [String]
|
|
1819
|
+
#
|
|
1820
|
+
# @!attribute [rw] private_skill_ids
|
|
1821
|
+
# The list of private skill IDs that you want to recommend to the user
|
|
1822
|
+
# to enable in the invitation.
|
|
1823
|
+
# @return [Array<String>]
|
|
1824
|
+
#
|
|
1825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetInvitationConfigurationResponse AWS API Documentation
|
|
1826
|
+
#
|
|
1827
|
+
class GetInvitationConfigurationResponse < Struct.new(
|
|
1828
|
+
:organization_name,
|
|
1829
|
+
:contact_email,
|
|
1830
|
+
:private_skill_ids)
|
|
1831
|
+
include Aws::Structure
|
|
1832
|
+
end
|
|
1833
|
+
|
|
1814
1834
|
# @note When making an API call, you may pass GetProfileRequest
|
|
1815
1835
|
# data as a hash:
|
|
1816
1836
|
#
|
|
@@ -2125,6 +2145,7 @@ module Aws::AlexaForBusiness
|
|
|
2125
2145
|
#
|
|
2126
2146
|
# @!attribute [rw] skill_group_arn
|
|
2127
2147
|
# The ARN of the skill group for which to list enabled skills.
|
|
2148
|
+
# Required.
|
|
2128
2149
|
# @return [String]
|
|
2129
2150
|
#
|
|
2130
2151
|
# @!attribute [rw] enablement_type
|
|
@@ -2140,14 +2161,14 @@ module Aws::AlexaForBusiness
|
|
|
2140
2161
|
# An optional token returned from a prior request. Use this token for
|
|
2141
2162
|
# pagination of results from this action. If this parameter is
|
|
2142
2163
|
# specified, the response includes only results beyond the token, up
|
|
2143
|
-
# to the value specified by `MaxResults`.
|
|
2164
|
+
# to the value specified by `MaxResults`. Required.
|
|
2144
2165
|
# @return [String]
|
|
2145
2166
|
#
|
|
2146
2167
|
# @!attribute [rw] max_results
|
|
2147
2168
|
# The maximum number of results to include in the response. If more
|
|
2148
2169
|
# results exist than the specified `MaxResults` value, a token is
|
|
2149
2170
|
# included in the response so that the remaining results can be
|
|
2150
|
-
# retrieved.
|
|
2171
|
+
# retrieved. Required.
|
|
2151
2172
|
# @return [Integer]
|
|
2152
2173
|
#
|
|
2153
2174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ListSkillsRequest AWS API Documentation
|
|
@@ -2576,6 +2597,43 @@ module Aws::AlexaForBusiness
|
|
|
2576
2597
|
#
|
|
2577
2598
|
class PutConferencePreferenceResponse < Aws::EmptyStructure; end
|
|
2578
2599
|
|
|
2600
|
+
# @note When making an API call, you may pass PutInvitationConfigurationRequest
|
|
2601
|
+
# data as a hash:
|
|
2602
|
+
#
|
|
2603
|
+
# {
|
|
2604
|
+
# organization_name: "OrganizationName", # required
|
|
2605
|
+
# contact_email: "Email",
|
|
2606
|
+
# private_skill_ids: ["SkillId"],
|
|
2607
|
+
# }
|
|
2608
|
+
#
|
|
2609
|
+
# @!attribute [rw] organization_name
|
|
2610
|
+
# The name of the organization sending the enrollment invite to a
|
|
2611
|
+
# user.
|
|
2612
|
+
# @return [String]
|
|
2613
|
+
#
|
|
2614
|
+
# @!attribute [rw] contact_email
|
|
2615
|
+
# The email ID of the organization or individual contact that the
|
|
2616
|
+
# enrolled user can use.
|
|
2617
|
+
# @return [String]
|
|
2618
|
+
#
|
|
2619
|
+
# @!attribute [rw] private_skill_ids
|
|
2620
|
+
# The list of private skill IDs that you want to recommend to the user
|
|
2621
|
+
# to enable in the invitation.
|
|
2622
|
+
# @return [Array<String>]
|
|
2623
|
+
#
|
|
2624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PutInvitationConfigurationRequest AWS API Documentation
|
|
2625
|
+
#
|
|
2626
|
+
class PutInvitationConfigurationRequest < Struct.new(
|
|
2627
|
+
:organization_name,
|
|
2628
|
+
:contact_email,
|
|
2629
|
+
:private_skill_ids)
|
|
2630
|
+
include Aws::Structure
|
|
2631
|
+
end
|
|
2632
|
+
|
|
2633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PutInvitationConfigurationResponse AWS API Documentation
|
|
2634
|
+
#
|
|
2635
|
+
class PutInvitationConfigurationResponse < Aws::EmptyStructure; end
|
|
2636
|
+
|
|
2579
2637
|
# @note When making an API call, you may pass PutRoomSkillParameterRequest
|
|
2580
2638
|
# data as a hash:
|
|
2581
2639
|
#
|
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.
|
|
4
|
+
version: 1.16.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:
|
|
11
|
+
date: 2019-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|