aws-sdk-kinesis 1.27.0 → 1.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-kinesis.rb +2 -2
- data/lib/aws-sdk-kinesis/async_client.rb +23 -8
- data/lib/aws-sdk-kinesis/client.rb +23 -8
- 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: 7d1518388af7d6437f593b5a87c216ba27405d14f4ab26a493cf5ed6a56b276b
|
4
|
+
data.tar.gz: e3f02e6fb8af0510507fa7ce4b807004e2eeb3cda76cf081d6dbd0670b163c69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca391c9b4875564751fd78c4d22f03da9ae282085651de79bb79323fb811bca81e5c0afb8e608b55333b7a8be8115429cb596c1b88451bd3afe3e1f6f2ffa6c5
|
7
|
+
data.tar.gz: 68f53a9b06e1bd6d97552b50a12306ac1b338e7dc0cf47dc9b67c289a17b9775e18f46677145a76d3dac3bec0f87f5aef49d2b613471c47c000db7bab4454b45
|
data/lib/aws-sdk-kinesis.rb
CHANGED
@@ -68,13 +68,28 @@ module Aws::Kinesis
|
|
68
68
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
69
69
|
# credentials.
|
70
70
|
#
|
71
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
72
|
+
# shared file, such as `~/.aws/config`.
|
73
|
+
#
|
74
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
75
|
+
#
|
76
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
77
|
+
# assume a role after providing credentials via the web.
|
78
|
+
#
|
79
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
80
|
+
# access token generated from `aws login`.
|
81
|
+
#
|
82
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
83
|
+
# process that outputs to stdout.
|
84
|
+
#
|
71
85
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
72
86
|
# from an EC2 IMDS on an EC2 instance.
|
73
87
|
#
|
74
|
-
# * `Aws::
|
75
|
-
#
|
88
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
89
|
+
# instances running in ECS.
|
76
90
|
#
|
77
|
-
# * `Aws::
|
91
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
92
|
+
# from the Cognito Identity service.
|
78
93
|
#
|
79
94
|
# When `:credentials` are not configured directly, the following
|
80
95
|
# locations will be searched for credentials:
|
@@ -84,10 +99,10 @@ module Aws::Kinesis
|
|
84
99
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
85
100
|
# * `~/.aws/credentials`
|
86
101
|
# * `~/.aws/config`
|
87
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
88
|
-
# very aggressive. Construct and pass an instance of
|
89
|
-
# `Aws::InstanceProfileCredentails`
|
90
|
-
# timeouts.
|
102
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
103
|
+
# are very aggressive. Construct and pass an instance of
|
104
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
105
|
+
# enable retries and extended timeouts.
|
91
106
|
#
|
92
107
|
# @option options [required, String] :region
|
93
108
|
# The AWS region to connect to. The configured `:region` is
|
@@ -543,7 +558,7 @@ module Aws::Kinesis
|
|
543
558
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
544
559
|
config: config)
|
545
560
|
context[:gem_name] = 'aws-sdk-kinesis'
|
546
|
-
context[:gem_version] = '1.
|
561
|
+
context[:gem_version] = '1.28.0'
|
547
562
|
Seahorse::Client::Request.new(handlers, context)
|
548
563
|
end
|
549
564
|
|
@@ -87,13 +87,28 @@ module Aws::Kinesis
|
|
87
87
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
88
88
|
# credentials.
|
89
89
|
#
|
90
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
91
|
+
# shared file, such as `~/.aws/config`.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
94
|
+
#
|
95
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
96
|
+
# assume a role after providing credentials via the web.
|
97
|
+
#
|
98
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
99
|
+
# access token generated from `aws login`.
|
100
|
+
#
|
101
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
102
|
+
# process that outputs to stdout.
|
103
|
+
#
|
90
104
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
91
105
|
# from an EC2 IMDS on an EC2 instance.
|
92
106
|
#
|
93
|
-
# * `Aws::
|
94
|
-
#
|
107
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
108
|
+
# instances running in ECS.
|
95
109
|
#
|
96
|
-
# * `Aws::
|
110
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
111
|
+
# from the Cognito Identity service.
|
97
112
|
#
|
98
113
|
# When `:credentials` are not configured directly, the following
|
99
114
|
# locations will be searched for credentials:
|
@@ -103,10 +118,10 @@ module Aws::Kinesis
|
|
103
118
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
104
119
|
# * `~/.aws/credentials`
|
105
120
|
# * `~/.aws/config`
|
106
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
107
|
-
# very aggressive. Construct and pass an instance of
|
108
|
-
# `Aws::InstanceProfileCredentails`
|
109
|
-
# timeouts.
|
121
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
|
+
# are very aggressive. Construct and pass an instance of
|
123
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
+
# enable retries and extended timeouts.
|
110
125
|
#
|
111
126
|
# @option options [required, String] :region
|
112
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -2252,7 +2267,7 @@ module Aws::Kinesis
|
|
2252
2267
|
params: params,
|
2253
2268
|
config: config)
|
2254
2269
|
context[:gem_name] = 'aws-sdk-kinesis'
|
2255
|
-
context[:gem_version] = '1.
|
2270
|
+
context[:gem_version] = '1.28.0'
|
2256
2271
|
Seahorse::Client::Request.new(handlers, context)
|
2257
2272
|
end
|
2258
2273
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.28.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-08-
|
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
|