aws-sdk-chime 1.17.0 → 1.18.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-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +166 -9
- data/lib/aws-sdk-chime/client_api.rb +110 -0
- data/lib/aws-sdk-chime/types.rb +229 -6
- 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: 2d9c52af39313a9ba2a873f86d466eba1107d84f
|
|
4
|
+
data.tar.gz: d39e75cd56e3d711c220763ac1463694af59e1bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f0ac2155ec657a577cf527ac67558990e231176d62e92c0d19dcff0a0abf55c6c2f9637c2fb1d8d86ab3a20177b60ebcf9baacddcc0439c3142850ca5b0f1c2
|
|
7
|
+
data.tar.gz: d076a5d596b3b4272c27550b3d518428828e27f1d5cb0ea9c827c2f72750c9cb153037bfeb2e5a73f135f4cf57651d7617b74fe17eccf248ab78cb715872840f
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
|
@@ -370,6 +370,37 @@ module Aws::Chime
|
|
|
370
370
|
req.send_request(options)
|
|
371
371
|
end
|
|
372
372
|
|
|
373
|
+
# Associates the specified sign-in delegate groups with the specified
|
|
374
|
+
# Amazon Chime account.
|
|
375
|
+
#
|
|
376
|
+
# @option params [required, String] :account_id
|
|
377
|
+
# The Amazon Chime account ID.
|
|
378
|
+
#
|
|
379
|
+
# @option params [required, Array<Types::SigninDelegateGroup>] :signin_delegate_groups
|
|
380
|
+
# The sign-in delegate groups.
|
|
381
|
+
#
|
|
382
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
383
|
+
#
|
|
384
|
+
# @example Request syntax with placeholder values
|
|
385
|
+
#
|
|
386
|
+
# resp = client.associate_signin_delegate_groups_with_account({
|
|
387
|
+
# account_id: "NonEmptyString", # required
|
|
388
|
+
# signin_delegate_groups: [ # required
|
|
389
|
+
# {
|
|
390
|
+
# group_name: "NonEmptyString",
|
|
391
|
+
# },
|
|
392
|
+
# ],
|
|
393
|
+
# })
|
|
394
|
+
#
|
|
395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AssociateSigninDelegateGroupsWithAccount AWS API Documentation
|
|
396
|
+
#
|
|
397
|
+
# @overload associate_signin_delegate_groups_with_account(params = {})
|
|
398
|
+
# @param [Hash] params ({})
|
|
399
|
+
def associate_signin_delegate_groups_with_account(params = {}, options = {})
|
|
400
|
+
req = build_request(:associate_signin_delegate_groups_with_account, params)
|
|
401
|
+
req.send_request(options)
|
|
402
|
+
end
|
|
403
|
+
|
|
373
404
|
# Creates up to 100 new attendees for an active Amazon Chime SDK
|
|
374
405
|
# meeting. For more information about the Amazon Chime SDK, see [Using
|
|
375
406
|
# the Amazon Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
|
@@ -507,7 +538,7 @@ module Aws::Chime
|
|
|
507
538
|
# [Managing Your Amazon Chime Accounts][1] in the *Amazon Chime
|
|
508
539
|
# Administration Guide*.
|
|
509
540
|
#
|
|
510
|
-
# Users suspended from a `Team` account are
|
|
541
|
+
# Users suspended from a `Team` account are disassociated from the
|
|
511
542
|
# account, but they can continue to use Amazon Chime as free users. To
|
|
512
543
|
# remove the suspension from suspended `Team` account users, invite them
|
|
513
544
|
# to the `Team` account again. You can use the InviteUsers action to do
|
|
@@ -674,6 +705,11 @@ module Aws::Chime
|
|
|
674
705
|
# {
|
|
675
706
|
# user_id: "NonEmptyString", # required
|
|
676
707
|
# license_type: "Basic", # accepts Basic, Plus, Pro, ProTrial
|
|
708
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
709
|
+
# alexa_for_business_metadata: {
|
|
710
|
+
# is_alexa_for_business_enabled: false,
|
|
711
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
712
|
+
# },
|
|
677
713
|
# },
|
|
678
714
|
# ],
|
|
679
715
|
# })
|
|
@@ -727,6 +763,8 @@ module Aws::Chime
|
|
|
727
763
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
728
764
|
# resp.account.supported_licenses #=> Array
|
|
729
765
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
766
|
+
# resp.account.signin_delegate_groups #=> Array
|
|
767
|
+
# resp.account.signin_delegate_groups[0].group_name #=> String
|
|
730
768
|
#
|
|
731
769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAccount AWS API Documentation
|
|
732
770
|
#
|
|
@@ -843,7 +881,9 @@ module Aws::Chime
|
|
|
843
881
|
#
|
|
844
882
|
# @option params [String] :media_region
|
|
845
883
|
# The Region in which to create the meeting. Available values:
|
|
846
|
-
# `
|
|
884
|
+
# `ap-northeast-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
|
|
885
|
+
# `eu-central-1`, `eu-north-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`,
|
|
886
|
+
# `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.
|
|
847
887
|
#
|
|
848
888
|
# @option params [Types::MeetingNotificationConfiguration] :notifications_configuration
|
|
849
889
|
# The configuration for resource targets to receive notifications when
|
|
@@ -1021,6 +1061,59 @@ module Aws::Chime
|
|
|
1021
1061
|
req.send_request(options)
|
|
1022
1062
|
end
|
|
1023
1063
|
|
|
1064
|
+
# Creates a user under the specified Amazon Chime account.
|
|
1065
|
+
#
|
|
1066
|
+
# @option params [required, String] :account_id
|
|
1067
|
+
# The Amazon Chime account ID.
|
|
1068
|
+
#
|
|
1069
|
+
# @option params [String] :username
|
|
1070
|
+
# The user name.
|
|
1071
|
+
#
|
|
1072
|
+
# @option params [String] :email
|
|
1073
|
+
# The user's email address.
|
|
1074
|
+
#
|
|
1075
|
+
# @option params [String] :user_type
|
|
1076
|
+
# The user type.
|
|
1077
|
+
#
|
|
1078
|
+
# @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1079
|
+
#
|
|
1080
|
+
# * {Types::CreateUserResponse#user #user} => Types::User
|
|
1081
|
+
#
|
|
1082
|
+
# @example Request syntax with placeholder values
|
|
1083
|
+
#
|
|
1084
|
+
# resp = client.create_user({
|
|
1085
|
+
# account_id: "NonEmptyString", # required
|
|
1086
|
+
# username: "String",
|
|
1087
|
+
# email: "EmailAddress",
|
|
1088
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
1089
|
+
# })
|
|
1090
|
+
#
|
|
1091
|
+
# @example Response structure
|
|
1092
|
+
#
|
|
1093
|
+
# resp.user.user_id #=> String
|
|
1094
|
+
# resp.user.account_id #=> String
|
|
1095
|
+
# resp.user.primary_email #=> String
|
|
1096
|
+
# resp.user.primary_provisioned_number #=> String
|
|
1097
|
+
# resp.user.display_name #=> String
|
|
1098
|
+
# resp.user.license_type #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
1099
|
+
# resp.user.user_type #=> String, one of "PrivateUser", "SharedDevice"
|
|
1100
|
+
# resp.user.user_registration_status #=> String, one of "Unregistered", "Registered", "Suspended"
|
|
1101
|
+
# resp.user.user_invitation_status #=> String, one of "Pending", "Accepted", "Failed"
|
|
1102
|
+
# resp.user.registered_on #=> Time
|
|
1103
|
+
# resp.user.invited_on #=> Time
|
|
1104
|
+
# resp.user.alexa_for_business_metadata.is_alexa_for_business_enabled #=> Boolean
|
|
1105
|
+
# resp.user.alexa_for_business_metadata.alexa_for_business_room_arn #=> String
|
|
1106
|
+
# resp.user.personal_pin #=> String
|
|
1107
|
+
#
|
|
1108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateUser AWS API Documentation
|
|
1109
|
+
#
|
|
1110
|
+
# @overload create_user(params = {})
|
|
1111
|
+
# @param [Hash] params ({})
|
|
1112
|
+
def create_user(params = {}, options = {})
|
|
1113
|
+
req = build_request(:create_user, params)
|
|
1114
|
+
req.send_request(options)
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1024
1117
|
# Creates an Amazon Chime Voice Connector under the administrator's AWS
|
|
1025
1118
|
# account. You can choose to create an Amazon Chime Voice Connector in a
|
|
1026
1119
|
# specific AWS Region.
|
|
@@ -1574,6 +1667,33 @@ module Aws::Chime
|
|
|
1574
1667
|
req.send_request(options)
|
|
1575
1668
|
end
|
|
1576
1669
|
|
|
1670
|
+
# Disassociates the specified sign-in delegate groups from the specified
|
|
1671
|
+
# Amazon Chime account.
|
|
1672
|
+
#
|
|
1673
|
+
# @option params [required, String] :account_id
|
|
1674
|
+
# The Amazon Chime account ID.
|
|
1675
|
+
#
|
|
1676
|
+
# @option params [required, Array<String>] :group_names
|
|
1677
|
+
# The sign-in delegate group names.
|
|
1678
|
+
#
|
|
1679
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1680
|
+
#
|
|
1681
|
+
# @example Request syntax with placeholder values
|
|
1682
|
+
#
|
|
1683
|
+
# resp = client.disassociate_signin_delegate_groups_from_account({
|
|
1684
|
+
# account_id: "NonEmptyString", # required
|
|
1685
|
+
# group_names: ["String"], # required
|
|
1686
|
+
# })
|
|
1687
|
+
#
|
|
1688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DisassociateSigninDelegateGroupsFromAccount AWS API Documentation
|
|
1689
|
+
#
|
|
1690
|
+
# @overload disassociate_signin_delegate_groups_from_account(params = {})
|
|
1691
|
+
# @param [Hash] params ({})
|
|
1692
|
+
def disassociate_signin_delegate_groups_from_account(params = {}, options = {})
|
|
1693
|
+
req = build_request(:disassociate_signin_delegate_groups_from_account, params)
|
|
1694
|
+
req.send_request(options)
|
|
1695
|
+
end
|
|
1696
|
+
|
|
1577
1697
|
# Retrieves details for the specified Amazon Chime account, such as
|
|
1578
1698
|
# account type and supported licenses.
|
|
1579
1699
|
#
|
|
@@ -1600,6 +1720,8 @@ module Aws::Chime
|
|
|
1600
1720
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
1601
1721
|
# resp.account.supported_licenses #=> Array
|
|
1602
1722
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
1723
|
+
# resp.account.signin_delegate_groups #=> Array
|
|
1724
|
+
# resp.account.signin_delegate_groups[0].group_name #=> String
|
|
1603
1725
|
#
|
|
1604
1726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetAccount AWS API Documentation
|
|
1605
1727
|
#
|
|
@@ -1933,7 +2055,7 @@ module Aws::Chime
|
|
|
1933
2055
|
req.send_request(options)
|
|
1934
2056
|
end
|
|
1935
2057
|
|
|
1936
|
-
# Retrieves room details, such as name.
|
|
2058
|
+
# Retrieves room details, such as the room name.
|
|
1937
2059
|
#
|
|
1938
2060
|
# @option params [required, String] :account_id
|
|
1939
2061
|
# The Amazon Chime account ID.
|
|
@@ -2001,10 +2123,13 @@ module Aws::Chime
|
|
|
2001
2123
|
# resp.user.primary_provisioned_number #=> String
|
|
2002
2124
|
# resp.user.display_name #=> String
|
|
2003
2125
|
# resp.user.license_type #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
2126
|
+
# resp.user.user_type #=> String, one of "PrivateUser", "SharedDevice"
|
|
2004
2127
|
# resp.user.user_registration_status #=> String, one of "Unregistered", "Registered", "Suspended"
|
|
2005
2128
|
# resp.user.user_invitation_status #=> String, one of "Pending", "Accepted", "Failed"
|
|
2006
2129
|
# resp.user.registered_on #=> Time
|
|
2007
2130
|
# resp.user.invited_on #=> Time
|
|
2131
|
+
# resp.user.alexa_for_business_metadata.is_alexa_for_business_enabled #=> Boolean
|
|
2132
|
+
# resp.user.alexa_for_business_metadata.alexa_for_business_room_arn #=> String
|
|
2008
2133
|
# resp.user.personal_pin #=> String
|
|
2009
2134
|
#
|
|
2010
2135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetUser AWS API Documentation
|
|
@@ -2294,6 +2419,9 @@ module Aws::Chime
|
|
|
2294
2419
|
# @option params [required, Array<String>] :user_email_list
|
|
2295
2420
|
# The user email addresses to which to send the email invitation.
|
|
2296
2421
|
#
|
|
2422
|
+
# @option params [String] :user_type
|
|
2423
|
+
# The user type.
|
|
2424
|
+
#
|
|
2297
2425
|
# @return [Types::InviteUsersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2298
2426
|
#
|
|
2299
2427
|
# * {Types::InviteUsersResponse#invites #invites} => Array<Types::Invite>
|
|
@@ -2303,6 +2431,7 @@ module Aws::Chime
|
|
|
2303
2431
|
# resp = client.invite_users({
|
|
2304
2432
|
# account_id: "NonEmptyString", # required
|
|
2305
2433
|
# user_email_list: ["EmailAddress"], # required
|
|
2434
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
2306
2435
|
# })
|
|
2307
2436
|
#
|
|
2308
2437
|
# @example Response structure
|
|
@@ -2365,6 +2494,8 @@ module Aws::Chime
|
|
|
2365
2494
|
# resp.accounts[0].default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
2366
2495
|
# resp.accounts[0].supported_licenses #=> Array
|
|
2367
2496
|
# resp.accounts[0].supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
2497
|
+
# resp.accounts[0].signin_delegate_groups #=> Array
|
|
2498
|
+
# resp.accounts[0].signin_delegate_groups[0].group_name #=> String
|
|
2368
2499
|
# resp.next_token #=> String
|
|
2369
2500
|
#
|
|
2370
2501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListAccounts AWS API Documentation
|
|
@@ -2635,8 +2766,8 @@ module Aws::Chime
|
|
|
2635
2766
|
req.send_request(options)
|
|
2636
2767
|
end
|
|
2637
2768
|
|
|
2638
|
-
# Lists the membership details for the specified room, such as
|
|
2639
|
-
# IDs,
|
|
2769
|
+
# Lists the membership details for the specified room, such as the
|
|
2770
|
+
# members' IDs, email addresses, and names.
|
|
2640
2771
|
#
|
|
2641
2772
|
# @option params [required, String] :account_id
|
|
2642
2773
|
# The Amazon Chime account ID.
|
|
@@ -2747,6 +2878,9 @@ module Aws::Chime
|
|
|
2747
2878
|
# @option params [String] :user_email
|
|
2748
2879
|
# Optional. The user email address used to filter results. Maximum 1.
|
|
2749
2880
|
#
|
|
2881
|
+
# @option params [String] :user_type
|
|
2882
|
+
# The user type.
|
|
2883
|
+
#
|
|
2750
2884
|
# @option params [Integer] :max_results
|
|
2751
2885
|
# The maximum number of results to return in a single call. Defaults to
|
|
2752
2886
|
# 100.
|
|
@@ -2764,6 +2898,7 @@ module Aws::Chime
|
|
|
2764
2898
|
# resp = client.list_users({
|
|
2765
2899
|
# account_id: "NonEmptyString", # required
|
|
2766
2900
|
# user_email: "EmailAddress",
|
|
2901
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
2767
2902
|
# max_results: 1,
|
|
2768
2903
|
# next_token: "String",
|
|
2769
2904
|
# })
|
|
@@ -2777,10 +2912,13 @@ module Aws::Chime
|
|
|
2777
2912
|
# resp.users[0].primary_provisioned_number #=> String
|
|
2778
2913
|
# resp.users[0].display_name #=> String
|
|
2779
2914
|
# resp.users[0].license_type #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
2915
|
+
# resp.users[0].user_type #=> String, one of "PrivateUser", "SharedDevice"
|
|
2780
2916
|
# resp.users[0].user_registration_status #=> String, one of "Unregistered", "Registered", "Suspended"
|
|
2781
2917
|
# resp.users[0].user_invitation_status #=> String, one of "Pending", "Accepted", "Failed"
|
|
2782
2918
|
# resp.users[0].registered_on #=> Time
|
|
2783
2919
|
# resp.users[0].invited_on #=> Time
|
|
2920
|
+
# resp.users[0].alexa_for_business_metadata.is_alexa_for_business_enabled #=> Boolean
|
|
2921
|
+
# resp.users[0].alexa_for_business_metadata.alexa_for_business_room_arn #=> String
|
|
2784
2922
|
# resp.users[0].personal_pin #=> String
|
|
2785
2923
|
# resp.next_token #=> String
|
|
2786
2924
|
#
|
|
@@ -3249,10 +3387,13 @@ module Aws::Chime
|
|
|
3249
3387
|
# resp.user.primary_provisioned_number #=> String
|
|
3250
3388
|
# resp.user.display_name #=> String
|
|
3251
3389
|
# resp.user.license_type #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
3390
|
+
# resp.user.user_type #=> String, one of "PrivateUser", "SharedDevice"
|
|
3252
3391
|
# resp.user.user_registration_status #=> String, one of "Unregistered", "Registered", "Suspended"
|
|
3253
3392
|
# resp.user.user_invitation_status #=> String, one of "Pending", "Accepted", "Failed"
|
|
3254
3393
|
# resp.user.registered_on #=> Time
|
|
3255
3394
|
# resp.user.invited_on #=> Time
|
|
3395
|
+
# resp.user.alexa_for_business_metadata.is_alexa_for_business_enabled #=> Boolean
|
|
3396
|
+
# resp.user.alexa_for_business_metadata.alexa_for_business_room_arn #=> String
|
|
3256
3397
|
# resp.user.personal_pin #=> String
|
|
3257
3398
|
#
|
|
3258
3399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ResetPersonalPIN AWS API Documentation
|
|
@@ -3395,6 +3536,8 @@ module Aws::Chime
|
|
|
3395
3536
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
3396
3537
|
# resp.account.supported_licenses #=> Array
|
|
3397
3538
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
3539
|
+
# resp.account.signin_delegate_groups #=> Array
|
|
3540
|
+
# resp.account.signin_delegate_groups[0].group_name #=> String
|
|
3398
3541
|
#
|
|
3399
3542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateAccount AWS API Documentation
|
|
3400
3543
|
#
|
|
@@ -3649,9 +3792,9 @@ module Aws::Chime
|
|
|
3649
3792
|
req.send_request(options)
|
|
3650
3793
|
end
|
|
3651
3794
|
|
|
3652
|
-
# Updates room membership details, such as member role. The member
|
|
3653
|
-
# designates whether the member is a chat room administrator or a
|
|
3654
|
-
# general chat room member.
|
|
3795
|
+
# Updates room membership details, such as the member role. The member
|
|
3796
|
+
# role designates whether the member is a chat room administrator or a
|
|
3797
|
+
# general chat room member. The member role can be updated only for user
|
|
3655
3798
|
# IDs.
|
|
3656
3799
|
#
|
|
3657
3800
|
# @option params [required, String] :account_id
|
|
@@ -3713,6 +3856,12 @@ module Aws::Chime
|
|
|
3713
3856
|
# The user license type to update. This must be a supported license type
|
|
3714
3857
|
# for the Amazon Chime account that the user belongs to.
|
|
3715
3858
|
#
|
|
3859
|
+
# @option params [String] :user_type
|
|
3860
|
+
# The user type.
|
|
3861
|
+
#
|
|
3862
|
+
# @option params [Types::AlexaForBusinessMetadata] :alexa_for_business_metadata
|
|
3863
|
+
# The Alexa for Business metadata.
|
|
3864
|
+
#
|
|
3716
3865
|
# @return [Types::UpdateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3717
3866
|
#
|
|
3718
3867
|
# * {Types::UpdateUserResponse#user #user} => Types::User
|
|
@@ -3723,6 +3872,11 @@ module Aws::Chime
|
|
|
3723
3872
|
# account_id: "NonEmptyString", # required
|
|
3724
3873
|
# user_id: "NonEmptyString", # required
|
|
3725
3874
|
# license_type: "Basic", # accepts Basic, Plus, Pro, ProTrial
|
|
3875
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
3876
|
+
# alexa_for_business_metadata: {
|
|
3877
|
+
# is_alexa_for_business_enabled: false,
|
|
3878
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
3879
|
+
# },
|
|
3726
3880
|
# })
|
|
3727
3881
|
#
|
|
3728
3882
|
# @example Response structure
|
|
@@ -3733,10 +3887,13 @@ module Aws::Chime
|
|
|
3733
3887
|
# resp.user.primary_provisioned_number #=> String
|
|
3734
3888
|
# resp.user.display_name #=> String
|
|
3735
3889
|
# resp.user.license_type #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
|
3890
|
+
# resp.user.user_type #=> String, one of "PrivateUser", "SharedDevice"
|
|
3736
3891
|
# resp.user.user_registration_status #=> String, one of "Unregistered", "Registered", "Suspended"
|
|
3737
3892
|
# resp.user.user_invitation_status #=> String, one of "Pending", "Accepted", "Failed"
|
|
3738
3893
|
# resp.user.registered_on #=> Time
|
|
3739
3894
|
# resp.user.invited_on #=> Time
|
|
3895
|
+
# resp.user.alexa_for_business_metadata.is_alexa_for_business_enabled #=> Boolean
|
|
3896
|
+
# resp.user.alexa_for_business_metadata.alexa_for_business_room_arn #=> String
|
|
3740
3897
|
# resp.user.personal_pin #=> String
|
|
3741
3898
|
#
|
|
3742
3899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateUser AWS API Documentation
|
|
@@ -3889,7 +4046,7 @@ module Aws::Chime
|
|
|
3889
4046
|
params: params,
|
|
3890
4047
|
config: config)
|
|
3891
4048
|
context[:gem_name] = 'aws-sdk-chime'
|
|
3892
|
-
context[:gem_version] = '1.
|
|
4049
|
+
context[:gem_version] = '1.18.0'
|
|
3893
4050
|
Seahorse::Client::Request.new(handlers, context)
|
|
3894
4051
|
end
|
|
3895
4052
|
|
|
@@ -17,6 +17,7 @@ module Aws::Chime
|
|
|
17
17
|
AccountName = Shapes::StringShape.new(name: 'AccountName')
|
|
18
18
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
|
19
19
|
AccountType = Shapes::StringShape.new(name: 'AccountType')
|
|
20
|
+
AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
|
|
20
21
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
21
22
|
AssociatePhoneNumberWithUserRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserRequest')
|
|
22
23
|
AssociatePhoneNumberWithUserResponse = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserResponse')
|
|
@@ -24,6 +25,8 @@ module Aws::Chime
|
|
|
24
25
|
AssociatePhoneNumbersWithVoiceConnectorGroupResponse = Shapes::StructureShape.new(name: 'AssociatePhoneNumbersWithVoiceConnectorGroupResponse')
|
|
25
26
|
AssociatePhoneNumbersWithVoiceConnectorRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumbersWithVoiceConnectorRequest')
|
|
26
27
|
AssociatePhoneNumbersWithVoiceConnectorResponse = Shapes::StructureShape.new(name: 'AssociatePhoneNumbersWithVoiceConnectorResponse')
|
|
28
|
+
AssociateSigninDelegateGroupsWithAccountRequest = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountRequest')
|
|
29
|
+
AssociateSigninDelegateGroupsWithAccountResponse = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountResponse')
|
|
27
30
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
|
28
31
|
AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
|
|
29
32
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
|
@@ -71,6 +74,8 @@ module Aws::Chime
|
|
|
71
74
|
CreateRoomMembershipResponse = Shapes::StructureShape.new(name: 'CreateRoomMembershipResponse')
|
|
72
75
|
CreateRoomRequest = Shapes::StructureShape.new(name: 'CreateRoomRequest')
|
|
73
76
|
CreateRoomResponse = Shapes::StructureShape.new(name: 'CreateRoomResponse')
|
|
77
|
+
CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
|
|
78
|
+
CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
|
|
74
79
|
CreateVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'CreateVoiceConnectorGroupRequest')
|
|
75
80
|
CreateVoiceConnectorGroupResponse = Shapes::StructureShape.new(name: 'CreateVoiceConnectorGroupResponse')
|
|
76
81
|
CreateVoiceConnectorRequest = Shapes::StructureShape.new(name: 'CreateVoiceConnectorRequest')
|
|
@@ -98,6 +103,8 @@ module Aws::Chime
|
|
|
98
103
|
DisassociatePhoneNumbersFromVoiceConnectorGroupResponse = Shapes::StructureShape.new(name: 'DisassociatePhoneNumbersFromVoiceConnectorGroupResponse')
|
|
99
104
|
DisassociatePhoneNumbersFromVoiceConnectorRequest = Shapes::StructureShape.new(name: 'DisassociatePhoneNumbersFromVoiceConnectorRequest')
|
|
100
105
|
DisassociatePhoneNumbersFromVoiceConnectorResponse = Shapes::StructureShape.new(name: 'DisassociatePhoneNumbersFromVoiceConnectorResponse')
|
|
106
|
+
DisassociateSigninDelegateGroupsFromAccountRequest = Shapes::StructureShape.new(name: 'DisassociateSigninDelegateGroupsFromAccountRequest')
|
|
107
|
+
DisassociateSigninDelegateGroupsFromAccountResponse = Shapes::StructureShape.new(name: 'DisassociateSigninDelegateGroupsFromAccountResponse')
|
|
101
108
|
E164PhoneNumber = Shapes::StringShape.new(name: 'E164PhoneNumber')
|
|
102
109
|
E164PhoneNumberList = Shapes::ListShape.new(name: 'E164PhoneNumberList')
|
|
103
110
|
EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
|
|
@@ -252,6 +259,8 @@ module Aws::Chime
|
|
|
252
259
|
SensitiveStringList = Shapes::ListShape.new(name: 'SensitiveStringList')
|
|
253
260
|
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
|
254
261
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
|
262
|
+
SigninDelegateGroup = Shapes::StructureShape.new(name: 'SigninDelegateGroup')
|
|
263
|
+
SigninDelegateGroupList = Shapes::ListShape.new(name: 'SigninDelegateGroupList')
|
|
255
264
|
StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
|
|
256
265
|
String = Shapes::StringShape.new(name: 'String')
|
|
257
266
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
@@ -295,6 +304,7 @@ module Aws::Chime
|
|
|
295
304
|
UserIdList = Shapes::ListShape.new(name: 'UserIdList')
|
|
296
305
|
UserList = Shapes::ListShape.new(name: 'UserList')
|
|
297
306
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
|
307
|
+
UserType = Shapes::StringShape.new(name: 'UserType')
|
|
298
308
|
VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
|
|
299
309
|
VoiceConnectorAwsRegion = Shapes::StringShape.new(name: 'VoiceConnectorAwsRegion')
|
|
300
310
|
VoiceConnectorGroup = Shapes::StructureShape.new(name: 'VoiceConnectorGroup')
|
|
@@ -318,6 +328,7 @@ module Aws::Chime
|
|
|
318
328
|
Account.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
|
319
329
|
Account.add_member(:default_license, Shapes::ShapeRef.new(shape: License, location_name: "DefaultLicense"))
|
|
320
330
|
Account.add_member(:supported_licenses, Shapes::ShapeRef.new(shape: LicenseList, location_name: "SupportedLicenses"))
|
|
331
|
+
Account.add_member(:signin_delegate_groups, Shapes::ShapeRef.new(shape: SigninDelegateGroupList, location_name: "SigninDelegateGroups"))
|
|
321
332
|
Account.struct_class = Types::Account
|
|
322
333
|
|
|
323
334
|
AccountList.member = Shapes::ShapeRef.new(shape: Account)
|
|
@@ -326,6 +337,10 @@ module Aws::Chime
|
|
|
326
337
|
AccountSettings.add_member(:enable_dial_out, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableDialOut"))
|
|
327
338
|
AccountSettings.struct_class = Types::AccountSettings
|
|
328
339
|
|
|
340
|
+
AlexaForBusinessMetadata.add_member(:is_alexa_for_business_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsAlexaForBusinessEnabled"))
|
|
341
|
+
AlexaForBusinessMetadata.add_member(:alexa_for_business_room_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "AlexaForBusinessRoomArn"))
|
|
342
|
+
AlexaForBusinessMetadata.struct_class = Types::AlexaForBusinessMetadata
|
|
343
|
+
|
|
329
344
|
AssociatePhoneNumberWithUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "accountId"))
|
|
330
345
|
AssociatePhoneNumberWithUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "userId"))
|
|
331
346
|
AssociatePhoneNumberWithUserRequest.add_member(:e164_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "E164PhoneNumber"))
|
|
@@ -349,6 +364,12 @@ module Aws::Chime
|
|
|
349
364
|
AssociatePhoneNumbersWithVoiceConnectorResponse.add_member(:phone_number_errors, Shapes::ShapeRef.new(shape: PhoneNumberErrorList, location_name: "PhoneNumberErrors"))
|
|
350
365
|
AssociatePhoneNumbersWithVoiceConnectorResponse.struct_class = Types::AssociatePhoneNumbersWithVoiceConnectorResponse
|
|
351
366
|
|
|
367
|
+
AssociateSigninDelegateGroupsWithAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
368
|
+
AssociateSigninDelegateGroupsWithAccountRequest.add_member(:signin_delegate_groups, Shapes::ShapeRef.new(shape: SigninDelegateGroupList, required: true, location_name: "SigninDelegateGroups"))
|
|
369
|
+
AssociateSigninDelegateGroupsWithAccountRequest.struct_class = Types::AssociateSigninDelegateGroupsWithAccountRequest
|
|
370
|
+
|
|
371
|
+
AssociateSigninDelegateGroupsWithAccountResponse.struct_class = Types::AssociateSigninDelegateGroupsWithAccountResponse
|
|
372
|
+
|
|
352
373
|
Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserIdType, location_name: "ExternalUserId"))
|
|
353
374
|
Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
|
|
354
375
|
Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
|
|
@@ -497,6 +518,15 @@ module Aws::Chime
|
|
|
497
518
|
CreateRoomResponse.add_member(:room, Shapes::ShapeRef.new(shape: Room, location_name: "Room"))
|
|
498
519
|
CreateRoomResponse.struct_class = Types::CreateRoomResponse
|
|
499
520
|
|
|
521
|
+
CreateUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
522
|
+
CreateUserRequest.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
|
|
523
|
+
CreateUserRequest.add_member(:email, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "Email"))
|
|
524
|
+
CreateUserRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location_name: "UserType"))
|
|
525
|
+
CreateUserRequest.struct_class = Types::CreateUserRequest
|
|
526
|
+
|
|
527
|
+
CreateUserResponse.add_member(:user, Shapes::ShapeRef.new(shape: User, location_name: "User"))
|
|
528
|
+
CreateUserResponse.struct_class = Types::CreateUserResponse
|
|
529
|
+
|
|
500
530
|
CreateVoiceConnectorGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorGroupName, required: true, location_name: "Name"))
|
|
501
531
|
CreateVoiceConnectorGroupRequest.add_member(:voice_connector_items, Shapes::ShapeRef.new(shape: VoiceConnectorItemList, location_name: "VoiceConnectorItems"))
|
|
502
532
|
CreateVoiceConnectorGroupRequest.struct_class = Types::CreateVoiceConnectorGroupRequest
|
|
@@ -585,6 +615,12 @@ module Aws::Chime
|
|
|
585
615
|
DisassociatePhoneNumbersFromVoiceConnectorResponse.add_member(:phone_number_errors, Shapes::ShapeRef.new(shape: PhoneNumberErrorList, location_name: "PhoneNumberErrors"))
|
|
586
616
|
DisassociatePhoneNumbersFromVoiceConnectorResponse.struct_class = Types::DisassociatePhoneNumbersFromVoiceConnectorResponse
|
|
587
617
|
|
|
618
|
+
DisassociateSigninDelegateGroupsFromAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
619
|
+
DisassociateSigninDelegateGroupsFromAccountRequest.add_member(:group_names, Shapes::ShapeRef.new(shape: NonEmptyStringList, required: true, location_name: "GroupNames"))
|
|
620
|
+
DisassociateSigninDelegateGroupsFromAccountRequest.struct_class = Types::DisassociateSigninDelegateGroupsFromAccountRequest
|
|
621
|
+
|
|
622
|
+
DisassociateSigninDelegateGroupsFromAccountResponse.struct_class = Types::DisassociateSigninDelegateGroupsFromAccountResponse
|
|
623
|
+
|
|
588
624
|
E164PhoneNumberList.member = Shapes::ShapeRef.new(shape: E164PhoneNumber)
|
|
589
625
|
|
|
590
626
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
|
@@ -728,6 +764,7 @@ module Aws::Chime
|
|
|
728
764
|
|
|
729
765
|
InviteUsersRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
730
766
|
InviteUsersRequest.add_member(:user_email_list, Shapes::ShapeRef.new(shape: UserEmailList, required: true, location_name: "UserEmailList"))
|
|
767
|
+
InviteUsersRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location_name: "UserType"))
|
|
731
768
|
InviteUsersRequest.struct_class = Types::InviteUsersRequest
|
|
732
769
|
|
|
733
770
|
InviteUsersResponse.add_member(:invites, Shapes::ShapeRef.new(shape: InviteList, location_name: "Invites"))
|
|
@@ -813,6 +850,7 @@ module Aws::Chime
|
|
|
813
850
|
|
|
814
851
|
ListUsersRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
815
852
|
ListUsersRequest.add_member(:user_email, Shapes::ShapeRef.new(shape: EmailAddress, location: "querystring", location_name: "user-email"))
|
|
853
|
+
ListUsersRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location: "querystring", location_name: "user-type"))
|
|
816
854
|
ListUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ProfileServiceMaxResults, location: "querystring", location_name: "max-results"))
|
|
817
855
|
ListUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
|
818
856
|
ListUsersRequest.struct_class = Types::ListUsersRequest
|
|
@@ -1070,6 +1108,11 @@ module Aws::Chime
|
|
|
1070
1108
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
1071
1109
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
|
1072
1110
|
|
|
1111
|
+
SigninDelegateGroup.add_member(:group_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "GroupName"))
|
|
1112
|
+
SigninDelegateGroup.struct_class = Types::SigninDelegateGroup
|
|
1113
|
+
|
|
1114
|
+
SigninDelegateGroupList.member = Shapes::ShapeRef.new(shape: SigninDelegateGroup)
|
|
1115
|
+
|
|
1073
1116
|
StreamingConfiguration.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, required: true, location_name: "DataRetentionInHours"))
|
|
1074
1117
|
StreamingConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
|
|
1075
1118
|
StreamingConfiguration.struct_class = Types::StreamingConfiguration
|
|
@@ -1167,10 +1210,14 @@ module Aws::Chime
|
|
|
1167
1210
|
UpdateUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
|
1168
1211
|
UpdateUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "userId"))
|
|
1169
1212
|
UpdateUserRequest.add_member(:license_type, Shapes::ShapeRef.new(shape: License, location_name: "LicenseType"))
|
|
1213
|
+
UpdateUserRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location_name: "UserType"))
|
|
1214
|
+
UpdateUserRequest.add_member(:alexa_for_business_metadata, Shapes::ShapeRef.new(shape: AlexaForBusinessMetadata, location_name: "AlexaForBusinessMetadata"))
|
|
1170
1215
|
UpdateUserRequest.struct_class = Types::UpdateUserRequest
|
|
1171
1216
|
|
|
1172
1217
|
UpdateUserRequestItem.add_member(:user_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "UserId"))
|
|
1173
1218
|
UpdateUserRequestItem.add_member(:license_type, Shapes::ShapeRef.new(shape: License, location_name: "LicenseType"))
|
|
1219
|
+
UpdateUserRequestItem.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location_name: "UserType"))
|
|
1220
|
+
UpdateUserRequestItem.add_member(:alexa_for_business_metadata, Shapes::ShapeRef.new(shape: AlexaForBusinessMetadata, location_name: "AlexaForBusinessMetadata"))
|
|
1174
1221
|
UpdateUserRequestItem.struct_class = Types::UpdateUserRequestItem
|
|
1175
1222
|
|
|
1176
1223
|
UpdateUserRequestItemList.member = Shapes::ShapeRef.new(shape: UpdateUserRequestItem)
|
|
@@ -1205,10 +1252,12 @@ module Aws::Chime
|
|
|
1205
1252
|
User.add_member(:primary_provisioned_number, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "PrimaryProvisionedNumber"))
|
|
1206
1253
|
User.add_member(:display_name, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "DisplayName"))
|
|
1207
1254
|
User.add_member(:license_type, Shapes::ShapeRef.new(shape: License, location_name: "LicenseType"))
|
|
1255
|
+
User.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location_name: "UserType"))
|
|
1208
1256
|
User.add_member(:user_registration_status, Shapes::ShapeRef.new(shape: RegistrationStatus, location_name: "UserRegistrationStatus"))
|
|
1209
1257
|
User.add_member(:user_invitation_status, Shapes::ShapeRef.new(shape: InviteStatus, location_name: "UserInvitationStatus"))
|
|
1210
1258
|
User.add_member(:registered_on, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "RegisteredOn"))
|
|
1211
1259
|
User.add_member(:invited_on, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "InvitedOn"))
|
|
1260
|
+
User.add_member(:alexa_for_business_metadata, Shapes::ShapeRef.new(shape: AlexaForBusinessMetadata, location_name: "AlexaForBusinessMetadata"))
|
|
1212
1261
|
User.add_member(:personal_pin, Shapes::ShapeRef.new(shape: String, location_name: "PersonalPIN"))
|
|
1213
1262
|
User.struct_class = Types::User
|
|
1214
1263
|
|
|
@@ -1321,6 +1370,21 @@ module Aws::Chime
|
|
|
1321
1370
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1322
1371
|
end)
|
|
1323
1372
|
|
|
1373
|
+
api.add_operation(:associate_signin_delegate_groups_with_account, Seahorse::Model::Operation.new.tap do |o|
|
|
1374
|
+
o.name = "AssociateSigninDelegateGroupsWithAccount"
|
|
1375
|
+
o.http_method = "POST"
|
|
1376
|
+
o.http_request_uri = "/accounts/{accountId}?operation=associate-signin-delegate-groups"
|
|
1377
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateSigninDelegateGroupsWithAccountRequest)
|
|
1378
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateSigninDelegateGroupsWithAccountResponse)
|
|
1379
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1380
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1381
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1382
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1383
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1384
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1385
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1386
|
+
end)
|
|
1387
|
+
|
|
1324
1388
|
api.add_operation(:batch_create_attendee, Seahorse::Model::Operation.new.tap do |o|
|
|
1325
1389
|
o.name = "BatchCreateAttendee"
|
|
1326
1390
|
o.http_method = "POST"
|
|
@@ -1347,6 +1411,7 @@ module Aws::Chime
|
|
|
1347
1411
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1348
1412
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1349
1413
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1414
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1350
1415
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1351
1416
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1352
1417
|
end)
|
|
@@ -1470,6 +1535,7 @@ module Aws::Chime
|
|
|
1470
1535
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1471
1536
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
|
1472
1537
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1538
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1473
1539
|
end)
|
|
1474
1540
|
|
|
1475
1541
|
api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1514,6 +1580,7 @@ module Aws::Chime
|
|
|
1514
1580
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1515
1581
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1516
1582
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
|
1583
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1517
1584
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1518
1585
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1519
1586
|
end)
|
|
@@ -1530,6 +1597,23 @@ module Aws::Chime
|
|
|
1530
1597
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1531
1598
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1532
1599
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
|
1600
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1601
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1602
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1603
|
+
end)
|
|
1604
|
+
|
|
1605
|
+
api.add_operation(:create_user, Seahorse::Model::Operation.new.tap do |o|
|
|
1606
|
+
o.name = "CreateUser"
|
|
1607
|
+
o.http_method = "POST"
|
|
1608
|
+
o.http_request_uri = "/accounts/{accountId}/users?operation=create"
|
|
1609
|
+
o.input = Shapes::ShapeRef.new(shape: CreateUserRequest)
|
|
1610
|
+
o.output = Shapes::ShapeRef.new(shape: CreateUserResponse)
|
|
1611
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1612
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1613
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1614
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1615
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1616
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1533
1617
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1534
1618
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1535
1619
|
end)
|
|
@@ -1651,6 +1735,7 @@ module Aws::Chime
|
|
|
1651
1735
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1652
1736
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1653
1737
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1738
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1654
1739
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1655
1740
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1656
1741
|
end)
|
|
@@ -1665,6 +1750,7 @@ module Aws::Chime
|
|
|
1665
1750
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1666
1751
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1667
1752
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1753
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1668
1754
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1669
1755
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1670
1756
|
end)
|
|
@@ -1806,6 +1892,21 @@ module Aws::Chime
|
|
|
1806
1892
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1807
1893
|
end)
|
|
1808
1894
|
|
|
1895
|
+
api.add_operation(:disassociate_signin_delegate_groups_from_account, Seahorse::Model::Operation.new.tap do |o|
|
|
1896
|
+
o.name = "DisassociateSigninDelegateGroupsFromAccount"
|
|
1897
|
+
o.http_method = "POST"
|
|
1898
|
+
o.http_request_uri = "/accounts/{accountId}?operation=disassociate-signin-delegate-groups"
|
|
1899
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateSigninDelegateGroupsFromAccountRequest)
|
|
1900
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateSigninDelegateGroupsFromAccountResponse)
|
|
1901
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1902
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1903
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1904
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1905
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1906
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1907
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1908
|
+
end)
|
|
1909
|
+
|
|
1809
1910
|
api.add_operation(:get_account, Seahorse::Model::Operation.new.tap do |o|
|
|
1810
1911
|
o.name = "GetAccount"
|
|
1811
1912
|
o.http_method = "GET"
|
|
@@ -1863,6 +1964,7 @@ module Aws::Chime
|
|
|
1863
1964
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
1864
1965
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1865
1966
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1967
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1866
1968
|
end)
|
|
1867
1969
|
|
|
1868
1970
|
api.add_operation(:get_events_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1963,6 +2065,7 @@ module Aws::Chime
|
|
|
1963
2065
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
1964
2066
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1965
2067
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2068
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
1966
2069
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1967
2070
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
1968
2071
|
end)
|
|
@@ -2171,6 +2274,7 @@ module Aws::Chime
|
|
|
2171
2274
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2172
2275
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2173
2276
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
2277
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2174
2278
|
o[:pager] = Aws::Pager.new(
|
|
2175
2279
|
limit_key: "max_results",
|
|
2176
2280
|
tokens: {
|
|
@@ -2249,6 +2353,7 @@ module Aws::Chime
|
|
|
2249
2353
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2250
2354
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
2251
2355
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2356
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2252
2357
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2253
2358
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
2254
2359
|
o[:pager] = Aws::Pager.new(
|
|
@@ -2269,6 +2374,7 @@ module Aws::Chime
|
|
|
2269
2374
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2270
2375
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
2271
2376
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2377
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2272
2378
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2273
2379
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
2274
2380
|
o[:pager] = Aws::Pager.new(
|
|
@@ -2473,6 +2579,7 @@ module Aws::Chime
|
|
|
2473
2579
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2474
2580
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2475
2581
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
2582
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2476
2583
|
end)
|
|
2477
2584
|
|
|
2478
2585
|
api.add_operation(:reset_personal_pin, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2564,6 +2671,7 @@ module Aws::Chime
|
|
|
2564
2671
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2565
2672
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2566
2673
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
2674
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2567
2675
|
end)
|
|
2568
2676
|
|
|
2569
2677
|
api.add_operation(:update_global_settings, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2619,6 +2727,7 @@ module Aws::Chime
|
|
|
2619
2727
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
2620
2728
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
2621
2729
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
|
2730
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2622
2731
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2623
2732
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
2624
2733
|
end)
|
|
@@ -2633,6 +2742,7 @@ module Aws::Chime
|
|
|
2633
2742
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
2634
2743
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
2635
2744
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
2745
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
|
2636
2746
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2637
2747
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
|
2638
2748
|
end)
|
data/lib/aws-sdk-chime/types.rb
CHANGED
|
@@ -61,6 +61,10 @@ module Aws::Chime
|
|
|
61
61
|
# Supported licenses for the Amazon Chime account.
|
|
62
62
|
# @return [Array<String>]
|
|
63
63
|
#
|
|
64
|
+
# @!attribute [rw] signin_delegate_groups
|
|
65
|
+
# The sign-in delegate groups associated with the account.
|
|
66
|
+
# @return [Array<Types::SigninDelegateGroup>]
|
|
67
|
+
#
|
|
64
68
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Account AWS API Documentation
|
|
65
69
|
#
|
|
66
70
|
class Account < Struct.new(
|
|
@@ -70,7 +74,8 @@ module Aws::Chime
|
|
|
70
74
|
:account_type,
|
|
71
75
|
:created_timestamp,
|
|
72
76
|
:default_license,
|
|
73
|
-
:supported_licenses
|
|
77
|
+
:supported_licenses,
|
|
78
|
+
:signin_delegate_groups)
|
|
74
79
|
include Aws::Structure
|
|
75
80
|
end
|
|
76
81
|
|
|
@@ -115,6 +120,33 @@ module Aws::Chime
|
|
|
115
120
|
include Aws::Structure
|
|
116
121
|
end
|
|
117
122
|
|
|
123
|
+
# The Alexa for Business metadata associated with an Amazon Chime user,
|
|
124
|
+
# used to integrate Alexa for Business with a device.
|
|
125
|
+
#
|
|
126
|
+
# @note When making an API call, you may pass AlexaForBusinessMetadata
|
|
127
|
+
# data as a hash:
|
|
128
|
+
#
|
|
129
|
+
# {
|
|
130
|
+
# is_alexa_for_business_enabled: false,
|
|
131
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
132
|
+
# }
|
|
133
|
+
#
|
|
134
|
+
# @!attribute [rw] is_alexa_for_business_enabled
|
|
135
|
+
# Starts or stops Alexa for Business.
|
|
136
|
+
# @return [Boolean]
|
|
137
|
+
#
|
|
138
|
+
# @!attribute [rw] alexa_for_business_room_arn
|
|
139
|
+
# The ARN of the room resource.
|
|
140
|
+
# @return [String]
|
|
141
|
+
#
|
|
142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AlexaForBusinessMetadata AWS API Documentation
|
|
143
|
+
#
|
|
144
|
+
class AlexaForBusinessMetadata < Struct.new(
|
|
145
|
+
:is_alexa_for_business_enabled,
|
|
146
|
+
:alexa_for_business_room_arn)
|
|
147
|
+
include Aws::Structure
|
|
148
|
+
end
|
|
149
|
+
|
|
118
150
|
# @note When making an API call, you may pass AssociatePhoneNumberWithUserRequest
|
|
119
151
|
# data as a hash:
|
|
120
152
|
#
|
|
@@ -241,6 +273,38 @@ module Aws::Chime
|
|
|
241
273
|
include Aws::Structure
|
|
242
274
|
end
|
|
243
275
|
|
|
276
|
+
# @note When making an API call, you may pass AssociateSigninDelegateGroupsWithAccountRequest
|
|
277
|
+
# data as a hash:
|
|
278
|
+
#
|
|
279
|
+
# {
|
|
280
|
+
# account_id: "NonEmptyString", # required
|
|
281
|
+
# signin_delegate_groups: [ # required
|
|
282
|
+
# {
|
|
283
|
+
# group_name: "NonEmptyString",
|
|
284
|
+
# },
|
|
285
|
+
# ],
|
|
286
|
+
# }
|
|
287
|
+
#
|
|
288
|
+
# @!attribute [rw] account_id
|
|
289
|
+
# The Amazon Chime account ID.
|
|
290
|
+
# @return [String]
|
|
291
|
+
#
|
|
292
|
+
# @!attribute [rw] signin_delegate_groups
|
|
293
|
+
# The sign-in delegate groups.
|
|
294
|
+
# @return [Array<Types::SigninDelegateGroup>]
|
|
295
|
+
#
|
|
296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AssociateSigninDelegateGroupsWithAccountRequest AWS API Documentation
|
|
297
|
+
#
|
|
298
|
+
class AssociateSigninDelegateGroupsWithAccountRequest < Struct.new(
|
|
299
|
+
:account_id,
|
|
300
|
+
:signin_delegate_groups)
|
|
301
|
+
include Aws::Structure
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AssociateSigninDelegateGroupsWithAccountResponse AWS API Documentation
|
|
305
|
+
#
|
|
306
|
+
class AssociateSigninDelegateGroupsWithAccountResponse < Aws::EmptyStructure; end
|
|
307
|
+
|
|
244
308
|
# An Amazon Chime SDK meeting attendee. Includes a unique `AttendeeId`
|
|
245
309
|
# and `JoinToken`. The `JoinToken` allows a client to authenticate and
|
|
246
310
|
# join as the specified attendee. The `JoinToken` expires when the
|
|
@@ -535,6 +599,11 @@ module Aws::Chime
|
|
|
535
599
|
# {
|
|
536
600
|
# user_id: "NonEmptyString", # required
|
|
537
601
|
# license_type: "Basic", # accepts Basic, Plus, Pro, ProTrial
|
|
602
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
603
|
+
# alexa_for_business_metadata: {
|
|
604
|
+
# is_alexa_for_business_enabled: false,
|
|
605
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
606
|
+
# },
|
|
538
607
|
# },
|
|
539
608
|
# ],
|
|
540
609
|
# }
|
|
@@ -843,7 +912,10 @@ module Aws::Chime
|
|
|
843
912
|
#
|
|
844
913
|
# @!attribute [rw] media_region
|
|
845
914
|
# The Region in which to create the meeting. Available values:
|
|
846
|
-
# `
|
|
915
|
+
# `ap-northeast-1`, `ap-southeast-1`, `ap-southeast-2`,
|
|
916
|
+
# `ca-central-1`, `eu-central-1`, `eu-north-1`, `eu-west-1`,
|
|
917
|
+
# `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
|
|
918
|
+
# `us-west-1`, `us-west-2`.
|
|
847
919
|
# @return [String]
|
|
848
920
|
#
|
|
849
921
|
# @!attribute [rw] notifications_configuration
|
|
@@ -999,6 +1071,53 @@ module Aws::Chime
|
|
|
999
1071
|
include Aws::Structure
|
|
1000
1072
|
end
|
|
1001
1073
|
|
|
1074
|
+
# @note When making an API call, you may pass CreateUserRequest
|
|
1075
|
+
# data as a hash:
|
|
1076
|
+
#
|
|
1077
|
+
# {
|
|
1078
|
+
# account_id: "NonEmptyString", # required
|
|
1079
|
+
# username: "String",
|
|
1080
|
+
# email: "EmailAddress",
|
|
1081
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
1082
|
+
# }
|
|
1083
|
+
#
|
|
1084
|
+
# @!attribute [rw] account_id
|
|
1085
|
+
# The Amazon Chime account ID.
|
|
1086
|
+
# @return [String]
|
|
1087
|
+
#
|
|
1088
|
+
# @!attribute [rw] username
|
|
1089
|
+
# The user name.
|
|
1090
|
+
# @return [String]
|
|
1091
|
+
#
|
|
1092
|
+
# @!attribute [rw] email
|
|
1093
|
+
# The user's email address.
|
|
1094
|
+
# @return [String]
|
|
1095
|
+
#
|
|
1096
|
+
# @!attribute [rw] user_type
|
|
1097
|
+
# The user type.
|
|
1098
|
+
# @return [String]
|
|
1099
|
+
#
|
|
1100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateUserRequest AWS API Documentation
|
|
1101
|
+
#
|
|
1102
|
+
class CreateUserRequest < Struct.new(
|
|
1103
|
+
:account_id,
|
|
1104
|
+
:username,
|
|
1105
|
+
:email,
|
|
1106
|
+
:user_type)
|
|
1107
|
+
include Aws::Structure
|
|
1108
|
+
end
|
|
1109
|
+
|
|
1110
|
+
# @!attribute [rw] user
|
|
1111
|
+
# The user on the Amazon Chime account.
|
|
1112
|
+
# @return [Types::User]
|
|
1113
|
+
#
|
|
1114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateUserResponse AWS API Documentation
|
|
1115
|
+
#
|
|
1116
|
+
class CreateUserResponse < Struct.new(
|
|
1117
|
+
:user)
|
|
1118
|
+
include Aws::Structure
|
|
1119
|
+
end
|
|
1120
|
+
|
|
1002
1121
|
# @note When making an API call, you may pass CreateVoiceConnectorGroupRequest
|
|
1003
1122
|
# data as a hash:
|
|
1004
1123
|
#
|
|
@@ -1488,6 +1607,34 @@ module Aws::Chime
|
|
|
1488
1607
|
include Aws::Structure
|
|
1489
1608
|
end
|
|
1490
1609
|
|
|
1610
|
+
# @note When making an API call, you may pass DisassociateSigninDelegateGroupsFromAccountRequest
|
|
1611
|
+
# data as a hash:
|
|
1612
|
+
#
|
|
1613
|
+
# {
|
|
1614
|
+
# account_id: "NonEmptyString", # required
|
|
1615
|
+
# group_names: ["String"], # required
|
|
1616
|
+
# }
|
|
1617
|
+
#
|
|
1618
|
+
# @!attribute [rw] account_id
|
|
1619
|
+
# The Amazon Chime account ID.
|
|
1620
|
+
# @return [String]
|
|
1621
|
+
#
|
|
1622
|
+
# @!attribute [rw] group_names
|
|
1623
|
+
# The sign-in delegate group names.
|
|
1624
|
+
# @return [Array<String>]
|
|
1625
|
+
#
|
|
1626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DisassociateSigninDelegateGroupsFromAccountRequest AWS API Documentation
|
|
1627
|
+
#
|
|
1628
|
+
class DisassociateSigninDelegateGroupsFromAccountRequest < Struct.new(
|
|
1629
|
+
:account_id,
|
|
1630
|
+
:group_names)
|
|
1631
|
+
include Aws::Structure
|
|
1632
|
+
end
|
|
1633
|
+
|
|
1634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DisassociateSigninDelegateGroupsFromAccountResponse AWS API Documentation
|
|
1635
|
+
#
|
|
1636
|
+
class DisassociateSigninDelegateGroupsFromAccountResponse < Aws::EmptyStructure; end
|
|
1637
|
+
|
|
1491
1638
|
# The configuration that allows a bot to receive outgoing events. Can be
|
|
1492
1639
|
# either an HTTPS endpoint or a Lambda function ARN.
|
|
1493
1640
|
#
|
|
@@ -2155,6 +2302,7 @@ module Aws::Chime
|
|
|
2155
2302
|
# {
|
|
2156
2303
|
# account_id: "NonEmptyString", # required
|
|
2157
2304
|
# user_email_list: ["EmailAddress"], # required
|
|
2305
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
2158
2306
|
# }
|
|
2159
2307
|
#
|
|
2160
2308
|
# @!attribute [rw] account_id
|
|
@@ -2165,11 +2313,16 @@ module Aws::Chime
|
|
|
2165
2313
|
# The user email addresses to which to send the email invitation.
|
|
2166
2314
|
# @return [Array<String>]
|
|
2167
2315
|
#
|
|
2316
|
+
# @!attribute [rw] user_type
|
|
2317
|
+
# The user type.
|
|
2318
|
+
# @return [String]
|
|
2319
|
+
#
|
|
2168
2320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/InviteUsersRequest AWS API Documentation
|
|
2169
2321
|
#
|
|
2170
2322
|
class InviteUsersRequest < Struct.new(
|
|
2171
2323
|
:account_id,
|
|
2172
|
-
:user_email_list
|
|
2324
|
+
:user_email_list,
|
|
2325
|
+
:user_type)
|
|
2173
2326
|
include Aws::Structure
|
|
2174
2327
|
end
|
|
2175
2328
|
|
|
@@ -2584,6 +2737,7 @@ module Aws::Chime
|
|
|
2584
2737
|
# {
|
|
2585
2738
|
# account_id: "NonEmptyString", # required
|
|
2586
2739
|
# user_email: "EmailAddress",
|
|
2740
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
2587
2741
|
# max_results: 1,
|
|
2588
2742
|
# next_token: "String",
|
|
2589
2743
|
# }
|
|
@@ -2596,6 +2750,10 @@ module Aws::Chime
|
|
|
2596
2750
|
# Optional. The user email address used to filter results. Maximum 1.
|
|
2597
2751
|
# @return [String]
|
|
2598
2752
|
#
|
|
2753
|
+
# @!attribute [rw] user_type
|
|
2754
|
+
# The user type.
|
|
2755
|
+
# @return [String]
|
|
2756
|
+
#
|
|
2599
2757
|
# @!attribute [rw] max_results
|
|
2600
2758
|
# The maximum number of results to return in a single call. Defaults
|
|
2601
2759
|
# to 100.
|
|
@@ -2610,6 +2768,7 @@ module Aws::Chime
|
|
|
2610
2768
|
class ListUsersRequest < Struct.new(
|
|
2611
2769
|
:account_id,
|
|
2612
2770
|
:user_email,
|
|
2771
|
+
:user_type,
|
|
2613
2772
|
:max_results,
|
|
2614
2773
|
:next_token)
|
|
2615
2774
|
include Aws::Structure
|
|
@@ -2842,7 +3001,10 @@ module Aws::Chime
|
|
|
2842
3001
|
#
|
|
2843
3002
|
# @!attribute [rw] media_region
|
|
2844
3003
|
# The Region in which to create the meeting. Available values:
|
|
2845
|
-
# `
|
|
3004
|
+
# `ap-northeast-1`, `ap-southeast-1`, `ap-southeast-2`,
|
|
3005
|
+
# `ca-central-1`, `eu-central-1`, `eu-north-1`, `eu-west-1`,
|
|
3006
|
+
# `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
|
|
3007
|
+
# `us-west-1`, `us-west-2`.
|
|
2846
3008
|
# @return [String]
|
|
2847
3009
|
#
|
|
2848
3010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Meeting AWS API Documentation
|
|
@@ -3814,6 +3976,27 @@ module Aws::Chime
|
|
|
3814
3976
|
include Aws::Structure
|
|
3815
3977
|
end
|
|
3816
3978
|
|
|
3979
|
+
# An Active Directory (AD) group whose members are granted permission to
|
|
3980
|
+
# act as delegates.
|
|
3981
|
+
#
|
|
3982
|
+
# @note When making an API call, you may pass SigninDelegateGroup
|
|
3983
|
+
# data as a hash:
|
|
3984
|
+
#
|
|
3985
|
+
# {
|
|
3986
|
+
# group_name: "NonEmptyString",
|
|
3987
|
+
# }
|
|
3988
|
+
#
|
|
3989
|
+
# @!attribute [rw] group_name
|
|
3990
|
+
# The group name.
|
|
3991
|
+
# @return [String]
|
|
3992
|
+
#
|
|
3993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SigninDelegateGroup AWS API Documentation
|
|
3994
|
+
#
|
|
3995
|
+
class SigninDelegateGroup < Struct.new(
|
|
3996
|
+
:group_name)
|
|
3997
|
+
include Aws::Structure
|
|
3998
|
+
end
|
|
3999
|
+
|
|
3817
4000
|
# The streaming configuration associated with an Amazon Chime Voice
|
|
3818
4001
|
# Connector. Specifies whether media streaming is enabled for sending to
|
|
3819
4002
|
# Amazon Kinesis, and shows the retention period for the Amazon Kinesis
|
|
@@ -4315,6 +4498,11 @@ module Aws::Chime
|
|
|
4315
4498
|
# account_id: "NonEmptyString", # required
|
|
4316
4499
|
# user_id: "NonEmptyString", # required
|
|
4317
4500
|
# license_type: "Basic", # accepts Basic, Plus, Pro, ProTrial
|
|
4501
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
4502
|
+
# alexa_for_business_metadata: {
|
|
4503
|
+
# is_alexa_for_business_enabled: false,
|
|
4504
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
4505
|
+
# },
|
|
4318
4506
|
# }
|
|
4319
4507
|
#
|
|
4320
4508
|
# @!attribute [rw] account_id
|
|
@@ -4330,12 +4518,22 @@ module Aws::Chime
|
|
|
4330
4518
|
# type for the Amazon Chime account that the user belongs to.
|
|
4331
4519
|
# @return [String]
|
|
4332
4520
|
#
|
|
4521
|
+
# @!attribute [rw] user_type
|
|
4522
|
+
# The user type.
|
|
4523
|
+
# @return [String]
|
|
4524
|
+
#
|
|
4525
|
+
# @!attribute [rw] alexa_for_business_metadata
|
|
4526
|
+
# The Alexa for Business metadata.
|
|
4527
|
+
# @return [Types::AlexaForBusinessMetadata]
|
|
4528
|
+
#
|
|
4333
4529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateUserRequest AWS API Documentation
|
|
4334
4530
|
#
|
|
4335
4531
|
class UpdateUserRequest < Struct.new(
|
|
4336
4532
|
:account_id,
|
|
4337
4533
|
:user_id,
|
|
4338
|
-
:license_type
|
|
4534
|
+
:license_type,
|
|
4535
|
+
:user_type,
|
|
4536
|
+
:alexa_for_business_metadata)
|
|
4339
4537
|
include Aws::Structure
|
|
4340
4538
|
end
|
|
4341
4539
|
|
|
@@ -4348,6 +4546,11 @@ module Aws::Chime
|
|
|
4348
4546
|
# {
|
|
4349
4547
|
# user_id: "NonEmptyString", # required
|
|
4350
4548
|
# license_type: "Basic", # accepts Basic, Plus, Pro, ProTrial
|
|
4549
|
+
# user_type: "PrivateUser", # accepts PrivateUser, SharedDevice
|
|
4550
|
+
# alexa_for_business_metadata: {
|
|
4551
|
+
# is_alexa_for_business_enabled: false,
|
|
4552
|
+
# alexa_for_business_room_arn: "SensitiveString",
|
|
4553
|
+
# },
|
|
4351
4554
|
# }
|
|
4352
4555
|
#
|
|
4353
4556
|
# @!attribute [rw] user_id
|
|
@@ -4358,11 +4561,21 @@ module Aws::Chime
|
|
|
4358
4561
|
# The user license type.
|
|
4359
4562
|
# @return [String]
|
|
4360
4563
|
#
|
|
4564
|
+
# @!attribute [rw] user_type
|
|
4565
|
+
# The user type.
|
|
4566
|
+
# @return [String]
|
|
4567
|
+
#
|
|
4568
|
+
# @!attribute [rw] alexa_for_business_metadata
|
|
4569
|
+
# The Alexa for Business metadata.
|
|
4570
|
+
# @return [Types::AlexaForBusinessMetadata]
|
|
4571
|
+
#
|
|
4361
4572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateUserRequestItem AWS API Documentation
|
|
4362
4573
|
#
|
|
4363
4574
|
class UpdateUserRequestItem < Struct.new(
|
|
4364
4575
|
:user_id,
|
|
4365
|
-
:license_type
|
|
4576
|
+
:license_type,
|
|
4577
|
+
:user_type,
|
|
4578
|
+
:alexa_for_business_metadata)
|
|
4366
4579
|
include Aws::Structure
|
|
4367
4580
|
end
|
|
4368
4581
|
|
|
@@ -4527,6 +4740,10 @@ module Aws::Chime
|
|
|
4527
4740
|
# The license type for the user.
|
|
4528
4741
|
# @return [String]
|
|
4529
4742
|
#
|
|
4743
|
+
# @!attribute [rw] user_type
|
|
4744
|
+
# The user type.
|
|
4745
|
+
# @return [String]
|
|
4746
|
+
#
|
|
4530
4747
|
# @!attribute [rw] user_registration_status
|
|
4531
4748
|
# The user registration status.
|
|
4532
4749
|
# @return [String]
|
|
@@ -4544,6 +4761,10 @@ module Aws::Chime
|
|
|
4544
4761
|
# in ISO 8601 format.
|
|
4545
4762
|
# @return [Time]
|
|
4546
4763
|
#
|
|
4764
|
+
# @!attribute [rw] alexa_for_business_metadata
|
|
4765
|
+
# The Alexa for Business metadata.
|
|
4766
|
+
# @return [Types::AlexaForBusinessMetadata]
|
|
4767
|
+
#
|
|
4547
4768
|
# @!attribute [rw] personal_pin
|
|
4548
4769
|
# The user's personal meeting PIN.
|
|
4549
4770
|
# @return [String]
|
|
@@ -4557,10 +4778,12 @@ module Aws::Chime
|
|
|
4557
4778
|
:primary_provisioned_number,
|
|
4558
4779
|
:display_name,
|
|
4559
4780
|
:license_type,
|
|
4781
|
+
:user_type,
|
|
4560
4782
|
:user_registration_status,
|
|
4561
4783
|
:user_invitation_status,
|
|
4562
4784
|
:registered_on,
|
|
4563
4785
|
:invited_on,
|
|
4786
|
+
:alexa_for_business_metadata,
|
|
4564
4787
|
:personal_pin)
|
|
4565
4788
|
include Aws::Structure
|
|
4566
4789
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-chime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.18.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: 2020-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|