aws-sdk-elasticinference 1.3.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f66350709beea458d990f7bc911734812e9dcdd0d9be3843178e498e3b5f75d6
4
- data.tar.gz: 5cbf254b167bebe0daa42bcb89b2253f14f4ec4e094eb6b68d8c7c2847a96e94
3
+ metadata.gz: 8ae6a000b13ac58d3e64f42304bf1b3d3da2023e3a61bf07321cc8b657bcc442
4
+ data.tar.gz: 87a1d34b4ffa63f0e9d13ac409408a30bbfd06aaecf689f3151e431dbca2e8bd
5
5
  SHA512:
6
- metadata.gz: 59340bdc98cfb743800b52a4f0b9986b2fa4b56370da570f1c04e697aa006f5897226af0b7960da741a5c1c3dda3998b93f24f9097526093153aa5e1bc56bdac
7
- data.tar.gz: 5c09410240ca9bf0aefd1d2d6023089a73d55b05529e5080c2da7b2dc2f1ec816d355d305b91e4c99a7b4916b976760bd43432f6bed1169a73733441948f786b
6
+ metadata.gz: f85b14436e9fecbb8af54276572a0824bc4819727b1b18fc942cf06d329370c4f922c762fed5bdce84e2d045a90bd34d4c4bcf4fd81bc9e3ae142780d411b85b
7
+ data.tar.gz: f2dac5ee667a882e1fbf0bd304300b3564912504bf726f88d7688593bf2ff5ab89a6b4a6035f19de5725e47415d4a64183bd52f13840755ada652fa5a6b17431
@@ -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:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-elasticinference/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::ElasticInference
47
49
 
48
- GEM_VERSION = '1.3.0'
50
+ GEM_VERSION = '1.8.0'
49
51
 
50
52
  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:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ElasticInference
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ElasticInference
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
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
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::ElasticInference
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # 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.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::ElasticInference
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::ElasticInference
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -534,7 +553,7 @@ module Aws::ElasticInference
534
553
  params: params,
535
554
  config: config)
536
555
  context[:gem_name] = 'aws-sdk-elasticinference'
537
- context[:gem_version] = '1.3.0'
556
+ context[:gem_version] = '1.8.0'
538
557
  Seahorse::Client::Request.new(handlers, context)
539
558
  end
540
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:
@@ -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:
@@ -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:
@@ -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.3.0
4
+ version: 1.8.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-04-24 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement