aws-sdk-chimesdkmeetings 1.13.0 → 1.15.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +200 -3
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +85 -0
- data/lib/aws-sdk-chimesdkmeetings/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-chimesdkmeetings/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-chimesdkmeetings/endpoints.rb +239 -0
- data/lib/aws-sdk-chimesdkmeetings/errors.rb +62 -0
- data/lib/aws-sdk-chimesdkmeetings/plugins/endpoints.rb +100 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +257 -3
- data/lib/aws-sdk-chimesdkmeetings.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9315723015fee5606be455a2aa3e7bf22dbcc3e35140e383c151b6107d4e6031
|
4
|
+
data.tar.gz: 52df61ef13c7ca3e22d09b1b297b95701d510dfe8d42d6ac513302850a19fd3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac0cc9b1476b90a7389186d81e43f76178b70bbd69b29316051f8c1cc37dcb116616c5cc40ec39fdd679e392d078d757e29fb626b906e925e691c618a43a0bc5
|
7
|
+
data.tar.gz: c33d27a538d3a7cf5f544db81bbfcb1c0465e460a4300a84ce916a3cf8623a062b9587eadfb6dda8027a308de6133a8a9c07356cdfe3ed9b19ef89f9144efbb8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.14.0 (2022-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for Tags on Amazon Chime SDK WebRTC sessions
|
13
|
+
|
4
14
|
1.13.0 (2022-07-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:chimesdkmeetings)
|
@@ -79,8 +79,9 @@ module Aws::ChimeSDKMeetings
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::ChimeSDKMeetings::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::ChimeSDKMeetings
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::ChimeSDKMeetings
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::ChimeSDKMeetings::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ChimeSDKMeetings::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -609,6 +626,58 @@ module Aws::ChimeSDKMeetings
|
|
609
626
|
# A consistent and opaque identifier, created and maintained by the
|
610
627
|
# builder to represent a segment of their users.
|
611
628
|
#
|
629
|
+
# @option params [Array<Types::Tag>] :tags
|
630
|
+
# Applies one or more tags to an Amazon Chime SDK meeting. Note the
|
631
|
+
# following:
|
632
|
+
#
|
633
|
+
# * Not all resources have tags. For a list of services with resources
|
634
|
+
# that support tagging using this operation, see [Services that
|
635
|
+
# support the Resource Groups Tagging API][1]. If the resource
|
636
|
+
# doesn't yet support this operation, the resource's service might
|
637
|
+
# support tagging using its own API operations. For more information,
|
638
|
+
# refer to the documentation for that service.
|
639
|
+
#
|
640
|
+
# * Each resource can have up to 50 tags. For other limits, see [Tag
|
641
|
+
# Naming and Usage Conventions][2] in the *AWS General Reference*.
|
642
|
+
#
|
643
|
+
# * You can only tag resources that are located in the specified AWS
|
644
|
+
# Region for the AWS account.
|
645
|
+
#
|
646
|
+
# * To add tags to a resource, you need the necessary permissions for
|
647
|
+
# the service that the resource belongs to as well as permissions for
|
648
|
+
# adding tags. For more information, see the documentation for each
|
649
|
+
# service.
|
650
|
+
#
|
651
|
+
# Do not store personally identifiable information (PII) or other
|
652
|
+
# confidential or sensitive information in tags. We use tags to provide
|
653
|
+
# you with billing and administration services. Tags are not intended to
|
654
|
+
# be used for private or sensitive data.
|
655
|
+
#
|
656
|
+
# **Minimum permissions**
|
657
|
+
#
|
658
|
+
# In addition to the `tag:TagResources `permission required by this
|
659
|
+
# operation, you must also have the tagging permission defined by the
|
660
|
+
# service that created the resource. For example, to tag a
|
661
|
+
# `ChimeSDKMeetings` instance using the `TagResources` operation, you
|
662
|
+
# must have both of the following permissions:
|
663
|
+
#
|
664
|
+
# `tag:TagResources`
|
665
|
+
#
|
666
|
+
# `ChimeSDKMeetings:CreateTags`
|
667
|
+
#
|
668
|
+
# <note markdown="1"> Some services might have specific requirements for tagging some
|
669
|
+
# resources. For example, to tag an Amazon S3 bucket, you must also have
|
670
|
+
# the `s3:GetBucketTagging` permission. If the expected minimum
|
671
|
+
# permissions don't work, check the documentation for that service's
|
672
|
+
# tagging APIs for more information.
|
673
|
+
#
|
674
|
+
# </note>
|
675
|
+
#
|
676
|
+
#
|
677
|
+
#
|
678
|
+
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html
|
679
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
680
|
+
#
|
612
681
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
613
682
|
#
|
614
683
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -632,6 +701,12 @@ module Aws::ChimeSDKMeetings
|
|
632
701
|
# },
|
633
702
|
# primary_meeting_id: "PrimaryMeetingId",
|
634
703
|
# tenant_ids: ["TenantId"],
|
704
|
+
# tags: [
|
705
|
+
# {
|
706
|
+
# key: "TagKey", # required
|
707
|
+
# value: "TagValue", # required
|
708
|
+
# },
|
709
|
+
# ],
|
635
710
|
# })
|
636
711
|
#
|
637
712
|
# @example Response structure
|
@@ -652,6 +727,7 @@ module Aws::ChimeSDKMeetings
|
|
652
727
|
# resp.meeting.primary_meeting_id #=> String
|
653
728
|
# resp.meeting.tenant_ids #=> Array
|
654
729
|
# resp.meeting.tenant_ids[0] #=> String
|
730
|
+
# resp.meeting.meeting_arn #=> String
|
655
731
|
#
|
656
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
|
657
733
|
#
|
@@ -717,6 +793,9 @@ module Aws::ChimeSDKMeetings
|
|
717
793
|
# A consistent and opaque identifier, created and maintained by the
|
718
794
|
# builder to represent a segment of their users.
|
719
795
|
#
|
796
|
+
# @option params [Array<Types::Tag>] :tags
|
797
|
+
# The tags in the request.
|
798
|
+
#
|
720
799
|
# @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
721
800
|
#
|
722
801
|
# * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
|
@@ -752,6 +831,12 @@ module Aws::ChimeSDKMeetings
|
|
752
831
|
# ],
|
753
832
|
# primary_meeting_id: "PrimaryMeetingId",
|
754
833
|
# tenant_ids: ["TenantId"],
|
834
|
+
# tags: [
|
835
|
+
# {
|
836
|
+
# key: "TagKey", # required
|
837
|
+
# value: "TagValue", # required
|
838
|
+
# },
|
839
|
+
# ],
|
755
840
|
# })
|
756
841
|
#
|
757
842
|
# @example Response structure
|
@@ -772,6 +857,7 @@ module Aws::ChimeSDKMeetings
|
|
772
857
|
# resp.meeting.primary_meeting_id #=> String
|
773
858
|
# resp.meeting.tenant_ids #=> Array
|
774
859
|
# resp.meeting.tenant_ids[0] #=> String
|
860
|
+
# resp.meeting.meeting_arn #=> String
|
775
861
|
# resp.attendees #=> Array
|
776
862
|
# resp.attendees[0].external_user_id #=> String
|
777
863
|
# resp.attendees[0].attendee_id #=> String
|
@@ -939,6 +1025,7 @@ module Aws::ChimeSDKMeetings
|
|
939
1025
|
# resp.meeting.primary_meeting_id #=> String
|
940
1026
|
# resp.meeting.tenant_ids #=> Array
|
941
1027
|
# resp.meeting.tenant_ids[0] #=> String
|
1028
|
+
# resp.meeting.meeting_arn #=> String
|
942
1029
|
#
|
943
1030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
|
944
1031
|
#
|
@@ -1001,6 +1088,36 @@ module Aws::ChimeSDKMeetings
|
|
1001
1088
|
req.send_request(options)
|
1002
1089
|
end
|
1003
1090
|
|
1091
|
+
# Returns a list of the tags available for the specified resource.
|
1092
|
+
#
|
1093
|
+
# @option params [required, String] :resource_arn
|
1094
|
+
# The ARN of the resource.
|
1095
|
+
#
|
1096
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1097
|
+
#
|
1098
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
1099
|
+
#
|
1100
|
+
# @example Request syntax with placeholder values
|
1101
|
+
#
|
1102
|
+
# resp = client.list_tags_for_resource({
|
1103
|
+
# resource_arn: "AmazonResourceName", # required
|
1104
|
+
# })
|
1105
|
+
#
|
1106
|
+
# @example Response structure
|
1107
|
+
#
|
1108
|
+
# resp.tags #=> Array
|
1109
|
+
# resp.tags[0].key #=> String
|
1110
|
+
# resp.tags[0].value #=> String
|
1111
|
+
#
|
1112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResource AWS API Documentation
|
1113
|
+
#
|
1114
|
+
# @overload list_tags_for_resource(params = {})
|
1115
|
+
# @param [Hash] params ({})
|
1116
|
+
def list_tags_for_resource(params = {}, options = {})
|
1117
|
+
req = build_request(:list_tags_for_resource, params)
|
1118
|
+
req.send_request(options)
|
1119
|
+
end
|
1120
|
+
|
1004
1121
|
# Starts transcription for the specified `meetingId`.
|
1005
1122
|
#
|
1006
1123
|
# @option params [required, String] :meeting_id
|
@@ -1076,6 +1193,86 @@ module Aws::ChimeSDKMeetings
|
|
1076
1193
|
req.send_request(options)
|
1077
1194
|
end
|
1078
1195
|
|
1196
|
+
# The resource that supports tags.
|
1197
|
+
#
|
1198
|
+
# @option params [required, String] :resource_arn
|
1199
|
+
# The ARN of the resource.
|
1200
|
+
#
|
1201
|
+
# @option params [required, Array<Types::Tag>] :tags
|
1202
|
+
# Lists the requested tags.
|
1203
|
+
#
|
1204
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1205
|
+
#
|
1206
|
+
# @example Request syntax with placeholder values
|
1207
|
+
#
|
1208
|
+
# resp = client.tag_resource({
|
1209
|
+
# resource_arn: "AmazonResourceName", # required
|
1210
|
+
# tags: [ # required
|
1211
|
+
# {
|
1212
|
+
# key: "TagKey", # required
|
1213
|
+
# value: "TagValue", # required
|
1214
|
+
# },
|
1215
|
+
# ],
|
1216
|
+
# })
|
1217
|
+
#
|
1218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResource AWS API Documentation
|
1219
|
+
#
|
1220
|
+
# @overload tag_resource(params = {})
|
1221
|
+
# @param [Hash] params ({})
|
1222
|
+
def tag_resource(params = {}, options = {})
|
1223
|
+
req = build_request(:tag_resource, params)
|
1224
|
+
req.send_request(options)
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# Removes the specified tags from the specified resources. When you
|
1228
|
+
# specify a tag key, the action removes both that key and its associated
|
1229
|
+
# value. The operation succeeds even if you attempt to remove tags from
|
1230
|
+
# a resource that were already removed. Note the following:
|
1231
|
+
#
|
1232
|
+
# * To remove tags from a resource, you need the necessary permissions
|
1233
|
+
# for the service that the resource belongs to as well as permissions
|
1234
|
+
# for removing tags. For more information, see the documentation for
|
1235
|
+
# the service whose resource you want to untag.
|
1236
|
+
#
|
1237
|
+
# * You can only tag resources that are located in the specified AWS
|
1238
|
+
# Region for the calling AWS account.
|
1239
|
+
#
|
1240
|
+
# **Minimum permissions**
|
1241
|
+
#
|
1242
|
+
# In addition to the `tag:UntagResources` permission required by this
|
1243
|
+
# operation, you must also have the remove tags permission defined by
|
1244
|
+
# the service that created the resource. For example, to remove the tags
|
1245
|
+
# from an Amazon EC2 instance using the `UntagResources` operation, you
|
1246
|
+
# must have both of the following permissions:
|
1247
|
+
#
|
1248
|
+
# `tag:UntagResource`
|
1249
|
+
#
|
1250
|
+
# `ChimeSDKMeetings:DeleteTags`
|
1251
|
+
#
|
1252
|
+
# @option params [required, String] :resource_arn
|
1253
|
+
# The ARN of the resource that you're removing tags from.
|
1254
|
+
#
|
1255
|
+
# @option params [required, Array<String>] :tag_keys
|
1256
|
+
# The tag keys being removed from the resources.
|
1257
|
+
#
|
1258
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1259
|
+
#
|
1260
|
+
# @example Request syntax with placeholder values
|
1261
|
+
#
|
1262
|
+
# resp = client.untag_resource({
|
1263
|
+
# resource_arn: "AmazonResourceName", # required
|
1264
|
+
# tag_keys: ["TagKey"], # required
|
1265
|
+
# })
|
1266
|
+
#
|
1267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResource AWS API Documentation
|
1268
|
+
#
|
1269
|
+
# @overload untag_resource(params = {})
|
1270
|
+
# @param [Hash] params ({})
|
1271
|
+
def untag_resource(params = {}, options = {})
|
1272
|
+
req = build_request(:untag_resource, params)
|
1273
|
+
req.send_request(options)
|
1274
|
+
end
|
1275
|
+
|
1079
1276
|
# The capabilties that you want to update.
|
1080
1277
|
#
|
1081
1278
|
# <note markdown="1"> You use the capabilities with a set of values that control what the
|
@@ -1160,7 +1357,7 @@ module Aws::ChimeSDKMeetings
|
|
1160
1357
|
params: params,
|
1161
1358
|
config: config)
|
1162
1359
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
1163
|
-
context[:gem_version] = '1.
|
1360
|
+
context[:gem_version] = '1.15.0'
|
1164
1361
|
Seahorse::Client::Request.new(handlers, context)
|
1165
1362
|
end
|
1166
1363
|
|
@@ -13,6 +13,7 @@ module Aws::ChimeSDKMeetings
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
16
17
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
17
18
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
18
19
|
AttendeeCapabilities = Shapes::StructureShape.new(name: 'AttendeeCapabilities')
|
@@ -54,6 +55,8 @@ module Aws::ChimeSDKMeetings
|
|
54
55
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
55
56
|
ListAttendeesRequest = Shapes::StructureShape.new(name: 'ListAttendeesRequest')
|
56
57
|
ListAttendeesResponse = Shapes::StructureShape.new(name: 'ListAttendeesResponse')
|
58
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
59
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
57
60
|
MediaCapabilities = Shapes::StringShape.new(name: 'MediaCapabilities')
|
58
61
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
59
62
|
MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
|
@@ -63,6 +66,7 @@ module Aws::ChimeSDKMeetings
|
|
63
66
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
64
67
|
NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
|
65
68
|
PrimaryMeetingId = Shapes::StringShape.new(name: 'PrimaryMeetingId')
|
69
|
+
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
66
70
|
ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
|
67
71
|
RetryAfterSeconds = Shapes::StringShape.new(name: 'RetryAfterSeconds')
|
68
72
|
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
@@ -70,9 +74,17 @@ module Aws::ChimeSDKMeetings
|
|
70
74
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
71
75
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
72
76
|
String = Shapes::StringShape.new(name: 'String')
|
77
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
78
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
79
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
80
|
+
TagList = Shapes::ListShape.new(name: 'TagList')
|
81
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
82
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
83
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
73
84
|
TenantId = Shapes::StringShape.new(name: 'TenantId')
|
74
85
|
TenantIdList = Shapes::ListShape.new(name: 'TenantIdList')
|
75
86
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
87
|
+
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
76
88
|
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
77
89
|
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
78
90
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
@@ -90,6 +102,8 @@ module Aws::ChimeSDKMeetings
|
|
90
102
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
91
103
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
92
104
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
105
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
106
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
93
107
|
UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
|
94
108
|
UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
|
95
109
|
|
@@ -166,6 +180,7 @@ module Aws::ChimeSDKMeetings
|
|
166
180
|
CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
167
181
|
CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
168
182
|
CreateMeetingRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
183
|
+
CreateMeetingRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
169
184
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
170
185
|
|
171
186
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -180,6 +195,7 @@ module Aws::ChimeSDKMeetings
|
|
180
195
|
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
|
181
196
|
CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
182
197
|
CreateMeetingWithAttendeesRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
198
|
+
CreateMeetingWithAttendeesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
183
199
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
184
200
|
|
185
201
|
CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -252,6 +268,12 @@ module Aws::ChimeSDKMeetings
|
|
252
268
|
ListAttendeesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
253
269
|
ListAttendeesResponse.struct_class = Types::ListAttendeesResponse
|
254
270
|
|
271
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "arn"))
|
272
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
273
|
+
|
274
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
275
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
276
|
+
|
255
277
|
MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioHostUrl"))
|
256
278
|
MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioFallbackUrl"))
|
257
279
|
MediaPlacement.add_member(:signaling_url, Shapes::ShapeRef.new(shape: String, location_name: "SignalingUrl"))
|
@@ -270,6 +292,7 @@ module Aws::ChimeSDKMeetings
|
|
270
292
|
Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
271
293
|
Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
272
294
|
Meeting.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
295
|
+
Meeting.add_member(:meeting_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "MeetingArn"))
|
273
296
|
Meeting.struct_class = Types::Meeting
|
274
297
|
|
275
298
|
MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
|
@@ -285,6 +308,12 @@ module Aws::ChimeSDKMeetings
|
|
285
308
|
NotificationsConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
|
286
309
|
NotificationsConfiguration.struct_class = Types::NotificationsConfiguration
|
287
310
|
|
311
|
+
ResourceNotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
312
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
313
|
+
ResourceNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
314
|
+
ResourceNotFoundException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
|
315
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
316
|
+
|
288
317
|
ServiceFailureException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
289
318
|
ServiceFailureException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
290
319
|
ServiceFailureException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -303,6 +332,20 @@ module Aws::ChimeSDKMeetings
|
|
303
332
|
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
304
333
|
StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
|
305
334
|
|
335
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
336
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
337
|
+
Tag.struct_class = Types::Tag
|
338
|
+
|
339
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
340
|
+
|
341
|
+
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
342
|
+
|
343
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
344
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
345
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
346
|
+
|
347
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
348
|
+
|
306
349
|
TenantIdList.member = Shapes::ShapeRef.new(shape: TenantId)
|
307
350
|
|
308
351
|
ThrottlingException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
@@ -310,6 +353,12 @@ module Aws::ChimeSDKMeetings
|
|
310
353
|
ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
311
354
|
ThrottlingException.struct_class = Types::ThrottlingException
|
312
355
|
|
356
|
+
TooManyTagsException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
357
|
+
TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
358
|
+
TooManyTagsException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
359
|
+
TooManyTagsException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
|
360
|
+
TooManyTagsException.struct_class = Types::TooManyTagsException
|
361
|
+
|
313
362
|
TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
|
314
363
|
TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
|
315
364
|
TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
|
@@ -324,6 +373,12 @@ module Aws::ChimeSDKMeetings
|
|
324
373
|
UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
325
374
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
326
375
|
|
376
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
377
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
378
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
379
|
+
|
380
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
381
|
+
|
327
382
|
UpdateAttendeeCapabilitiesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
328
383
|
UpdateAttendeeCapabilitiesRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
|
329
384
|
UpdateAttendeeCapabilitiesRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
|
@@ -508,6 +563,15 @@ module Aws::ChimeSDKMeetings
|
|
508
563
|
)
|
509
564
|
end)
|
510
565
|
|
566
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
567
|
+
o.name = "ListTagsForResource"
|
568
|
+
o.http_method = "GET"
|
569
|
+
o.http_request_uri = "/tags"
|
570
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
571
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
573
|
+
end)
|
574
|
+
|
511
575
|
api.add_operation(:start_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
|
512
576
|
o.name = "StartMeetingTranscription"
|
513
577
|
o.http_method = "POST"
|
@@ -541,6 +605,27 @@ module Aws::ChimeSDKMeetings
|
|
541
605
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
542
606
|
end)
|
543
607
|
|
608
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
609
|
+
o.name = "TagResource"
|
610
|
+
o.http_method = "POST"
|
611
|
+
o.http_request_uri = "/tags?operation=tag-resource"
|
612
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
613
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
614
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
615
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
616
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
617
|
+
end)
|
618
|
+
|
619
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
620
|
+
o.name = "UntagResource"
|
621
|
+
o.http_method = "POST"
|
622
|
+
o.http_request_uri = "/tags?operation=untag-resource"
|
623
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
624
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
625
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
626
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
627
|
+
end)
|
628
|
+
|
544
629
|
api.add_operation(:update_attendee_capabilities, Seahorse::Model::Operation.new.tap do |o|
|
545
630
|
o.name = "UpdateAttendeeCapabilities"
|
546
631
|
o.http_method = "PUT"
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::ChimeSDKMeetings
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|