aws-sdk-batch 1.29.0 → 1.34.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 +5 -5
- data/lib/aws-sdk-batch.rb +3 -1
- data/lib/aws-sdk-batch/client.rb +36 -21
- data/lib/aws-sdk-batch/client_api.rb +2 -0
- data/lib/aws-sdk-batch/errors.rb +2 -0
- data/lib/aws-sdk-batch/resource.rb +3 -7
- data/lib/aws-sdk-batch/types.rb +67 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c5626936075968aa98a1b5028a097e3ea5c2c57edd3dc569d95975660c73940d
|
4
|
+
data.tar.gz: 0f613e4d164197b21d7bd93db00997fa67afbde9e9af4da2539a46231aa79624
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c61a029dc8d0375fbf53dd4ccb73f234ed956562d8621ff0a0b4fbbe12f91964d5ba992c98bcf2c769246f0c834de8db9bd8f2efb8564b3c504650ad5eea6ca2
|
7
|
+
data.tar.gz: d37fa6d3a60bdadd7f4149457ddec1b1cde969815c50c77ac9751da84417f81a533fa4ba53cb5b215acc27618b11cdb8d3c280bc4e9e620f36c20e45caf2ed86
|
data/lib/aws-sdk-batch.rb
CHANGED
@@ -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:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-batch/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Batch
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.34.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -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
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:batch)
|
|
32
35
|
module Aws::Batch
|
33
36
|
# An API client for Batch. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::Batch::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::Batch
|
|
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
|
|
@@ -105,7 +109,7 @@ module Aws::Batch
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::Batch
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Batch
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::Batch
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::Batch
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::Batch
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -862,6 +869,8 @@ module Aws::Batch
|
|
862
869
|
# * {Types::DescribeComputeEnvironmentsResponse#compute_environments #compute_environments} => Array<Types::ComputeEnvironmentDetail>
|
863
870
|
# * {Types::DescribeComputeEnvironmentsResponse#next_token #next_token} => String
|
864
871
|
#
|
872
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
873
|
+
#
|
865
874
|
#
|
866
875
|
# @example Example: To describe a compute environment
|
867
876
|
#
|
@@ -1005,6 +1014,8 @@ module Aws::Batch
|
|
1005
1014
|
# * {Types::DescribeJobDefinitionsResponse#job_definitions #job_definitions} => Array<Types::JobDefinition>
|
1006
1015
|
# * {Types::DescribeJobDefinitionsResponse#next_token #next_token} => String
|
1007
1016
|
#
|
1017
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1018
|
+
#
|
1008
1019
|
#
|
1009
1020
|
# @example Example: To describe active job definitions
|
1010
1021
|
#
|
@@ -1179,6 +1190,8 @@ module Aws::Batch
|
|
1179
1190
|
# * {Types::DescribeJobQueuesResponse#job_queues #job_queues} => Array<Types::JobQueueDetail>
|
1180
1191
|
# * {Types::DescribeJobQueuesResponse#next_token #next_token} => String
|
1181
1192
|
#
|
1193
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1194
|
+
#
|
1182
1195
|
#
|
1183
1196
|
# @example Example: To describe a job queue
|
1184
1197
|
#
|
@@ -1490,6 +1503,8 @@ module Aws::Batch
|
|
1490
1503
|
# * {Types::ListJobsResponse#job_summary_list #job_summary_list} => Array<Types::JobSummary>
|
1491
1504
|
# * {Types::ListJobsResponse#next_token #next_token} => String
|
1492
1505
|
#
|
1506
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1507
|
+
#
|
1493
1508
|
#
|
1494
1509
|
# @example Example: To list running jobs
|
1495
1510
|
#
|
@@ -2194,7 +2209,7 @@ module Aws::Batch
|
|
2194
2209
|
params: params,
|
2195
2210
|
config: config)
|
2196
2211
|
context[:gem_name] = 'aws-sdk-batch'
|
2197
|
-
context[:gem_version] = '1.
|
2212
|
+
context[:gem_version] = '1.34.0'
|
2198
2213
|
Seahorse::Client::Request.new(handlers, context)
|
2199
2214
|
end
|
2200
2215
|
|
data/lib/aws-sdk-batch/errors.rb
CHANGED
@@ -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,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Batch
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Batch::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Batch::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Batch::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -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.
|
4
|
+
version: 1.34.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-07-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.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.
|
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.
|
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
|