aws-sdk-chime 1.33.0 → 1.35.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 +2 -2
- data/lib/aws-sdk-chime/client.rb +33 -16
- data/lib/aws-sdk-chime/types.rb +14 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b62285b6e09327b16a5b1c10322d3c4bf0324c3c5ef2928dcf18816a1b2b5c50
|
|
4
|
+
data.tar.gz: 3702610bb60da5cd2ab97d918ae466b92a09b9ee5fdc1b70c7adf1651732f13f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8df1f65fab0e9c9085412c8f1df70f57fee3b066f0eb722c7971d63e4bc6fbe5034b51988d7b3b4620819ff7e55e95118d3239c3cb052ae9d82e1611c54a56e8
|
|
7
|
+
data.tar.gz: 4a8bb47af8a45d6c8dda1f3bde8acc306a7695597c08eb0ace765c63d41f8f2cbf36808e266f408cf727124bbaf838e7344b708a5f51ac4101e54714148cb541
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
|
@@ -85,13 +85,28 @@ module Aws::Chime
|
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
86
86
|
# credentials.
|
|
87
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
90
104
|
#
|
|
91
|
-
# * `Aws::
|
|
92
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
93
107
|
#
|
|
94
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
95
110
|
#
|
|
96
111
|
# When `:credentials` are not configured directly, the following
|
|
97
112
|
# locations will be searched for credentials:
|
|
@@ -101,10 +116,10 @@ module Aws::Chime
|
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
102
117
|
# * `~/.aws/credentials`
|
|
103
118
|
# * `~/.aws/config`
|
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
105
|
-
# very aggressive. Construct and pass an instance of
|
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
|
107
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
108
123
|
#
|
|
109
124
|
# @option options [required, String] :region
|
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -961,10 +976,11 @@ module Aws::Chime
|
|
|
961
976
|
# @option params [String] :media_region
|
|
962
977
|
# The Region in which to create the meeting. Default: `us-east-1`.
|
|
963
978
|
#
|
|
964
|
-
# Available values: `ap-northeast-1`, `ap-
|
|
965
|
-
# `ap-
|
|
966
|
-
# `eu-
|
|
967
|
-
# `
|
|
979
|
+
# Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
|
|
980
|
+
# `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
|
|
981
|
+
# `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`,
|
|
982
|
+
# `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
|
|
983
|
+
# `us-west-2`.
|
|
968
984
|
#
|
|
969
985
|
# @option params [Array<Types::Tag>] :tags
|
|
970
986
|
# The tag key-value pairs.
|
|
@@ -1045,10 +1061,11 @@ module Aws::Chime
|
|
|
1045
1061
|
# @option params [String] :media_region
|
|
1046
1062
|
# The Region in which to create the meeting. Default: `us-east-1`.
|
|
1047
1063
|
#
|
|
1048
|
-
# Available values: `ap-northeast-1`, `ap-
|
|
1049
|
-
# `ap-
|
|
1050
|
-
# `eu-
|
|
1051
|
-
# `
|
|
1064
|
+
# Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
|
|
1065
|
+
# `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
|
|
1066
|
+
# `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`,
|
|
1067
|
+
# `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
|
|
1068
|
+
# `us-west-2`.
|
|
1052
1069
|
#
|
|
1053
1070
|
# @option params [Array<Types::Tag>] :tags
|
|
1054
1071
|
# The tag key-value pairs.
|
|
@@ -5227,7 +5244,7 @@ module Aws::Chime
|
|
|
5227
5244
|
params: params,
|
|
5228
5245
|
config: config)
|
|
5229
5246
|
context[:gem_name] = 'aws-sdk-chime'
|
|
5230
|
-
context[:gem_version] = '1.
|
|
5247
|
+
context[:gem_version] = '1.35.0'
|
|
5231
5248
|
Seahorse::Client::Request.new(handlers, context)
|
|
5232
5249
|
end
|
|
5233
5250
|
|
data/lib/aws-sdk-chime/types.rb
CHANGED
|
@@ -1013,10 +1013,11 @@ module Aws::Chime
|
|
|
1013
1013
|
# @!attribute [rw] media_region
|
|
1014
1014
|
# The Region in which to create the meeting. Default: `us-east-1`.
|
|
1015
1015
|
#
|
|
1016
|
-
# Available values: `ap-northeast-1`, `ap-
|
|
1017
|
-
# `ap-
|
|
1018
|
-
# `eu-
|
|
1019
|
-
# `
|
|
1016
|
+
# Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
|
|
1017
|
+
# `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
|
|
1018
|
+
# `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`,
|
|
1019
|
+
# `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
|
|
1020
|
+
# `us-west-1`, `us-west-2`.
|
|
1020
1021
|
# @return [String]
|
|
1021
1022
|
#
|
|
1022
1023
|
# @!attribute [rw] tags
|
|
@@ -1104,10 +1105,11 @@ module Aws::Chime
|
|
|
1104
1105
|
# @!attribute [rw] media_region
|
|
1105
1106
|
# The Region in which to create the meeting. Default: `us-east-1`.
|
|
1106
1107
|
#
|
|
1107
|
-
# Available values: `ap-northeast-1`, `ap-
|
|
1108
|
-
# `ap-
|
|
1109
|
-
# `eu-
|
|
1110
|
-
# `
|
|
1108
|
+
# Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
|
|
1109
|
+
# `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
|
|
1110
|
+
# `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`,
|
|
1111
|
+
# `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
|
|
1112
|
+
# `us-west-1`, `us-west-2`.
|
|
1111
1113
|
# @return [String]
|
|
1112
1114
|
#
|
|
1113
1115
|
# @!attribute [rw] tags
|
|
@@ -3854,10 +3856,10 @@ module Aws::Chime
|
|
|
3854
3856
|
#
|
|
3855
3857
|
# @!attribute [rw] media_region
|
|
3856
3858
|
# The Region in which to create the meeting. Available values:
|
|
3857
|
-
# `
|
|
3858
|
-
# `
|
|
3859
|
-
# `eu-
|
|
3860
|
-
# `us-west-1`, `us-west-2`.
|
|
3859
|
+
# `af-south-1`, `ap-northeast-1`, `ap-northeast-2`, `ap-south-1`,
|
|
3860
|
+
# `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `eu-central-1`,
|
|
3861
|
+
# `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`,
|
|
3862
|
+
# `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.
|
|
3861
3863
|
# @return [String]
|
|
3862
3864
|
#
|
|
3863
3865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Meeting AWS API Documentation
|
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.35.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: 2020-
|
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|