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
@@ -304,6 +304,7 @@ module Aws::ChimeSDKMeetings
|
|
304
304
|
# @return [String]
|
305
305
|
#
|
306
306
|
# @!attribute [rw] request_id
|
307
|
+
# The ID of the request involved in the conflict.
|
307
308
|
# @return [String]
|
308
309
|
#
|
309
310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ConflictException AWS API Documentation
|
@@ -472,6 +473,12 @@ module Aws::ChimeSDKMeetings
|
|
472
473
|
# },
|
473
474
|
# primary_meeting_id: "PrimaryMeetingId",
|
474
475
|
# tenant_ids: ["TenantId"],
|
476
|
+
# tags: [
|
477
|
+
# {
|
478
|
+
# key: "TagKey", # required
|
479
|
+
# value: "TagValue", # required
|
480
|
+
# },
|
481
|
+
# ],
|
475
482
|
# }
|
476
483
|
#
|
477
484
|
# @!attribute [rw] client_request_token
|
@@ -523,6 +530,59 @@ module Aws::ChimeSDKMeetings
|
|
523
530
|
# builder to represent a segment of their users.
|
524
531
|
# @return [Array<String>]
|
525
532
|
#
|
533
|
+
# @!attribute [rw] tags
|
534
|
+
# Applies one or more tags to an Amazon Chime SDK meeting. Note the
|
535
|
+
# following:
|
536
|
+
#
|
537
|
+
# * Not all resources have tags. For a list of services with resources
|
538
|
+
# that support tagging using this operation, see [Services that
|
539
|
+
# support the Resource Groups Tagging API][1]. If the resource
|
540
|
+
# doesn't yet support this operation, the resource's service might
|
541
|
+
# support tagging using its own API operations. For more
|
542
|
+
# information, refer to the documentation for that service.
|
543
|
+
#
|
544
|
+
# * Each resource can have up to 50 tags. For other limits, see [Tag
|
545
|
+
# Naming and Usage Conventions][2] in the *AWS General Reference*.
|
546
|
+
#
|
547
|
+
# * You can only tag resources that are located in the specified AWS
|
548
|
+
# Region for the AWS account.
|
549
|
+
#
|
550
|
+
# * To add tags to a resource, you need the necessary permissions for
|
551
|
+
# the service that the resource belongs to as well as permissions
|
552
|
+
# for adding tags. For more information, see the documentation for
|
553
|
+
# each service.
|
554
|
+
#
|
555
|
+
# Do not store personally identifiable information (PII) or other
|
556
|
+
# confidential or sensitive information in tags. We use tags to
|
557
|
+
# provide you with billing and administration services. Tags are not
|
558
|
+
# intended to be used for private or sensitive data.
|
559
|
+
#
|
560
|
+
# **Minimum permissions**
|
561
|
+
#
|
562
|
+
# In addition to the `tag:TagResources `permission required by this
|
563
|
+
# operation, you must also have the tagging permission defined by the
|
564
|
+
# service that created the resource. For example, to tag a
|
565
|
+
# `ChimeSDKMeetings` instance using the `TagResources` operation, you
|
566
|
+
# must have both of the following permissions:
|
567
|
+
#
|
568
|
+
# `tag:TagResources`
|
569
|
+
#
|
570
|
+
# `ChimeSDKMeetings:CreateTags`
|
571
|
+
#
|
572
|
+
# <note markdown="1"> Some services might have specific requirements for tagging some
|
573
|
+
# resources. For example, to tag an Amazon S3 bucket, you must also
|
574
|
+
# have the `s3:GetBucketTagging` permission. If the expected minimum
|
575
|
+
# permissions don't work, check the documentation for that service's
|
576
|
+
# tagging APIs for more information.
|
577
|
+
#
|
578
|
+
# </note>
|
579
|
+
#
|
580
|
+
#
|
581
|
+
#
|
582
|
+
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html
|
583
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
584
|
+
# @return [Array<Types::Tag>]
|
585
|
+
#
|
526
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
|
527
587
|
#
|
528
588
|
class CreateMeetingRequest < Struct.new(
|
@@ -533,7 +593,8 @@ module Aws::ChimeSDKMeetings
|
|
533
593
|
:notifications_configuration,
|
534
594
|
:meeting_features,
|
535
595
|
:primary_meeting_id,
|
536
|
-
:tenant_ids
|
596
|
+
:tenant_ids,
|
597
|
+
:tags)
|
537
598
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
538
599
|
include Aws::Structure
|
539
600
|
end
|
@@ -581,6 +642,12 @@ module Aws::ChimeSDKMeetings
|
|
581
642
|
# ],
|
582
643
|
# primary_meeting_id: "PrimaryMeetingId",
|
583
644
|
# tenant_ids: ["TenantId"],
|
645
|
+
# tags: [
|
646
|
+
# {
|
647
|
+
# key: "TagKey", # required
|
648
|
+
# value: "TagValue", # required
|
649
|
+
# },
|
650
|
+
# ],
|
584
651
|
# }
|
585
652
|
#
|
586
653
|
# @!attribute [rw] client_request_token
|
@@ -636,6 +703,10 @@ module Aws::ChimeSDKMeetings
|
|
636
703
|
# builder to represent a segment of their users.
|
637
704
|
# @return [Array<String>]
|
638
705
|
#
|
706
|
+
# @!attribute [rw] tags
|
707
|
+
# The tags in the request.
|
708
|
+
# @return [Array<Types::Tag>]
|
709
|
+
#
|
639
710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
|
640
711
|
#
|
641
712
|
class CreateMeetingWithAttendeesRequest < Struct.new(
|
@@ -647,7 +718,8 @@ module Aws::ChimeSDKMeetings
|
|
647
718
|
:notifications_configuration,
|
648
719
|
:attendees,
|
649
720
|
:primary_meeting_id,
|
650
|
-
:tenant_ids
|
721
|
+
:tenant_ids,
|
722
|
+
:tags)
|
651
723
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
652
724
|
include Aws::Structure
|
653
725
|
end
|
@@ -1059,6 +1131,37 @@ module Aws::ChimeSDKMeetings
|
|
1059
1131
|
include Aws::Structure
|
1060
1132
|
end
|
1061
1133
|
|
1134
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1135
|
+
# data as a hash:
|
1136
|
+
#
|
1137
|
+
# {
|
1138
|
+
# resource_arn: "AmazonResourceName", # required
|
1139
|
+
# }
|
1140
|
+
#
|
1141
|
+
# @!attribute [rw] resource_arn
|
1142
|
+
# The ARN of the resource.
|
1143
|
+
# @return [String]
|
1144
|
+
#
|
1145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResourceRequest AWS API Documentation
|
1146
|
+
#
|
1147
|
+
class ListTagsForResourceRequest < Struct.new(
|
1148
|
+
:resource_arn)
|
1149
|
+
SENSITIVE = []
|
1150
|
+
include Aws::Structure
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
# @!attribute [rw] tags
|
1154
|
+
# The tags requested for the specified resource.
|
1155
|
+
# @return [Array<Types::Tag>]
|
1156
|
+
#
|
1157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResourceResponse AWS API Documentation
|
1158
|
+
#
|
1159
|
+
class ListTagsForResourceResponse < Struct.new(
|
1160
|
+
:tags)
|
1161
|
+
SENSITIVE = []
|
1162
|
+
include Aws::Structure
|
1163
|
+
end
|
1164
|
+
|
1062
1165
|
# A set of endpoints used by clients to connect to the media service
|
1063
1166
|
# group for an Amazon Chime SDK meeting.
|
1064
1167
|
#
|
@@ -1151,6 +1254,10 @@ module Aws::ChimeSDKMeetings
|
|
1151
1254
|
# Array of strings.
|
1152
1255
|
# @return [Array<String>]
|
1153
1256
|
#
|
1257
|
+
# @!attribute [rw] meeting_arn
|
1258
|
+
# The ARN of the meeting.
|
1259
|
+
# @return [String]
|
1260
|
+
#
|
1154
1261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
|
1155
1262
|
#
|
1156
1263
|
class Meeting < Struct.new(
|
@@ -1161,7 +1268,8 @@ module Aws::ChimeSDKMeetings
|
|
1161
1268
|
:media_placement,
|
1162
1269
|
:meeting_features,
|
1163
1270
|
:primary_meeting_id,
|
1164
|
-
:tenant_ids
|
1271
|
+
:tenant_ids,
|
1272
|
+
:meeting_arn)
|
1165
1273
|
SENSITIVE = [:meeting_host_id, :external_meeting_id]
|
1166
1274
|
include Aws::Structure
|
1167
1275
|
end
|
@@ -1249,6 +1357,33 @@ module Aws::ChimeSDKMeetings
|
|
1249
1357
|
include Aws::Structure
|
1250
1358
|
end
|
1251
1359
|
|
1360
|
+
# The resource that you want to tag couldn't be found.
|
1361
|
+
#
|
1362
|
+
# @!attribute [rw] code
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @!attribute [rw] message
|
1366
|
+
# @return [String]
|
1367
|
+
#
|
1368
|
+
# @!attribute [rw] request_id
|
1369
|
+
# The ID of the resource that couldn't be found.
|
1370
|
+
# @return [String]
|
1371
|
+
#
|
1372
|
+
# @!attribute [rw] resource_name
|
1373
|
+
# The name of the resource that couldn't be found.
|
1374
|
+
# @return [String]
|
1375
|
+
#
|
1376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ResourceNotFoundException AWS API Documentation
|
1377
|
+
#
|
1378
|
+
class ResourceNotFoundException < Struct.new(
|
1379
|
+
:code,
|
1380
|
+
:message,
|
1381
|
+
:request_id,
|
1382
|
+
:resource_name)
|
1383
|
+
SENSITIVE = []
|
1384
|
+
include Aws::Structure
|
1385
|
+
end
|
1386
|
+
|
1252
1387
|
# The service encountered an unexpected error.
|
1253
1388
|
#
|
1254
1389
|
# @!attribute [rw] code
|
@@ -1258,6 +1393,7 @@ module Aws::ChimeSDKMeetings
|
|
1258
1393
|
# @return [String]
|
1259
1394
|
#
|
1260
1395
|
# @!attribute [rw] request_id
|
1396
|
+
# The ID of the failed request.
|
1261
1397
|
# @return [String]
|
1262
1398
|
#
|
1263
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ServiceFailureException AWS API Documentation
|
@@ -1369,6 +1505,67 @@ module Aws::ChimeSDKMeetings
|
|
1369
1505
|
include Aws::Structure
|
1370
1506
|
end
|
1371
1507
|
|
1508
|
+
# A key-value pair that you define.
|
1509
|
+
#
|
1510
|
+
# @note When making an API call, you may pass Tag
|
1511
|
+
# data as a hash:
|
1512
|
+
#
|
1513
|
+
# {
|
1514
|
+
# key: "TagKey", # required
|
1515
|
+
# value: "TagValue", # required
|
1516
|
+
# }
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] key
|
1519
|
+
# The tag's key.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] value
|
1523
|
+
# The tag's value.
|
1524
|
+
# @return [String]
|
1525
|
+
#
|
1526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Tag AWS API Documentation
|
1527
|
+
#
|
1528
|
+
class Tag < Struct.new(
|
1529
|
+
:key,
|
1530
|
+
:value)
|
1531
|
+
SENSITIVE = []
|
1532
|
+
include Aws::Structure
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1536
|
+
# data as a hash:
|
1537
|
+
#
|
1538
|
+
# {
|
1539
|
+
# resource_arn: "AmazonResourceName", # required
|
1540
|
+
# tags: [ # required
|
1541
|
+
# {
|
1542
|
+
# key: "TagKey", # required
|
1543
|
+
# value: "TagValue", # required
|
1544
|
+
# },
|
1545
|
+
# ],
|
1546
|
+
# }
|
1547
|
+
#
|
1548
|
+
# @!attribute [rw] resource_arn
|
1549
|
+
# The ARN of the resource.
|
1550
|
+
# @return [String]
|
1551
|
+
#
|
1552
|
+
# @!attribute [rw] tags
|
1553
|
+
# Lists the requested tags.
|
1554
|
+
# @return [Array<Types::Tag>]
|
1555
|
+
#
|
1556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResourceRequest AWS API Documentation
|
1557
|
+
#
|
1558
|
+
class TagResourceRequest < Struct.new(
|
1559
|
+
:resource_arn,
|
1560
|
+
:tags)
|
1561
|
+
SENSITIVE = []
|
1562
|
+
include Aws::Structure
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResourceResponse AWS API Documentation
|
1566
|
+
#
|
1567
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
1568
|
+
|
1372
1569
|
# The number of customer requests exceeds the request rate limit.
|
1373
1570
|
#
|
1374
1571
|
# @!attribute [rw] code
|
@@ -1378,6 +1575,7 @@ module Aws::ChimeSDKMeetings
|
|
1378
1575
|
# @return [String]
|
1379
1576
|
#
|
1380
1577
|
# @!attribute [rw] request_id
|
1578
|
+
# The ID of the request that exceeded the throttling limit.
|
1381
1579
|
# @return [String]
|
1382
1580
|
#
|
1383
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ThrottlingException AWS API Documentation
|
@@ -1390,6 +1588,33 @@ module Aws::ChimeSDKMeetings
|
|
1390
1588
|
include Aws::Structure
|
1391
1589
|
end
|
1392
1590
|
|
1591
|
+
# Too many tags were added to the specified resource.
|
1592
|
+
#
|
1593
|
+
# @!attribute [rw] code
|
1594
|
+
# @return [String]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] message
|
1597
|
+
# @return [String]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] request_id
|
1600
|
+
# The ID of the request that contains too many tags.
|
1601
|
+
# @return [String]
|
1602
|
+
#
|
1603
|
+
# @!attribute [rw] resource_name
|
1604
|
+
# The name of the resource that received too many tags.
|
1605
|
+
# @return [String]
|
1606
|
+
#
|
1607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TooManyTagsException AWS API Documentation
|
1608
|
+
#
|
1609
|
+
class TooManyTagsException < Struct.new(
|
1610
|
+
:code,
|
1611
|
+
:message,
|
1612
|
+
:request_id,
|
1613
|
+
:resource_name)
|
1614
|
+
SENSITIVE = []
|
1615
|
+
include Aws::Structure
|
1616
|
+
end
|
1617
|
+
|
1393
1618
|
# The configuration for the current transcription operation. Must
|
1394
1619
|
# contain `EngineTranscribeSettings` or
|
1395
1620
|
# `EngineTranscribeMedicalSettings`.
|
@@ -1490,6 +1715,35 @@ module Aws::ChimeSDKMeetings
|
|
1490
1715
|
include Aws::Structure
|
1491
1716
|
end
|
1492
1717
|
|
1718
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1719
|
+
# data as a hash:
|
1720
|
+
#
|
1721
|
+
# {
|
1722
|
+
# resource_arn: "AmazonResourceName", # required
|
1723
|
+
# tag_keys: ["TagKey"], # required
|
1724
|
+
# }
|
1725
|
+
#
|
1726
|
+
# @!attribute [rw] resource_arn
|
1727
|
+
# The ARN of the resource that you're removing tags from.
|
1728
|
+
# @return [String]
|
1729
|
+
#
|
1730
|
+
# @!attribute [rw] tag_keys
|
1731
|
+
# The tag keys being removed from the resources.
|
1732
|
+
# @return [Array<String>]
|
1733
|
+
#
|
1734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResourceRequest AWS API Documentation
|
1735
|
+
#
|
1736
|
+
class UntagResourceRequest < Struct.new(
|
1737
|
+
:resource_arn,
|
1738
|
+
:tag_keys)
|
1739
|
+
SENSITIVE = []
|
1740
|
+
include Aws::Structure
|
1741
|
+
end
|
1742
|
+
|
1743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResourceResponse AWS API Documentation
|
1744
|
+
#
|
1745
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
1746
|
+
|
1493
1747
|
# @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
|
1494
1748
|
# data as a hash:
|
1495
1749
|
#
|
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-chimesdkmeetings/types'
|
15
15
|
require_relative 'aws-sdk-chimesdkmeetings/client_api'
|
16
|
+
require_relative 'aws-sdk-chimesdkmeetings/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-chimesdkmeetings/client'
|
17
18
|
require_relative 'aws-sdk-chimesdkmeetings/errors'
|
18
19
|
require_relative 'aws-sdk-chimesdkmeetings/resource'
|
20
|
+
require_relative 'aws-sdk-chimesdkmeetings/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-chimesdkmeetings/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-chimesdkmeetings/endpoints'
|
19
23
|
require_relative 'aws-sdk-chimesdkmeetings/customizations'
|
20
24
|
|
21
25
|
# This module provides support for Amazon Chime SDK Meetings. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmeetings/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::ChimeSDKMeetings
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.15.0'
|
52
56
|
|
53
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmeetings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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: 2022-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-chimesdkmeetings/client.rb
|
60
60
|
- lib/aws-sdk-chimesdkmeetings/client_api.rb
|
61
61
|
- lib/aws-sdk-chimesdkmeetings/customizations.rb
|
62
|
+
- lib/aws-sdk-chimesdkmeetings/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-chimesdkmeetings/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-chimesdkmeetings/endpoints.rb
|
62
65
|
- lib/aws-sdk-chimesdkmeetings/errors.rb
|
66
|
+
- lib/aws-sdk-chimesdkmeetings/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-chimesdkmeetings/resource.rb
|
64
68
|
- lib/aws-sdk-chimesdkmeetings/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|