aws-sdk-elasticinference 1.6.1 → 1.11.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-elasticinference.rb +5 -2
- data/lib/aws-sdk-elasticinference/client.rb +25 -8
- data/lib/aws-sdk-elasticinference/client_api.rb +2 -0
- data/lib/aws-sdk-elasticinference/errors.rb +2 -0
- data/lib/aws-sdk-elasticinference/resource.rb +2 -0
- data/lib/aws-sdk-elasticinference/types.rb +21 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28109d639f28a3e22263851dd5be010e145f38c85b45b7c8ea38679c42808c13
|
4
|
+
data.tar.gz: 1ffb02a489cc75585064815bdd5cba9766d71ea9c17f52b073c5bd7b33c4f39a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d439053d1e3a93079448fe2ef92d6091d7e4de3e992a572ae73b39c94a8e6d72b94efb6115946df7943b806b37ec2746850eea6c38e6b6a3eb8ff595f99316c3
|
7
|
+
data.tar.gz: 8b1d139c60aa39a6b74dd4dddadcb0d3bf6ba1986fd06d6a633d5ae1c505c09a0b775c6eb1e611850caf21205a42fcf047758a081bb5141ef475e753978d1a16
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-elasticinference/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::ElasticInference
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.11.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::ElasticInference
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::ElasticInference
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -536,7 +553,7 @@ module Aws::ElasticInference
|
|
536
553
|
params: params,
|
537
554
|
config: config)
|
538
555
|
context[:gem_name] = 'aws-sdk-elasticinference'
|
539
|
-
context[:gem_version] = '1.
|
556
|
+
context[:gem_version] = '1.11.0'
|
540
557
|
Seahorse::Client::Request.new(handlers, context)
|
541
558
|
end
|
542
559
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -29,6 +31,7 @@ module Aws::ElasticInference
|
|
29
31
|
:accelerator_type_name,
|
30
32
|
:memory_info,
|
31
33
|
:throughput_info)
|
34
|
+
SENSITIVE = []
|
32
35
|
include Aws::Structure
|
33
36
|
end
|
34
37
|
|
@@ -58,6 +61,7 @@ module Aws::ElasticInference
|
|
58
61
|
:accelerator_type,
|
59
62
|
:location_type,
|
60
63
|
:location)
|
64
|
+
SENSITIVE = []
|
61
65
|
include Aws::Structure
|
62
66
|
end
|
63
67
|
|
@@ -70,6 +74,7 @@ module Aws::ElasticInference
|
|
70
74
|
#
|
71
75
|
class BadRequestException < Struct.new(
|
72
76
|
:message)
|
77
|
+
SENSITIVE = []
|
73
78
|
include Aws::Structure
|
74
79
|
end
|
75
80
|
|
@@ -100,6 +105,7 @@ module Aws::ElasticInference
|
|
100
105
|
class DescribeAcceleratorOfferingsRequest < Struct.new(
|
101
106
|
:location_type,
|
102
107
|
:accelerator_types)
|
108
|
+
SENSITIVE = []
|
103
109
|
include Aws::Structure
|
104
110
|
end
|
105
111
|
|
@@ -111,6 +117,7 @@ module Aws::ElasticInference
|
|
111
117
|
#
|
112
118
|
class DescribeAcceleratorOfferingsResponse < Struct.new(
|
113
119
|
:accelerator_type_offerings)
|
120
|
+
SENSITIVE = []
|
114
121
|
include Aws::Structure
|
115
122
|
end
|
116
123
|
|
@@ -128,6 +135,7 @@ module Aws::ElasticInference
|
|
128
135
|
#
|
129
136
|
class DescribeAcceleratorTypesResponse < Struct.new(
|
130
137
|
:accelerator_types)
|
138
|
+
SENSITIVE = []
|
131
139
|
include Aws::Structure
|
132
140
|
end
|
133
141
|
|
@@ -178,6 +186,7 @@ module Aws::ElasticInference
|
|
178
186
|
:filters,
|
179
187
|
:max_results,
|
180
188
|
:next_token)
|
189
|
+
SENSITIVE = []
|
181
190
|
include Aws::Structure
|
182
191
|
end
|
183
192
|
|
@@ -195,6 +204,7 @@ module Aws::ElasticInference
|
|
195
204
|
class DescribeAcceleratorsResponse < Struct.new(
|
196
205
|
:accelerator_set,
|
197
206
|
:next_token)
|
207
|
+
SENSITIVE = []
|
198
208
|
include Aws::Structure
|
199
209
|
end
|
200
210
|
|
@@ -230,6 +240,7 @@ module Aws::ElasticInference
|
|
230
240
|
:accelerator_id,
|
231
241
|
:availability_zone,
|
232
242
|
:attached_resource)
|
243
|
+
SENSITIVE = []
|
233
244
|
include Aws::Structure
|
234
245
|
end
|
235
246
|
|
@@ -243,6 +254,7 @@ module Aws::ElasticInference
|
|
243
254
|
#
|
244
255
|
class ElasticInferenceAcceleratorHealth < Struct.new(
|
245
256
|
:status)
|
257
|
+
SENSITIVE = []
|
246
258
|
include Aws::Structure
|
247
259
|
end
|
248
260
|
|
@@ -272,6 +284,7 @@ module Aws::ElasticInference
|
|
272
284
|
class Filter < Struct.new(
|
273
285
|
:name,
|
274
286
|
:values)
|
287
|
+
SENSITIVE = []
|
275
288
|
include Aws::Structure
|
276
289
|
end
|
277
290
|
|
@@ -284,6 +297,7 @@ module Aws::ElasticInference
|
|
284
297
|
#
|
285
298
|
class InternalServerException < Struct.new(
|
286
299
|
:message)
|
300
|
+
SENSITIVE = []
|
287
301
|
include Aws::Structure
|
288
302
|
end
|
289
303
|
|
@@ -305,6 +319,7 @@ module Aws::ElasticInference
|
|
305
319
|
class KeyValuePair < Struct.new(
|
306
320
|
:key,
|
307
321
|
:value)
|
322
|
+
SENSITIVE = []
|
308
323
|
include Aws::Structure
|
309
324
|
end
|
310
325
|
|
@@ -323,6 +338,7 @@ module Aws::ElasticInference
|
|
323
338
|
#
|
324
339
|
class ListTagsForResourceRequest < Struct.new(
|
325
340
|
:resource_arn)
|
341
|
+
SENSITIVE = []
|
326
342
|
include Aws::Structure
|
327
343
|
end
|
328
344
|
|
@@ -334,6 +350,7 @@ module Aws::ElasticInference
|
|
334
350
|
#
|
335
351
|
class ListTagsForResourceResult < Struct.new(
|
336
352
|
:tags)
|
353
|
+
SENSITIVE = []
|
337
354
|
include Aws::Structure
|
338
355
|
end
|
339
356
|
|
@@ -347,6 +364,7 @@ module Aws::ElasticInference
|
|
347
364
|
#
|
348
365
|
class MemoryInfo < Struct.new(
|
349
366
|
:size_in_mi_b)
|
367
|
+
SENSITIVE = []
|
350
368
|
include Aws::Structure
|
351
369
|
end
|
352
370
|
|
@@ -359,6 +377,7 @@ module Aws::ElasticInference
|
|
359
377
|
#
|
360
378
|
class ResourceNotFoundException < Struct.new(
|
361
379
|
:message)
|
380
|
+
SENSITIVE = []
|
362
381
|
include Aws::Structure
|
363
382
|
end
|
364
383
|
|
@@ -385,6 +404,7 @@ module Aws::ElasticInference
|
|
385
404
|
class TagResourceRequest < Struct.new(
|
386
405
|
:resource_arn,
|
387
406
|
:tags)
|
407
|
+
SENSITIVE = []
|
388
408
|
include Aws::Structure
|
389
409
|
end
|
390
410
|
|
@@ -413,6 +433,7 @@ module Aws::ElasticInference
|
|
413
433
|
class UntagResourceRequest < Struct.new(
|
414
434
|
:resource_arn,
|
415
435
|
:tag_keys)
|
436
|
+
SENSITIVE = []
|
416
437
|
include Aws::Structure
|
417
438
|
end
|
418
439
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticinference
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.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:
|
11
|
+
date: 2021-02-02 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.112.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.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|