aws-sdk-batch 1.0.0.rc10 → 1.0.0.rc11
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 +4 -4
- data/lib/aws-sdk-batch.rb +1 -1
- data/lib/aws-sdk-batch/client.rb +3 -1
- data/lib/aws-sdk-batch/client_api.rb +2 -0
- data/lib/aws-sdk-batch/types.rb +10 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14ba55f385057f7d7f0acd0724c7e6ee10914616
|
4
|
+
data.tar.gz: 54aa7324920091af7203a2cbdd686072ba07db1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a651bd2d58e21daa922cdf300d62b76248a762c313b90da81df146d4c2b01018e03512cae7e196b6cedcf036da74fbd8098f2872c0c29ec0c49de33ea62029c
|
7
|
+
data.tar.gz: 5d6db38bc476906485f969cfa61da24f18d53ac09cc09f979865d0b75b88ec8b7a4ab3669b38ab212a11ecfe14a558c2aeae3884931c5c20271cf5e701eefaf0
|
data/lib/aws-sdk-batch.rb
CHANGED
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -1048,6 +1048,7 @@ module Aws::Batch
|
|
1048
1048
|
# resp.jobs[0].attempts[0].container.task_arn #=> String
|
1049
1049
|
# resp.jobs[0].attempts[0].container.exit_code #=> Integer
|
1050
1050
|
# resp.jobs[0].attempts[0].container.reason #=> String
|
1051
|
+
# resp.jobs[0].attempts[0].container.log_stream_name #=> String
|
1051
1052
|
# resp.jobs[0].attempts[0].started_at #=> Integer
|
1052
1053
|
# resp.jobs[0].attempts[0].stopped_at #=> Integer
|
1053
1054
|
# resp.jobs[0].attempts[0].status_reason #=> String
|
@@ -1088,6 +1089,7 @@ module Aws::Batch
|
|
1088
1089
|
# resp.jobs[0].container.reason #=> String
|
1089
1090
|
# resp.jobs[0].container.container_instance_arn #=> String
|
1090
1091
|
# resp.jobs[0].container.task_arn #=> String
|
1092
|
+
# resp.jobs[0].container.log_stream_name #=> String
|
1091
1093
|
#
|
1092
1094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/DescribeJobs AWS API Documentation
|
1093
1095
|
#
|
@@ -1626,7 +1628,7 @@ module Aws::Batch
|
|
1626
1628
|
params: params,
|
1627
1629
|
config: config)
|
1628
1630
|
context[:gem_name] = 'aws-sdk-batch'
|
1629
|
-
context[:gem_version] = '1.0.0.
|
1631
|
+
context[:gem_version] = '1.0.0.rc11'
|
1630
1632
|
Seahorse::Client::Request.new(handlers, context)
|
1631
1633
|
end
|
1632
1634
|
|
@@ -97,6 +97,7 @@ module Aws::Batch
|
|
97
97
|
AttemptContainerDetail.add_member(:task_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskArn"))
|
98
98
|
AttemptContainerDetail.add_member(:exit_code, Shapes::ShapeRef.new(shape: Integer, location_name: "exitCode"))
|
99
99
|
AttemptContainerDetail.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
|
100
|
+
AttemptContainerDetail.add_member(:log_stream_name, Shapes::ShapeRef.new(shape: String, location_name: "logStreamName"))
|
100
101
|
AttemptContainerDetail.struct_class = Types::AttemptContainerDetail
|
101
102
|
|
102
103
|
AttemptDetail.add_member(:container, Shapes::ShapeRef.new(shape: AttemptContainerDetail, location_name: "container"))
|
@@ -168,6 +169,7 @@ module Aws::Batch
|
|
168
169
|
ContainerDetail.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
|
169
170
|
ContainerDetail.add_member(:container_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "containerInstanceArn"))
|
170
171
|
ContainerDetail.add_member(:task_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskArn"))
|
172
|
+
ContainerDetail.add_member(:log_stream_name, Shapes::ShapeRef.new(shape: String, location_name: "logStreamName"))
|
171
173
|
ContainerDetail.struct_class = Types::ContainerDetail
|
172
174
|
|
173
175
|
ContainerOverrides.add_member(:vcpus, Shapes::ShapeRef.new(shape: Integer, location_name: "vcpus"))
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -31,13 +31,17 @@ module Aws::Batch
|
|
31
31
|
# additional details about a running or stopped container.
|
32
32
|
# @return [String]
|
33
33
|
#
|
34
|
+
# @!attribute [rw] log_stream_name
|
35
|
+
# @return [String]
|
36
|
+
#
|
34
37
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/AttemptContainerDetail AWS API Documentation
|
35
38
|
#
|
36
39
|
class AttemptContainerDetail < Struct.new(
|
37
40
|
:container_instance_arn,
|
38
41
|
:task_arn,
|
39
42
|
:exit_code,
|
40
|
-
:reason
|
43
|
+
:reason,
|
44
|
+
:log_stream_name)
|
41
45
|
include Aws::Structure
|
42
46
|
end
|
43
47
|
|
@@ -404,6 +408,9 @@ module Aws::Batch
|
|
404
408
|
# associated with the container job.
|
405
409
|
# @return [String]
|
406
410
|
#
|
411
|
+
# @!attribute [rw] log_stream_name
|
412
|
+
# @return [String]
|
413
|
+
#
|
407
414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ContainerDetail AWS API Documentation
|
408
415
|
#
|
409
416
|
class ContainerDetail < Struct.new(
|
@@ -422,7 +429,8 @@ module Aws::Batch
|
|
422
429
|
:exit_code,
|
423
430
|
:reason,
|
424
431
|
:container_instance_arn,
|
425
|
-
:task_arn
|
432
|
+
:task_arn,
|
433
|
+
:log_stream_name)
|
426
434
|
include Aws::Structure
|
427
435
|
end
|
428
436
|
|
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.0.0.
|
4
|
+
version: 1.0.0.rc11
|
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: 2017-08-
|
11
|
+
date: 2017-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc20
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc20
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|