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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0538d7f293f61462ca5d67f7dbf1b7253650be0f
4
- data.tar.gz: 60487a1f48320a384fde7ea4cb4deb04359f4d14
3
+ metadata.gz: 14ba55f385057f7d7f0acd0724c7e6ee10914616
4
+ data.tar.gz: 54aa7324920091af7203a2cbdd686072ba07db1c
5
5
  SHA512:
6
- metadata.gz: e2288f9b6d662679819176971087317f141f691b474b15374fd66dfd628f861c941a981ff277de91a04aaba8d68ee296021de1de36ea631dba87028a396c4bc1
7
- data.tar.gz: 66fccf6db41d8feeb11b8a0d89d20e48a25dc6af9c6e2ec0c31ee1fc0a764236429d47d525453cb7ba2f5b00c1557bd3cae86394bdbafb09baf0087da9c97142
6
+ metadata.gz: 4a651bd2d58e21daa922cdf300d62b76248a762c313b90da81df146d4c2b01018e03512cae7e196b6cedcf036da74fbd8098f2872c0c29ec0c49de33ea62029c
7
+ data.tar.gz: 5d6db38bc476906485f969cfa61da24f18d53ac09cc09f979865d0b75b88ec8b7a4ab3669b38ab212a11ecfe14a558c2aeae3884931c5c20271cf5e701eefaf0
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-batch/customizations'
42
42
  # @service
43
43
  module Aws::Batch
44
44
 
45
- GEM_VERSION = '1.0.0.rc10'
45
+ GEM_VERSION = '1.0.0.rc11'
46
46
 
47
47
  end
@@ -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.rc10'
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"))
@@ -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.rc10
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-02 00:00:00.000000000 Z
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.rc19
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.rc19
26
+ version: 3.0.0.rc20
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement