aws-sdk-batch 1.31.0 → 1.36.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: 409fb6859a04ce826dcc57ba02fdac27e0364b9b429f1791878dab39d7775f90
4
- data.tar.gz: c78c86d9f79a96594d826cb569b351b1b4a73457251ea1a193a91f655a4e3a6d
3
+ metadata.gz: e8e0f0974993d2ea2cd136f0b804c1731cff654bcb310683a388b48e5a499055
4
+ data.tar.gz: 1c19dab2477d44f87cb1cd4917778e4b6053a578b593947b031a8961ad6c5855
5
5
  SHA512:
6
- metadata.gz: 4a3a5c4463196fa448131179cd3770b4c565c9ae1a380138267e4360f711b3a603c66fcd41250901aa67615510e2009e504247623380b9b009dd497d734c9c50
7
- data.tar.gz: 6927c0a689319311dbc008aba769ce125431f3d9090b0d8e00416cf79d270412ac2a4df8bc6ab40f923682c0a29638f05760b90b4351544bad65a12549bc99f6
6
+ metadata.gz: adca149b71e7e1465d75287d7d1cf0ee4ef43062f1f022854e97189ccc8fb589aa46977d3f5604e13332140e139198217164e2a6a72e8df57cecea24000cb222
7
+ data.tar.gz: 31c4e9c51d73491bf7df3fd053cd8baa91f8a9696aaf2f838d583b7d75a8debeff39c6d14ea63de2ae50e7511a3d469b1542e18fd4aeedba634e067ea3d0e014
@@ -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-batch/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::Batch
47
50
 
48
- GEM_VERSION = '1.31.0'
51
+ GEM_VERSION = '1.36.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:
@@ -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::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
 
@@ -81,13 +85,28 @@ module Aws::Batch
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,10 +116,10 @@ module Aws::Batch
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
@@ -161,7 +180,7 @@ module Aws::Batch
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 a valid 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
@@ -2205,7 +2224,7 @@ module Aws::Batch
2205
2224
  params: params,
2206
2225
  config: config)
2207
2226
  context[:gem_name] = 'aws-sdk-batch'
2208
- context[:gem_version] = '1.31.0'
2227
+ context[:gem_version] = '1.36.0'
2209
2228
  Seahorse::Client::Request.new(handlers, context)
2210
2229
  end
2211
2230
 
@@ -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:
@@ -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.31.0
4
+ version: 1.36.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-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-15 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