aws-sdk-chime 1.22.0 → 1.23.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 +5 -5
- data/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +362 -1
- data/lib/aws-sdk-chime/client_api.rb +222 -0
- data/lib/aws-sdk-chime/types.rb +413 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8f65d25ccbb61f0b7ba2e66a3aae6c036fa06d54ea7ab3f1d49e053169991501
|
4
|
+
data.tar.gz: 4cb162ba44b19986951079bb631088653a4ced3f69ffbcd8f2eead3865d1c155
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 595d78c817939e744485c6541e1a1b6502c9ef583c685357d642274ad92f6ea4c905f4ae4b9868d0b80d72a3b748ad242055c3c95897d6f044f46e2f2b2a8a95
|
7
|
+
data.tar.gz: c6ac6921672ba633d02a7b06a1e6f366fca8718194d47d20c37d8b2a4854c8d45bb2d7be7d0b26d589c9cbff93522756776bb0f63b33a773465781f98e3b1ea2
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -481,6 +481,12 @@ module Aws::Chime
|
|
481
481
|
# attendees: [ # required
|
482
482
|
# {
|
483
483
|
# external_user_id: "ExternalUserIdType", # required
|
484
|
+
# tags: [
|
485
|
+
# {
|
486
|
+
# key: "TagKey", # required
|
487
|
+
# value: "TagValue", # required
|
488
|
+
# },
|
489
|
+
# ],
|
484
490
|
# },
|
485
491
|
# ],
|
486
492
|
# })
|
@@ -845,6 +851,9 @@ module Aws::Chime
|
|
845
851
|
# The Amazon Chime SDK external user ID. Links the attendee to an
|
846
852
|
# identity managed by a builder application.
|
847
853
|
#
|
854
|
+
# @option params [Array<Types::Tag>] :tags
|
855
|
+
# The tag key-value pairs.
|
856
|
+
#
|
848
857
|
# @return [Types::CreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
849
858
|
#
|
850
859
|
# * {Types::CreateAttendeeResponse#attendee #attendee} => Types::Attendee
|
@@ -854,6 +863,12 @@ module Aws::Chime
|
|
854
863
|
# resp = client.create_attendee({
|
855
864
|
# meeting_id: "GuidString", # required
|
856
865
|
# external_user_id: "ExternalUserIdType", # required
|
866
|
+
# tags: [
|
867
|
+
# {
|
868
|
+
# key: "TagKey", # required
|
869
|
+
# value: "TagValue", # required
|
870
|
+
# },
|
871
|
+
# ],
|
857
872
|
# })
|
858
873
|
#
|
859
874
|
# @example Response structure
|
@@ -931,6 +946,9 @@ module Aws::Chime
|
|
931
946
|
# **A suitable default value is auto-generated.** You should normally
|
932
947
|
# not need to pass this option.**
|
933
948
|
#
|
949
|
+
# @option params [String] :external_meeting_id
|
950
|
+
# The external meeting ID.
|
951
|
+
#
|
934
952
|
# @option params [String] :meeting_host_id
|
935
953
|
# Reserved.
|
936
954
|
#
|
@@ -940,6 +958,9 @@ module Aws::Chime
|
|
940
958
|
# `eu-central-1`, `eu-north-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`,
|
941
959
|
# `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.
|
942
960
|
#
|
961
|
+
# @option params [Array<Types::Tag>] :tags
|
962
|
+
# The tag key-value pairs.
|
963
|
+
#
|
943
964
|
# @option params [Types::MeetingNotificationConfiguration] :notifications_configuration
|
944
965
|
# The configuration for resource targets to receive notifications when
|
945
966
|
# meeting and attendee events occur.
|
@@ -952,8 +973,15 @@ module Aws::Chime
|
|
952
973
|
#
|
953
974
|
# resp = client.create_meeting({
|
954
975
|
# client_request_token: "ClientRequestToken", # required
|
976
|
+
# external_meeting_id: "ExternalMeetingIdType",
|
955
977
|
# meeting_host_id: "ExternalUserIdType",
|
956
978
|
# media_region: "String",
|
979
|
+
# tags: [
|
980
|
+
# {
|
981
|
+
# key: "TagKey", # required
|
982
|
+
# value: "TagValue", # required
|
983
|
+
# },
|
984
|
+
# ],
|
957
985
|
# notifications_configuration: {
|
958
986
|
# sns_topic_arn: "Arn",
|
959
987
|
# sqs_queue_arn: "Arn",
|
@@ -963,6 +991,7 @@ module Aws::Chime
|
|
963
991
|
# @example Response structure
|
964
992
|
#
|
965
993
|
# resp.meeting.meeting_id #=> String
|
994
|
+
# resp.meeting.external_meeting_id #=> String
|
966
995
|
# resp.meeting.media_placement.audio_host_url #=> String
|
967
996
|
# resp.meeting.media_placement.audio_fallback_url #=> String
|
968
997
|
# resp.meeting.media_placement.screen_data_url #=> String
|
@@ -1023,21 +1052,34 @@ module Aws::Chime
|
|
1023
1052
|
req.send_request(options)
|
1024
1053
|
end
|
1025
1054
|
|
1055
|
+
# Creates a proxy session on the specified Amazon Chime Voice Connector
|
1056
|
+
# for the specified participant phone numbers.
|
1057
|
+
#
|
1026
1058
|
# @option params [required, String] :voice_connector_id
|
1059
|
+
# The Amazon Chime voice connector ID.
|
1027
1060
|
#
|
1028
1061
|
# @option params [required, Array<String>] :participant_phone_numbers
|
1062
|
+
# The participant phone numbers.
|
1029
1063
|
#
|
1030
1064
|
# @option params [String] :name
|
1065
|
+
# The name of the proxy session.
|
1031
1066
|
#
|
1032
1067
|
# @option params [Integer] :expiry_minutes
|
1068
|
+
# The number of minutes allowed for the proxy session.
|
1033
1069
|
#
|
1034
1070
|
# @option params [required, Array<String>] :capabilities
|
1071
|
+
# The proxy session capabilities.
|
1035
1072
|
#
|
1036
1073
|
# @option params [String] :number_selection_behavior
|
1074
|
+
# The preference for proxy phone number reuse, or stickiness, between
|
1075
|
+
# the same participants across sessions.
|
1037
1076
|
#
|
1038
1077
|
# @option params [String] :geo_match_level
|
1078
|
+
# The preference for matching the country or area code of the proxy
|
1079
|
+
# phone number with that of the first participant.
|
1039
1080
|
#
|
1040
1081
|
# @option params [Types::GeoMatchParams] :geo_match_params
|
1082
|
+
# The country and area code for the proxy phone number.
|
1041
1083
|
#
|
1042
1084
|
# @return [Types::CreateProxySessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1043
1085
|
#
|
@@ -1489,9 +1531,14 @@ module Aws::Chime
|
|
1489
1531
|
req.send_request(options)
|
1490
1532
|
end
|
1491
1533
|
|
1534
|
+
# Deletes the specified proxy session from the specified Amazon Chime
|
1535
|
+
# Voice Connector.
|
1536
|
+
#
|
1492
1537
|
# @option params [required, String] :voice_connector_id
|
1538
|
+
# The Amazon Chime voice connector ID.
|
1493
1539
|
#
|
1494
1540
|
# @option params [required, String] :proxy_session_id
|
1541
|
+
# The proxy session ID.
|
1495
1542
|
#
|
1496
1543
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1497
1544
|
#
|
@@ -1639,7 +1686,11 @@ module Aws::Chime
|
|
1639
1686
|
req.send_request(options)
|
1640
1687
|
end
|
1641
1688
|
|
1689
|
+
# Deletes the proxy configuration from the specified Amazon Chime Voice
|
1690
|
+
# Connector.
|
1691
|
+
#
|
1642
1692
|
# @option params [required, String] :voice_connector_id
|
1693
|
+
# The Amazon Chime Voice Connector ID.
|
1643
1694
|
#
|
1644
1695
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1645
1696
|
#
|
@@ -2095,6 +2146,7 @@ module Aws::Chime
|
|
2095
2146
|
# @example Response structure
|
2096
2147
|
#
|
2097
2148
|
# resp.meeting.meeting_id #=> String
|
2149
|
+
# resp.meeting.external_meeting_id #=> String
|
2098
2150
|
# resp.meeting.media_placement.audio_host_url #=> String
|
2099
2151
|
# resp.meeting.media_placement.audio_fallback_url #=> String
|
2100
2152
|
# resp.meeting.media_placement.screen_data_url #=> String
|
@@ -2220,9 +2272,14 @@ module Aws::Chime
|
|
2220
2272
|
req.send_request(options)
|
2221
2273
|
end
|
2222
2274
|
|
2275
|
+
# Gets the specified proxy session details for the specified Amazon
|
2276
|
+
# Chime Voice Connector.
|
2277
|
+
#
|
2223
2278
|
# @option params [required, String] :voice_connector_id
|
2279
|
+
# The Amazon Chime voice connector ID.
|
2224
2280
|
#
|
2225
2281
|
# @option params [required, String] :proxy_session_id
|
2282
|
+
# The proxy session ID.
|
2226
2283
|
#
|
2227
2284
|
# @return [Types::GetProxySessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2228
2285
|
#
|
@@ -2521,7 +2578,11 @@ module Aws::Chime
|
|
2521
2578
|
req.send_request(options)
|
2522
2579
|
end
|
2523
2580
|
|
2581
|
+
# Gets the proxy configuration details for the specified Amazon Chime
|
2582
|
+
# Voice Connector.
|
2583
|
+
#
|
2524
2584
|
# @option params [required, String] :voice_connector_id
|
2585
|
+
# The Amazon Chime voice connector ID.
|
2525
2586
|
#
|
2526
2587
|
# @return [Types::GetVoiceConnectorProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2527
2588
|
#
|
@@ -2748,6 +2809,40 @@ module Aws::Chime
|
|
2748
2809
|
req.send_request(options)
|
2749
2810
|
end
|
2750
2811
|
|
2812
|
+
# Lists the tags applied to an Amazon Chime SDK attendee resource.
|
2813
|
+
#
|
2814
|
+
# @option params [required, String] :meeting_id
|
2815
|
+
# The Amazon Chime SDK meeting ID.
|
2816
|
+
#
|
2817
|
+
# @option params [required, String] :attendee_id
|
2818
|
+
# The Amazon Chime SDK attendee ID.
|
2819
|
+
#
|
2820
|
+
# @return [Types::ListAttendeeTagsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2821
|
+
#
|
2822
|
+
# * {Types::ListAttendeeTagsResponse#tags #tags} => Array<Types::Tag>
|
2823
|
+
#
|
2824
|
+
# @example Request syntax with placeholder values
|
2825
|
+
#
|
2826
|
+
# resp = client.list_attendee_tags({
|
2827
|
+
# meeting_id: "GuidString", # required
|
2828
|
+
# attendee_id: "GuidString", # required
|
2829
|
+
# })
|
2830
|
+
#
|
2831
|
+
# @example Response structure
|
2832
|
+
#
|
2833
|
+
# resp.tags #=> Array
|
2834
|
+
# resp.tags[0].key #=> String
|
2835
|
+
# resp.tags[0].value #=> String
|
2836
|
+
#
|
2837
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListAttendeeTags AWS API Documentation
|
2838
|
+
#
|
2839
|
+
# @overload list_attendee_tags(params = {})
|
2840
|
+
# @param [Hash] params ({})
|
2841
|
+
def list_attendee_tags(params = {}, options = {})
|
2842
|
+
req = build_request(:list_attendee_tags, params)
|
2843
|
+
req.send_request(options)
|
2844
|
+
end
|
2845
|
+
|
2751
2846
|
# Lists the attendees for the specified Amazon Chime SDK meeting. For
|
2752
2847
|
# more information about the Amazon Chime SDK, see [Using the Amazon
|
2753
2848
|
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
@@ -2848,6 +2943,36 @@ module Aws::Chime
|
|
2848
2943
|
req.send_request(options)
|
2849
2944
|
end
|
2850
2945
|
|
2946
|
+
# Lists the tags applied to an Amazon Chime SDK meeting resource.
|
2947
|
+
#
|
2948
|
+
# @option params [required, String] :meeting_id
|
2949
|
+
# The Amazon Chime SDK meeting ID.
|
2950
|
+
#
|
2951
|
+
# @return [Types::ListMeetingTagsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2952
|
+
#
|
2953
|
+
# * {Types::ListMeetingTagsResponse#tags #tags} => Array<Types::Tag>
|
2954
|
+
#
|
2955
|
+
# @example Request syntax with placeholder values
|
2956
|
+
#
|
2957
|
+
# resp = client.list_meeting_tags({
|
2958
|
+
# meeting_id: "GuidString", # required
|
2959
|
+
# })
|
2960
|
+
#
|
2961
|
+
# @example Response structure
|
2962
|
+
#
|
2963
|
+
# resp.tags #=> Array
|
2964
|
+
# resp.tags[0].key #=> String
|
2965
|
+
# resp.tags[0].value #=> String
|
2966
|
+
#
|
2967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMeetingTags AWS API Documentation
|
2968
|
+
#
|
2969
|
+
# @overload list_meeting_tags(params = {})
|
2970
|
+
# @param [Hash] params ({})
|
2971
|
+
def list_meeting_tags(params = {}, options = {})
|
2972
|
+
req = build_request(:list_meeting_tags, params)
|
2973
|
+
req.send_request(options)
|
2974
|
+
end
|
2975
|
+
|
2851
2976
|
# Lists up to 100 active Amazon Chime SDK meetings. For more information
|
2852
2977
|
# about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
|
2853
2978
|
# *Amazon Chime Developer Guide*.
|
@@ -2880,6 +3005,7 @@ module Aws::Chime
|
|
2880
3005
|
#
|
2881
3006
|
# resp.meetings #=> Array
|
2882
3007
|
# resp.meetings[0].meeting_id #=> String
|
3008
|
+
# resp.meetings[0].external_meeting_id #=> String
|
2883
3009
|
# resp.meetings[0].media_placement.audio_host_url #=> String
|
2884
3010
|
# resp.meetings[0].media_placement.audio_fallback_url #=> String
|
2885
3011
|
# resp.meetings[0].media_placement.screen_data_url #=> String
|
@@ -3018,13 +3144,20 @@ module Aws::Chime
|
|
3018
3144
|
req.send_request(options)
|
3019
3145
|
end
|
3020
3146
|
|
3147
|
+
# Lists the proxy sessions for the specified Amazon Chime Voice
|
3148
|
+
# Connector.
|
3149
|
+
#
|
3021
3150
|
# @option params [required, String] :voice_connector_id
|
3151
|
+
# The Amazon Chime voice connector ID.
|
3022
3152
|
#
|
3023
3153
|
# @option params [String] :status
|
3154
|
+
# The proxy session status.
|
3024
3155
|
#
|
3025
3156
|
# @option params [String] :next_token
|
3157
|
+
# The token to use to retrieve the next page of results.
|
3026
3158
|
#
|
3027
3159
|
# @option params [Integer] :max_results
|
3160
|
+
# The maximum number of results to return in a single call.
|
3028
3161
|
#
|
3029
3162
|
# @return [Types::ListProxySessionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3030
3163
|
#
|
@@ -3180,6 +3313,36 @@ module Aws::Chime
|
|
3180
3313
|
req.send_request(options)
|
3181
3314
|
end
|
3182
3315
|
|
3316
|
+
# Lists the tags applied to an Amazon Chime SDK meeting resource.
|
3317
|
+
#
|
3318
|
+
# @option params [required, String] :resource_arn
|
3319
|
+
# The resource ARN.
|
3320
|
+
#
|
3321
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3322
|
+
#
|
3323
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
3324
|
+
#
|
3325
|
+
# @example Request syntax with placeholder values
|
3326
|
+
#
|
3327
|
+
# resp = client.list_tags_for_resource({
|
3328
|
+
# resource_arn: "Arn", # required
|
3329
|
+
# })
|
3330
|
+
#
|
3331
|
+
# @example Response structure
|
3332
|
+
#
|
3333
|
+
# resp.tags #=> Array
|
3334
|
+
# resp.tags[0].key #=> String
|
3335
|
+
# resp.tags[0].value #=> String
|
3336
|
+
#
|
3337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListTagsForResource AWS API Documentation
|
3338
|
+
#
|
3339
|
+
# @overload list_tags_for_resource(params = {})
|
3340
|
+
# @param [Hash] params ({})
|
3341
|
+
def list_tags_for_resource(params = {}, options = {})
|
3342
|
+
req = build_request(:list_tags_for_resource, params)
|
3343
|
+
req.send_request(options)
|
3344
|
+
end
|
3345
|
+
|
3183
3346
|
# Lists the users that belong to the specified Amazon Chime account. You
|
3184
3347
|
# can specify an email address to list only the user that the email
|
3185
3348
|
# address belongs to.
|
@@ -3520,15 +3683,24 @@ module Aws::Chime
|
|
3520
3683
|
req.send_request(options)
|
3521
3684
|
end
|
3522
3685
|
|
3686
|
+
# Puts the specified proxy configuration to the specified Amazon Chime
|
3687
|
+
# Voice Connector.
|
3688
|
+
#
|
3523
3689
|
# @option params [required, String] :voice_connector_id
|
3690
|
+
# The Amazon Chime voice connector ID.
|
3524
3691
|
#
|
3525
3692
|
# @option params [required, Integer] :default_session_expiry_minutes
|
3693
|
+
# The default number of minutes allowed for proxy sessions.
|
3526
3694
|
#
|
3527
3695
|
# @option params [required, Array<String>] :phone_number_pool_countries
|
3696
|
+
# The countries for proxy phone numbers to be selected from.
|
3528
3697
|
#
|
3529
3698
|
# @option params [String] :fall_back_phone_number
|
3699
|
+
# The phone number to route calls to after a proxy session expires.
|
3530
3700
|
#
|
3531
3701
|
# @option params [Boolean] :disabled
|
3702
|
+
# When true, stops proxy sessions from being created on the specified
|
3703
|
+
# Amazon Chime Voice Connector.
|
3532
3704
|
#
|
3533
3705
|
# @return [Types::PutVoiceConnectorProxyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3534
3706
|
#
|
@@ -3865,6 +4037,188 @@ module Aws::Chime
|
|
3865
4037
|
req.send_request(options)
|
3866
4038
|
end
|
3867
4039
|
|
4040
|
+
# Applies the specified tags to the specified Amazon Chime SDK attendee.
|
4041
|
+
#
|
4042
|
+
# @option params [required, String] :meeting_id
|
4043
|
+
# The Amazon Chime SDK meeting ID.
|
4044
|
+
#
|
4045
|
+
# @option params [required, String] :attendee_id
|
4046
|
+
# The Amazon Chime SDK attendee ID.
|
4047
|
+
#
|
4048
|
+
# @option params [required, Array<Types::Tag>] :tags
|
4049
|
+
# The tag key-value pairs.
|
4050
|
+
#
|
4051
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4052
|
+
#
|
4053
|
+
# @example Request syntax with placeholder values
|
4054
|
+
#
|
4055
|
+
# resp = client.tag_attendee({
|
4056
|
+
# meeting_id: "GuidString", # required
|
4057
|
+
# attendee_id: "GuidString", # required
|
4058
|
+
# tags: [ # required
|
4059
|
+
# {
|
4060
|
+
# key: "TagKey", # required
|
4061
|
+
# value: "TagValue", # required
|
4062
|
+
# },
|
4063
|
+
# ],
|
4064
|
+
# })
|
4065
|
+
#
|
4066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagAttendee AWS API Documentation
|
4067
|
+
#
|
4068
|
+
# @overload tag_attendee(params = {})
|
4069
|
+
# @param [Hash] params ({})
|
4070
|
+
def tag_attendee(params = {}, options = {})
|
4071
|
+
req = build_request(:tag_attendee, params)
|
4072
|
+
req.send_request(options)
|
4073
|
+
end
|
4074
|
+
|
4075
|
+
# Applies the specified tags to the specified Amazon Chime SDK meeting.
|
4076
|
+
#
|
4077
|
+
# @option params [required, String] :meeting_id
|
4078
|
+
# The Amazon Chime SDK meeting ID.
|
4079
|
+
#
|
4080
|
+
# @option params [required, Array<Types::Tag>] :tags
|
4081
|
+
# The tag key-value pairs.
|
4082
|
+
#
|
4083
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4084
|
+
#
|
4085
|
+
# @example Request syntax with placeholder values
|
4086
|
+
#
|
4087
|
+
# resp = client.tag_meeting({
|
4088
|
+
# meeting_id: "GuidString", # required
|
4089
|
+
# tags: [ # required
|
4090
|
+
# {
|
4091
|
+
# key: "TagKey", # required
|
4092
|
+
# value: "TagValue", # required
|
4093
|
+
# },
|
4094
|
+
# ],
|
4095
|
+
# })
|
4096
|
+
#
|
4097
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagMeeting AWS API Documentation
|
4098
|
+
#
|
4099
|
+
# @overload tag_meeting(params = {})
|
4100
|
+
# @param [Hash] params ({})
|
4101
|
+
def tag_meeting(params = {}, options = {})
|
4102
|
+
req = build_request(:tag_meeting, params)
|
4103
|
+
req.send_request(options)
|
4104
|
+
end
|
4105
|
+
|
4106
|
+
# Applies the specified tags to the specified Amazon Chime SDK meeting
|
4107
|
+
# resource.
|
4108
|
+
#
|
4109
|
+
# @option params [required, String] :resource_arn
|
4110
|
+
# The resource ARN.
|
4111
|
+
#
|
4112
|
+
# @option params [required, Array<Types::Tag>] :tags
|
4113
|
+
# The tag key-value pairs.
|
4114
|
+
#
|
4115
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4116
|
+
#
|
4117
|
+
# @example Request syntax with placeholder values
|
4118
|
+
#
|
4119
|
+
# resp = client.tag_resource({
|
4120
|
+
# resource_arn: "Arn", # required
|
4121
|
+
# tags: [ # required
|
4122
|
+
# {
|
4123
|
+
# key: "TagKey", # required
|
4124
|
+
# value: "TagValue", # required
|
4125
|
+
# },
|
4126
|
+
# ],
|
4127
|
+
# })
|
4128
|
+
#
|
4129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagResource AWS API Documentation
|
4130
|
+
#
|
4131
|
+
# @overload tag_resource(params = {})
|
4132
|
+
# @param [Hash] params ({})
|
4133
|
+
def tag_resource(params = {}, options = {})
|
4134
|
+
req = build_request(:tag_resource, params)
|
4135
|
+
req.send_request(options)
|
4136
|
+
end
|
4137
|
+
|
4138
|
+
# Untags the specified tags from the specified Amazon Chime SDK
|
4139
|
+
# attendee.
|
4140
|
+
#
|
4141
|
+
# @option params [required, String] :meeting_id
|
4142
|
+
# The Amazon Chime SDK meeting ID.
|
4143
|
+
#
|
4144
|
+
# @option params [required, String] :attendee_id
|
4145
|
+
# The Amazon Chime SDK attendee ID.
|
4146
|
+
#
|
4147
|
+
# @option params [required, Array<String>] :tag_keys
|
4148
|
+
# The tag keys.
|
4149
|
+
#
|
4150
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4151
|
+
#
|
4152
|
+
# @example Request syntax with placeholder values
|
4153
|
+
#
|
4154
|
+
# resp = client.untag_attendee({
|
4155
|
+
# meeting_id: "GuidString", # required
|
4156
|
+
# attendee_id: "GuidString", # required
|
4157
|
+
# tag_keys: ["TagKey"], # required
|
4158
|
+
# })
|
4159
|
+
#
|
4160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagAttendee AWS API Documentation
|
4161
|
+
#
|
4162
|
+
# @overload untag_attendee(params = {})
|
4163
|
+
# @param [Hash] params ({})
|
4164
|
+
def untag_attendee(params = {}, options = {})
|
4165
|
+
req = build_request(:untag_attendee, params)
|
4166
|
+
req.send_request(options)
|
4167
|
+
end
|
4168
|
+
|
4169
|
+
# Untags the specified tags from the specified Amazon Chime SDK meeting.
|
4170
|
+
#
|
4171
|
+
# @option params [required, String] :meeting_id
|
4172
|
+
# The Amazon Chime SDK meeting ID.
|
4173
|
+
#
|
4174
|
+
# @option params [required, Array<String>] :tag_keys
|
4175
|
+
# The tag keys.
|
4176
|
+
#
|
4177
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4178
|
+
#
|
4179
|
+
# @example Request syntax with placeholder values
|
4180
|
+
#
|
4181
|
+
# resp = client.untag_meeting({
|
4182
|
+
# meeting_id: "GuidString", # required
|
4183
|
+
# tag_keys: ["TagKey"], # required
|
4184
|
+
# })
|
4185
|
+
#
|
4186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagMeeting AWS API Documentation
|
4187
|
+
#
|
4188
|
+
# @overload untag_meeting(params = {})
|
4189
|
+
# @param [Hash] params ({})
|
4190
|
+
def untag_meeting(params = {}, options = {})
|
4191
|
+
req = build_request(:untag_meeting, params)
|
4192
|
+
req.send_request(options)
|
4193
|
+
end
|
4194
|
+
|
4195
|
+
# Untags the specified tags from the specified Amazon Chime SDK meeting
|
4196
|
+
# resource.
|
4197
|
+
#
|
4198
|
+
# @option params [required, String] :resource_arn
|
4199
|
+
# The resource ARN.
|
4200
|
+
#
|
4201
|
+
# @option params [required, Array<String>] :tag_keys
|
4202
|
+
# The tag keys.
|
4203
|
+
#
|
4204
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4205
|
+
#
|
4206
|
+
# @example Request syntax with placeholder values
|
4207
|
+
#
|
4208
|
+
# resp = client.untag_resource({
|
4209
|
+
# resource_arn: "Arn", # required
|
4210
|
+
# tag_keys: ["TagKey"], # required
|
4211
|
+
# })
|
4212
|
+
#
|
4213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagResource AWS API Documentation
|
4214
|
+
#
|
4215
|
+
# @overload untag_resource(params = {})
|
4216
|
+
# @param [Hash] params ({})
|
4217
|
+
def untag_resource(params = {}, options = {})
|
4218
|
+
req = build_request(:untag_resource, params)
|
4219
|
+
req.send_request(options)
|
4220
|
+
end
|
4221
|
+
|
3868
4222
|
# Updates account details for the specified Amazon Chime account.
|
3869
4223
|
# Currently, only account name updates are supported for this action.
|
3870
4224
|
#
|
@@ -4110,13 +4464,20 @@ module Aws::Chime
|
|
4110
4464
|
req.send_request(options)
|
4111
4465
|
end
|
4112
4466
|
|
4467
|
+
# Updates the specified proxy session details, such as voice or SMS
|
4468
|
+
# capabilities.
|
4469
|
+
#
|
4113
4470
|
# @option params [required, String] :voice_connector_id
|
4471
|
+
# The Amazon Chime voice connector ID.
|
4114
4472
|
#
|
4115
4473
|
# @option params [required, String] :proxy_session_id
|
4474
|
+
# The proxy session ID.
|
4116
4475
|
#
|
4117
4476
|
# @option params [required, Array<String>] :capabilities
|
4477
|
+
# The proxy session capabilities.
|
4118
4478
|
#
|
4119
4479
|
# @option params [Integer] :expiry_minutes
|
4480
|
+
# The number of minutes allowed for the proxy session.
|
4120
4481
|
#
|
4121
4482
|
# @return [Types::UpdateProxySessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4122
4483
|
#
|
@@ -4456,7 +4817,7 @@ module Aws::Chime
|
|
4456
4817
|
params: params,
|
4457
4818
|
config: config)
|
4458
4819
|
context[:gem_name] = 'aws-sdk-chime'
|
4459
|
-
context[:gem_version] = '1.
|
4820
|
+
context[:gem_version] = '1.23.0'
|
4460
4821
|
Seahorse::Client::Request.new(handlers, context)
|
4461
4822
|
end
|
4462
4823
|
|