aws-sdk-batch 1.28.0 → 1.33.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
- SHA1:
3
- metadata.gz: 5d0a39d1cfabe8956da58e469e52e9c1327a7591
4
- data.tar.gz: eabc40b01e69bfb224d933f355051cbb3926bec9
2
+ SHA256:
3
+ metadata.gz: 17e02f6be8cabcc47b72216b1ed7ae75fa565f03a1bd515feaba1cb394cc9371
4
+ data.tar.gz: 3c3cb7b6680c8f8e79cae1c5028ac33715dec60aa8e71fb63bae3ad72e0845b0
5
5
  SHA512:
6
- metadata.gz: 4e1d0603531d7f0d654622d1d1dfafa7fa3a83c7b23e1c7535fb27d5697da1cd6063b33b1d9d46e27b118fdeda2cc82b541597f439aed7933674cf17d79e7989
7
- data.tar.gz: 889e039fe10868b9fa381a53c80040da4005f3139823aac39f14d4adf890767b9adf90286ba2184f6d99ff4dc19da63f4cd47055cd30c8110de2440f069c89a6
6
+ metadata.gz: bdb575ad5099d50f2d908fdb1dde684e5c0bfe57328a1a83c6fa4b2467900da895f96d5a3457dffe3749b27b85fcb43b40e1f9c3405098eeb303f2e619bc4754
7
+ data.tar.gz: 053ce9ac4785d57674fe8a3f8a495fe29b3b34094ebd4b091b865ac67090cb2e2f2db130d7c261623240a8e6e1034251c848273cdfe15cd097f5d33da41b2e01
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-batch/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # batch = Aws::Batch::Client.new
30
+ # resp = batch.cancel_job(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from AWS Batch all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from AWS Batch are defined in the
37
+ # {Errors} module and all extend {Errors::ServiceError}.
33
38
  #
34
39
  # begin
35
40
  # # do stuff
36
41
  # rescue Aws::Batch::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all AWS Batch API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-batch/customizations'
42
47
  # @service
43
48
  module Aws::Batch
44
49
 
45
- GEM_VERSION = '1.28.0'
50
+ GEM_VERSION = '1.33.0'
46
51
 
47
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,12 +26,25 @@ 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
 
30
33
  Aws::Plugins::GlobalConfiguration.add_identifier(:batch)
31
34
 
32
35
  module Aws::Batch
36
+ # An API client for Batch. To construct a client, you need to configure a `:region` and `:credentials`.
37
+ #
38
+ # client = Aws::Batch::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
43
+ #
44
+ # For details on configuring region and credentials see
45
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
46
+ #
47
+ # See {#initialize} for a full list of supported configuration options.
33
48
  class Client < Seahorse::Client::Base
34
49
 
35
50
  include Aws::ClientStubs
@@ -57,6 +72,7 @@ module Aws::Batch
57
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
60
76
  add_plugin(Aws::Plugins::SignatureV4)
61
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
62
78
 
@@ -93,7 +109,7 @@ module Aws::Batch
93
109
  # @option options [required, String] :region
94
110
  # The AWS region to connect to. The configured `:region` is
95
111
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
97
113
  #
98
114
  # * `Aws.config[:region]`
99
115
  # * `ENV['AWS_REGION']`
@@ -108,6 +124,12 @@ module Aws::Batch
108
124
  # When set to `true`, a thread polling for endpoints will be running in
109
125
  # the background every 60 secs (default). Defaults to `false`.
110
126
  #
127
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
128
+ # Used only in `adaptive` retry mode. When true, the request will sleep
129
+ # until there is sufficent client side capacity to retry the request.
130
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
131
+ # not retry instead of sleeping.
132
+ #
111
133
  # @option options [Boolean] :client_side_monitoring (false)
112
134
  # When `true`, client-side metrics will be collected for all API requests from
113
135
  # this client.
@@ -132,6 +154,10 @@ module Aws::Batch
132
154
  # When `true`, an attempt is made to coerce request parameters into
133
155
  # the required types.
134
156
  #
157
+ # @option options [Boolean] :correct_clock_skew (true)
158
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
159
+ # a clock skew correction and retry requests with skewed client clocks.
160
+ #
135
161
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
162
  # Set to true to disable SDK automatically adding host prefix
137
163
  # to default service endpoint when available.
@@ -139,7 +165,7 @@ module Aws::Batch
139
165
  # @option options [String] :endpoint
140
166
  # The client endpoint is normally constructed from the `:region`
141
167
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
169
  #
144
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +180,7 @@ module Aws::Batch
154
180
  # requests fetching endpoints information. Defaults to 60 sec.
155
181
  #
156
182
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
184
  #
159
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
186
  # The log formatter.
@@ -166,15 +192,29 @@ module Aws::Batch
166
192
  # The Logger instance to send log messages to. If this option
167
193
  # is not set, logging will be disabled.
168
194
  #
195
+ # @option options [Integer] :max_attempts (3)
196
+ # An integer representing the maximum number attempts that will be made for
197
+ # a single request, including the initial attempt. For example,
198
+ # setting this value to 5 will result in a request being retried up to
199
+ # 4 times. Used in `standard` and `adaptive` retry modes.
200
+ #
169
201
  # @option options [String] :profile ("default")
170
202
  # Used when loading credentials from the shared credentials file
171
203
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
204
  #
205
+ # @option options [Proc] :retry_backoff
206
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
207
+ # This option is only used in the `legacy` retry mode.
208
+ #
173
209
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
210
+ # The base delay in seconds used by the default backoff function. This option
211
+ # is only used in the `legacy` retry mode.
175
212
  #
176
213
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
214
+ # A delay randomiser function used by the default backoff function.
215
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
216
+ # otherwise a Proc that takes and returns a number. This option is only used
217
+ # in the `legacy` retry mode.
178
218
  #
179
219
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
220
  #
@@ -182,11 +222,30 @@ module Aws::Batch
182
222
  # The maximum number of times to retry failed requests. Only
183
223
  # ~ 500 level server errors and certain ~ 400 level client errors
184
224
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
225
+ # checksum errors, networking errors, timeout errors, auth errors,
226
+ # endpoint discovery, and errors from expired credentials.
227
+ # This option is only used in the `legacy` retry mode.
187
228
  #
188
229
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
230
+ # The maximum number of seconds to delay between retries (0 for no limit)
231
+ # used by the default backoff function. This option is only used in the
232
+ # `legacy` retry mode.
233
+ #
234
+ # @option options [String] :retry_mode ("legacy")
235
+ # Specifies which retry algorithm to use. Values are:
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
190
249
  #
191
250
  # @option options [String] :secret_access_key
192
251
  #
@@ -209,16 +268,15 @@ module Aws::Batch
209
268
  # requests through. Formatted like 'http://proxy.com:123'.
210
269
  #
211
270
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
271
+ # seconds to wait when opening a HTTP session before raising a
213
272
  # `Timeout::Error`.
214
273
  #
215
274
  # @option options [Integer] :http_read_timeout (60) The default
216
275
  # number of seconds to wait for response data. This value can
217
- # safely be set
218
- # per-request on the session yeidled by {#session_for}.
276
+ # safely be set per-request on the session.
219
277
  #
220
278
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
279
+ # seconds a connection is allowed to sit idle before it is
222
280
  # considered stale. Stale connections are closed and removed
223
281
  # from the pool before making a request.
224
282
  #
@@ -227,7 +285,7 @@ module Aws::Batch
227
285
  # request body. This option has no effect unless the request has
228
286
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
287
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
288
+ # request on the session.
231
289
  #
232
290
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
291
  # HTTP debug output will be sent to the `:logger`.
@@ -811,6 +869,8 @@ module Aws::Batch
811
869
  # * {Types::DescribeComputeEnvironmentsResponse#compute_environments #compute_environments} => Array&lt;Types::ComputeEnvironmentDetail&gt;
812
870
  # * {Types::DescribeComputeEnvironmentsResponse#next_token #next_token} => String
813
871
  #
872
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
873
+ #
814
874
  #
815
875
  # @example Example: To describe a compute environment
816
876
  #
@@ -954,6 +1014,8 @@ module Aws::Batch
954
1014
  # * {Types::DescribeJobDefinitionsResponse#job_definitions #job_definitions} => Array&lt;Types::JobDefinition&gt;
955
1015
  # * {Types::DescribeJobDefinitionsResponse#next_token #next_token} => String
956
1016
  #
1017
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1018
+ #
957
1019
  #
958
1020
  # @example Example: To describe active job definitions
959
1021
  #
@@ -1128,6 +1190,8 @@ module Aws::Batch
1128
1190
  # * {Types::DescribeJobQueuesResponse#job_queues #job_queues} => Array&lt;Types::JobQueueDetail&gt;
1129
1191
  # * {Types::DescribeJobQueuesResponse#next_token #next_token} => String
1130
1192
  #
1193
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1194
+ #
1131
1195
  #
1132
1196
  # @example Example: To describe a job queue
1133
1197
  #
@@ -1439,6 +1503,8 @@ module Aws::Batch
1439
1503
  # * {Types::ListJobsResponse#job_summary_list #job_summary_list} => Array&lt;Types::JobSummary&gt;
1440
1504
  # * {Types::ListJobsResponse#next_token #next_token} => String
1441
1505
  #
1506
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1507
+ #
1442
1508
  #
1443
1509
  # @example Example: To list running jobs
1444
1510
  #
@@ -2143,7 +2209,7 @@ module Aws::Batch
2143
2209
  params: params,
2144
2210
  config: config)
2145
2211
  context[:gem_name] = 'aws-sdk-batch'
2146
- context[:gem_version] = '1.28.0'
2212
+ context[:gem_version] = '1.33.0'
2147
2213
  Seahorse::Client::Request.new(handlers, context)
2148
2214
  end
2149
2215
 
@@ -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:
@@ -6,6 +8,30 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::Batch
11
+
12
+ # When Batch returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::Batch::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all Batch errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::Batch::Errors::ServiceError
20
+ # # rescues all Batch API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {ClientException}
31
+ # * {ServerException}
32
+ #
33
+ # Additionally, error classes are dynamically generated for service errors based on the error code
34
+ # if they are not defined above.
9
35
  module Errors
10
36
 
11
37
  extend Aws::Errors::DynamicErrors
@@ -23,7 +49,6 @@ module Aws::Batch
23
49
  def message
24
50
  @message || @data[:message]
25
51
  end
26
-
27
52
  end
28
53
 
29
54
  class ServerException < ServiceError
@@ -39,7 +64,6 @@ module Aws::Batch
39
64
  def message
40
65
  @message || @data[:message]
41
66
  end
42
-
43
67
  end
44
68
 
45
69
  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:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::Batch
11
+
9
12
  class Resource
10
13
 
11
14
  # @param options ({})
@@ -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:
@@ -25,6 +27,7 @@ module Aws::Batch
25
27
  #
26
28
  class ArrayProperties < Struct.new(
27
29
  :size)
30
+ SENSITIVE = []
28
31
  include Aws::Structure
29
32
  end
30
33
 
@@ -51,6 +54,7 @@ module Aws::Batch
51
54
  :status_summary,
52
55
  :size,
53
56
  :index)
57
+ SENSITIVE = []
54
58
  include Aws::Structure
55
59
  end
56
60
 
@@ -71,6 +75,7 @@ module Aws::Batch
71
75
  class ArrayPropertiesSummary < Struct.new(
72
76
  :size,
73
77
  :index)
78
+ SENSITIVE = []
74
79
  include Aws::Structure
75
80
  end
76
81
 
@@ -118,6 +123,7 @@ module Aws::Batch
118
123
  :reason,
119
124
  :log_stream_name,
120
125
  :network_interfaces)
126
+ SENSITIVE = []
121
127
  include Aws::Structure
122
128
  end
123
129
 
@@ -152,6 +158,7 @@ module Aws::Batch
152
158
  :started_at,
153
159
  :stopped_at,
154
160
  :status_reason)
161
+ SENSITIVE = []
155
162
  include Aws::Structure
156
163
  end
157
164
 
@@ -179,6 +186,7 @@ module Aws::Batch
179
186
  class CancelJobRequest < Struct.new(
180
187
  :job_id,
181
188
  :reason)
189
+ SENSITIVE = []
182
190
  include Aws::Structure
183
191
  end
184
192
 
@@ -198,6 +206,7 @@ module Aws::Batch
198
206
  #
199
207
  class ClientException < Struct.new(
200
208
  :message)
209
+ SENSITIVE = []
201
210
  include Aws::Structure
202
211
  end
203
212
 
@@ -268,6 +277,7 @@ module Aws::Batch
268
277
  :status_reason,
269
278
  :compute_resources,
270
279
  :service_role)
280
+ SENSITIVE = []
271
281
  include Aws::Structure
272
282
  end
273
283
 
@@ -298,6 +308,7 @@ module Aws::Batch
298
308
  class ComputeEnvironmentOrder < Struct.new(
299
309
  :order,
300
310
  :compute_environment)
311
+ SENSITIVE = []
301
312
  include Aws::Structure
302
313
  end
303
314
 
@@ -505,6 +516,7 @@ module Aws::Batch
505
516
  :bid_percentage,
506
517
  :spot_iam_fleet_role,
507
518
  :launch_template)
519
+ SENSITIVE = []
508
520
  include Aws::Structure
509
521
  end
510
522
 
@@ -540,6 +552,7 @@ module Aws::Batch
540
552
  :minv_cpus,
541
553
  :maxv_cpus,
542
554
  :desiredv_cpus)
555
+ SENSITIVE = []
543
556
  include Aws::Structure
544
557
  end
545
558
 
@@ -674,6 +687,7 @@ module Aws::Batch
674
687
  :network_interfaces,
675
688
  :resource_requirements,
676
689
  :linux_parameters)
690
+ SENSITIVE = []
677
691
  include Aws::Structure
678
692
  end
679
693
 
@@ -749,6 +763,7 @@ module Aws::Batch
749
763
  :instance_type,
750
764
  :environment,
751
765
  :resource_requirements)
766
+ SENSITIVE = []
752
767
  include Aws::Structure
753
768
  end
754
769
 
@@ -1021,6 +1036,7 @@ module Aws::Batch
1021
1036
  :instance_type,
1022
1037
  :resource_requirements,
1023
1038
  :linux_parameters)
1039
+ SENSITIVE = []
1024
1040
  include Aws::Structure
1025
1041
  end
1026
1042
 
@@ -1040,6 +1056,7 @@ module Aws::Batch
1040
1056
  class ContainerSummary < Struct.new(
1041
1057
  :exit_code,
1042
1058
  :reason)
1059
+ SENSITIVE = []
1043
1060
  include Aws::Structure
1044
1061
  end
1045
1062
 
@@ -1134,6 +1151,7 @@ module Aws::Batch
1134
1151
  :state,
1135
1152
  :compute_resources,
1136
1153
  :service_role)
1154
+ SENSITIVE = []
1137
1155
  include Aws::Structure
1138
1156
  end
1139
1157
 
@@ -1150,6 +1168,7 @@ module Aws::Batch
1150
1168
  class CreateComputeEnvironmentResponse < Struct.new(
1151
1169
  :compute_environment_name,
1152
1170
  :compute_environment_arn)
1171
+ SENSITIVE = []
1153
1172
  include Aws::Structure
1154
1173
  end
1155
1174
 
@@ -1202,6 +1221,7 @@ module Aws::Batch
1202
1221
  :state,
1203
1222
  :priority,
1204
1223
  :compute_environment_order)
1224
+ SENSITIVE = []
1205
1225
  include Aws::Structure
1206
1226
  end
1207
1227
 
@@ -1218,6 +1238,7 @@ module Aws::Batch
1218
1238
  class CreateJobQueueResponse < Struct.new(
1219
1239
  :job_queue_name,
1220
1240
  :job_queue_arn)
1241
+ SENSITIVE = []
1221
1242
  include Aws::Structure
1222
1243
  end
1223
1244
 
@@ -1237,6 +1258,7 @@ module Aws::Batch
1237
1258
  #
1238
1259
  class DeleteComputeEnvironmentRequest < Struct.new(
1239
1260
  :compute_environment)
1261
+ SENSITIVE = []
1240
1262
  include Aws::Structure
1241
1263
  end
1242
1264
 
@@ -1260,6 +1282,7 @@ module Aws::Batch
1260
1282
  #
1261
1283
  class DeleteJobQueueRequest < Struct.new(
1262
1284
  :job_queue)
1285
+ SENSITIVE = []
1263
1286
  include Aws::Structure
1264
1287
  end
1265
1288
 
@@ -1283,6 +1306,7 @@ module Aws::Batch
1283
1306
  #
1284
1307
  class DeregisterJobDefinitionRequest < Struct.new(
1285
1308
  :job_definition)
1309
+ SENSITIVE = []
1286
1310
  include Aws::Structure
1287
1311
  end
1288
1312
 
@@ -1338,6 +1362,7 @@ module Aws::Batch
1338
1362
  :compute_environments,
1339
1363
  :max_results,
1340
1364
  :next_token)
1365
+ SENSITIVE = []
1341
1366
  include Aws::Structure
1342
1367
  end
1343
1368
 
@@ -1358,6 +1383,7 @@ module Aws::Batch
1358
1383
  class DescribeComputeEnvironmentsResponse < Struct.new(
1359
1384
  :compute_environments,
1360
1385
  :next_token)
1386
+ SENSITIVE = []
1361
1387
  include Aws::Structure
1362
1388
  end
1363
1389
 
@@ -1420,6 +1446,7 @@ module Aws::Batch
1420
1446
  :job_definition_name,
1421
1447
  :status,
1422
1448
  :next_token)
1449
+ SENSITIVE = []
1423
1450
  include Aws::Structure
1424
1451
  end
1425
1452
 
@@ -1440,6 +1467,7 @@ module Aws::Batch
1440
1467
  class DescribeJobDefinitionsResponse < Struct.new(
1441
1468
  :job_definitions,
1442
1469
  :next_token)
1470
+ SENSITIVE = []
1443
1471
  include Aws::Structure
1444
1472
  end
1445
1473
 
@@ -1489,6 +1517,7 @@ module Aws::Batch
1489
1517
  :job_queues,
1490
1518
  :max_results,
1491
1519
  :next_token)
1520
+ SENSITIVE = []
1492
1521
  include Aws::Structure
1493
1522
  end
1494
1523
 
@@ -1509,6 +1538,7 @@ module Aws::Batch
1509
1538
  class DescribeJobQueuesResponse < Struct.new(
1510
1539
  :job_queues,
1511
1540
  :next_token)
1541
+ SENSITIVE = []
1512
1542
  include Aws::Structure
1513
1543
  end
1514
1544
 
@@ -1527,6 +1557,7 @@ module Aws::Batch
1527
1557
  #
1528
1558
  class DescribeJobsRequest < Struct.new(
1529
1559
  :jobs)
1560
+ SENSITIVE = []
1530
1561
  include Aws::Structure
1531
1562
  end
1532
1563
 
@@ -1538,6 +1569,7 @@ module Aws::Batch
1538
1569
  #
1539
1570
  class DescribeJobsResponse < Struct.new(
1540
1571
  :jobs)
1572
+ SENSITIVE = []
1541
1573
  include Aws::Structure
1542
1574
  end
1543
1575
 
@@ -1573,6 +1605,7 @@ module Aws::Batch
1573
1605
  :host_path,
1574
1606
  :container_path,
1575
1607
  :permissions)
1608
+ SENSITIVE = []
1576
1609
  include Aws::Structure
1577
1610
  end
1578
1611
 
@@ -1604,6 +1637,7 @@ module Aws::Batch
1604
1637
  #
1605
1638
  class Host < Struct.new(
1606
1639
  :source_path)
1640
+ SENSITIVE = []
1607
1641
  include Aws::Structure
1608
1642
  end
1609
1643
 
@@ -1675,6 +1709,7 @@ module Aws::Batch
1675
1709
  :container_properties,
1676
1710
  :timeout,
1677
1711
  :node_properties)
1712
+ SENSITIVE = []
1678
1713
  include Aws::Structure
1679
1714
  end
1680
1715
 
@@ -1701,6 +1736,7 @@ module Aws::Batch
1701
1736
  class JobDependency < Struct.new(
1702
1737
  :job_id,
1703
1738
  :type)
1739
+ SENSITIVE = []
1704
1740
  include Aws::Structure
1705
1741
  end
1706
1742
 
@@ -1824,6 +1860,7 @@ module Aws::Batch
1824
1860
  :node_properties,
1825
1861
  :array_properties,
1826
1862
  :timeout)
1863
+ SENSITIVE = []
1827
1864
  include Aws::Structure
1828
1865
  end
1829
1866
 
@@ -1870,6 +1907,7 @@ module Aws::Batch
1870
1907
  :status_reason,
1871
1908
  :priority,
1872
1909
  :compute_environment_order)
1910
+ SENSITIVE = []
1873
1911
  include Aws::Structure
1874
1912
  end
1875
1913
 
@@ -1937,6 +1975,7 @@ module Aws::Batch
1937
1975
  :container,
1938
1976
  :array_properties,
1939
1977
  :node_properties)
1978
+ SENSITIVE = []
1940
1979
  include Aws::Structure
1941
1980
  end
1942
1981
 
@@ -1959,6 +1998,7 @@ module Aws::Batch
1959
1998
  #
1960
1999
  class JobTimeout < Struct.new(
1961
2000
  :attempt_duration_seconds)
2001
+ SENSITIVE = []
1962
2002
  include Aws::Structure
1963
2003
  end
1964
2004
 
@@ -1987,6 +2027,7 @@ module Aws::Batch
1987
2027
  class KeyValuePair < Struct.new(
1988
2028
  :name,
1989
2029
  :value)
2030
+ SENSITIVE = []
1990
2031
  include Aws::Structure
1991
2032
  end
1992
2033
 
@@ -2023,6 +2064,7 @@ module Aws::Batch
2023
2064
  :launch_template_id,
2024
2065
  :launch_template_name,
2025
2066
  :version)
2067
+ SENSITIVE = []
2026
2068
  include Aws::Structure
2027
2069
  end
2028
2070
 
@@ -2058,6 +2100,7 @@ module Aws::Batch
2058
2100
  #
2059
2101
  class LinuxParameters < Struct.new(
2060
2102
  :devices)
2103
+ SENSITIVE = []
2061
2104
  include Aws::Structure
2062
2105
  end
2063
2106
 
@@ -2128,6 +2171,7 @@ module Aws::Batch
2128
2171
  :job_status,
2129
2172
  :max_results,
2130
2173
  :next_token)
2174
+ SENSITIVE = []
2131
2175
  include Aws::Structure
2132
2176
  end
2133
2177
 
@@ -2147,6 +2191,7 @@ module Aws::Batch
2147
2191
  class ListJobsResponse < Struct.new(
2148
2192
  :job_summary_list,
2149
2193
  :next_token)
2194
+ SENSITIVE = []
2150
2195
  include Aws::Structure
2151
2196
  end
2152
2197
 
@@ -2188,6 +2233,7 @@ module Aws::Batch
2188
2233
  :container_path,
2189
2234
  :read_only,
2190
2235
  :source_volume)
2236
+ SENSITIVE = []
2191
2237
  include Aws::Structure
2192
2238
  end
2193
2239
 
@@ -2212,6 +2258,7 @@ module Aws::Batch
2212
2258
  :attachment_id,
2213
2259
  :ipv6_address,
2214
2260
  :private_ipv_4_address)
2261
+ SENSITIVE = []
2215
2262
  include Aws::Structure
2216
2263
  end
2217
2264
 
@@ -2233,6 +2280,7 @@ module Aws::Batch
2233
2280
  class NodeDetails < Struct.new(
2234
2281
  :node_index,
2235
2282
  :is_main_node)
2283
+ SENSITIVE = []
2236
2284
  include Aws::Structure
2237
2285
  end
2238
2286
 
@@ -2294,6 +2342,7 @@ module Aws::Batch
2294
2342
  class NodeOverrides < Struct.new(
2295
2343
  :num_nodes,
2296
2344
  :node_property_overrides)
2345
+ SENSITIVE = []
2297
2346
  include Aws::Structure
2298
2347
  end
2299
2348
 
@@ -2387,6 +2436,7 @@ module Aws::Batch
2387
2436
  :num_nodes,
2388
2437
  :main_node,
2389
2438
  :node_range_properties)
2439
+ SENSITIVE = []
2390
2440
  include Aws::Structure
2391
2441
  end
2392
2442
 
@@ -2414,6 +2464,7 @@ module Aws::Batch
2414
2464
  :is_main_node,
2415
2465
  :num_nodes,
2416
2466
  :node_index)
2467
+ SENSITIVE = []
2417
2468
  include Aws::Structure
2418
2469
  end
2419
2470
 
@@ -2462,6 +2513,7 @@ module Aws::Batch
2462
2513
  class NodePropertyOverride < Struct.new(
2463
2514
  :target_nodes,
2464
2515
  :container_overrides)
2516
+ SENSITIVE = []
2465
2517
  include Aws::Structure
2466
2518
  end
2467
2519
 
@@ -2549,6 +2601,7 @@ module Aws::Batch
2549
2601
  class NodeRangeProperty < Struct.new(
2550
2602
  :target_nodes,
2551
2603
  :container)
2604
+ SENSITIVE = []
2552
2605
  include Aws::Structure
2553
2606
  end
2554
2607
 
@@ -2755,6 +2808,7 @@ module Aws::Batch
2755
2808
  :node_properties,
2756
2809
  :retry_strategy,
2757
2810
  :timeout)
2811
+ SENSITIVE = []
2758
2812
  include Aws::Structure
2759
2813
  end
2760
2814
 
@@ -2776,6 +2830,7 @@ module Aws::Batch
2776
2830
  :job_definition_name,
2777
2831
  :job_definition_arn,
2778
2832
  :revision)
2833
+ SENSITIVE = []
2779
2834
  include Aws::Structure
2780
2835
  end
2781
2836
 
@@ -2807,6 +2862,7 @@ module Aws::Batch
2807
2862
  class ResourceRequirement < Struct.new(
2808
2863
  :value,
2809
2864
  :type)
2865
+ SENSITIVE = []
2810
2866
  include Aws::Structure
2811
2867
  end
2812
2868
 
@@ -2830,6 +2886,7 @@ module Aws::Batch
2830
2886
  #
2831
2887
  class RetryStrategy < Struct.new(
2832
2888
  :attempts)
2889
+ SENSITIVE = []
2833
2890
  include Aws::Structure
2834
2891
  end
2835
2892
 
@@ -2842,6 +2899,7 @@ module Aws::Batch
2842
2899
  #
2843
2900
  class ServerException < Struct.new(
2844
2901
  :message)
2902
+ SENSITIVE = []
2845
2903
  include Aws::Structure
2846
2904
  end
2847
2905
 
@@ -3014,6 +3072,7 @@ module Aws::Batch
3014
3072
  :node_overrides,
3015
3073
  :retry_strategy,
3016
3074
  :timeout)
3075
+ SENSITIVE = []
3017
3076
  include Aws::Structure
3018
3077
  end
3019
3078
 
@@ -3030,6 +3089,7 @@ module Aws::Batch
3030
3089
  class SubmitJobResponse < Struct.new(
3031
3090
  :job_name,
3032
3091
  :job_id)
3092
+ SENSITIVE = []
3033
3093
  include Aws::Structure
3034
3094
  end
3035
3095
 
@@ -3057,6 +3117,7 @@ module Aws::Batch
3057
3117
  class TerminateJobRequest < Struct.new(
3058
3118
  :job_id,
3059
3119
  :reason)
3120
+ SENSITIVE = []
3060
3121
  include Aws::Structure
3061
3122
  end
3062
3123
 
@@ -3093,6 +3154,7 @@ module Aws::Batch
3093
3154
  :hard_limit,
3094
3155
  :name,
3095
3156
  :soft_limit)
3157
+ SENSITIVE = []
3096
3158
  include Aws::Structure
3097
3159
  end
3098
3160
 
@@ -3151,6 +3213,7 @@ module Aws::Batch
3151
3213
  :state,
3152
3214
  :compute_resources,
3153
3215
  :service_role)
3216
+ SENSITIVE = []
3154
3217
  include Aws::Structure
3155
3218
  end
3156
3219
 
@@ -3167,6 +3230,7 @@ module Aws::Batch
3167
3230
  class UpdateComputeEnvironmentResponse < Struct.new(
3168
3231
  :compute_environment_name,
3169
3232
  :compute_environment_arn)
3233
+ SENSITIVE = []
3170
3234
  include Aws::Structure
3171
3235
  end
3172
3236
 
@@ -3216,6 +3280,7 @@ module Aws::Batch
3216
3280
  :state,
3217
3281
  :priority,
3218
3282
  :compute_environment_order)
3283
+ SENSITIVE = []
3219
3284
  include Aws::Structure
3220
3285
  end
3221
3286
 
@@ -3232,6 +3297,7 @@ module Aws::Batch
3232
3297
  class UpdateJobQueueResponse < Struct.new(
3233
3298
  :job_queue_name,
3234
3299
  :job_queue_arn)
3300
+ SENSITIVE = []
3235
3301
  include Aws::Structure
3236
3302
  end
3237
3303
 
@@ -3268,6 +3334,7 @@ module Aws::Batch
3268
3334
  class Volume < Struct.new(
3269
3335
  :host,
3270
3336
  :name)
3337
+ SENSITIVE = []
3271
3338
  include Aws::Structure
3272
3339
  end
3273
3340
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.33.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-01-17 00:00:00.000000000 Z
11
+ date: 2020-06-23 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
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS Batch