aws-sdk-codepipeline 1.1.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 545cf5ae4ff7edd0428b6ae20c0823d8825ddbb0
4
- data.tar.gz: 6da6ee10f56064fed74934731cf0a44c45b1621e
3
+ metadata.gz: b898d040f65f01393bcd3e83fc252d4c6fe9fbe5
4
+ data.tar.gz: 2675d2c74f8c58f57d57c807951f7e6aad4fc130
5
5
  SHA512:
6
- metadata.gz: 217f628603405ec1f202729f5c6d68959a61e352b6c3f1f2484310683db803bf658b67b6719b56374b86ac971eea6b0cc23f6cea2b4cd921899c1453b2e0458f
7
- data.tar.gz: 6b9c7c913d8e1455ca697457a51dbe22039d908aa2398f0786d4d56aee66b499d21866869a36cff55010b4203c19d126bf6519e526f84715c00692621919568c
6
+ metadata.gz: d967c5dcaa28a19f338ad99852a88d7091440569a06dbc63b930c5c86fb7aa1d468f1e3142d26f225c38ba2208e413754cb06f38d451c0ef4f589082368ad66f
7
+ data.tar.gz: 2c98852772615410cfc782183935320d88e59c080a0b52d81009a2757e8c03b6a2508a0c7d063783525b21760106766fa06ad18982cf86f30d62369917d15f31
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
42
42
  # @service
43
43
  module Aws::CodePipeline
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -989,6 +989,11 @@ module Aws::CodePipeline
989
989
  # resp.pipeline_execution_summaries[0].status #=> String, one of "InProgress", "Succeeded", "Superseded", "Failed"
990
990
  # resp.pipeline_execution_summaries[0].start_time #=> Time
991
991
  # resp.pipeline_execution_summaries[0].last_update_time #=> Time
992
+ # resp.pipeline_execution_summaries[0].source_revisions #=> Array
993
+ # resp.pipeline_execution_summaries[0].source_revisions[0].action_name #=> String
994
+ # resp.pipeline_execution_summaries[0].source_revisions[0].revision_id #=> String
995
+ # resp.pipeline_execution_summaries[0].source_revisions[0].revision_summary #=> String
996
+ # resp.pipeline_execution_summaries[0].source_revisions[0].revision_url #=> String
992
997
  # resp.next_token #=> String
993
998
  #
994
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelineExecutions AWS API Documentation
@@ -1635,7 +1640,7 @@ module Aws::CodePipeline
1635
1640
  params: params,
1636
1641
  config: config)
1637
1642
  context[:gem_name] = 'aws-sdk-codepipeline'
1638
- context[:gem_version] = '1.1.0'
1643
+ context[:gem_version] = '1.2.0'
1639
1644
  Seahorse::Client::Request.new(handlers, context)
1640
1645
  end
1641
1646
 
@@ -182,6 +182,8 @@ module Aws::CodePipeline
182
182
  S3ObjectKey = Shapes::StringShape.new(name: 'S3ObjectKey')
183
183
  SecretAccessKey = Shapes::StringShape.new(name: 'SecretAccessKey')
184
184
  SessionToken = Shapes::StringShape.new(name: 'SessionToken')
185
+ SourceRevision = Shapes::StructureShape.new(name: 'SourceRevision')
186
+ SourceRevisionList = Shapes::ListShape.new(name: 'SourceRevisionList')
185
187
  StageActionDeclarationList = Shapes::ListShape.new(name: 'StageActionDeclarationList')
186
188
  StageBlockerDeclarationList = Shapes::ListShape.new(name: 'StageBlockerDeclarationList')
187
189
  StageContext = Shapes::StructureShape.new(name: 'StageContext')
@@ -524,6 +526,7 @@ module Aws::CodePipeline
524
526
  PipelineExecutionSummary.add_member(:status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "status"))
525
527
  PipelineExecutionSummary.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
526
528
  PipelineExecutionSummary.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
529
+ PipelineExecutionSummary.add_member(:source_revisions, Shapes::ShapeRef.new(shape: SourceRevisionList, location_name: "sourceRevisions"))
527
530
  PipelineExecutionSummary.struct_class = Types::PipelineExecutionSummary
528
531
 
529
532
  PipelineExecutionSummaryList.member = Shapes::ShapeRef.new(shape: PipelineExecutionSummary)
@@ -616,6 +619,14 @@ module Aws::CodePipeline
616
619
  S3ArtifactLocation.add_member(:object_key, Shapes::ShapeRef.new(shape: S3ObjectKey, required: true, location_name: "objectKey"))
617
620
  S3ArtifactLocation.struct_class = Types::S3ArtifactLocation
618
621
 
622
+ SourceRevision.add_member(:action_name, Shapes::ShapeRef.new(shape: ActionName, required: true, location_name: "actionName"))
623
+ SourceRevision.add_member(:revision_id, Shapes::ShapeRef.new(shape: Revision, location_name: "revisionId"))
624
+ SourceRevision.add_member(:revision_summary, Shapes::ShapeRef.new(shape: RevisionSummary, location_name: "revisionSummary"))
625
+ SourceRevision.add_member(:revision_url, Shapes::ShapeRef.new(shape: Url, location_name: "revisionUrl"))
626
+ SourceRevision.struct_class = Types::SourceRevision
627
+
628
+ SourceRevisionList.member = Shapes::ShapeRef.new(shape: SourceRevision)
629
+
619
630
  StageActionDeclarationList.member = Shapes::ShapeRef.new(shape: ActionDeclaration)
620
631
 
621
632
  StageBlockerDeclarationList.member = Shapes::ShapeRef.new(shape: BlockerDeclaration)
@@ -1994,13 +1994,17 @@ module Aws::CodePipeline
1994
1994
  # timestamp format.
1995
1995
  # @return [Time]
1996
1996
  #
1997
+ # @!attribute [rw] source_revisions
1998
+ # @return [Array<Types::SourceRevision>]
1999
+ #
1997
2000
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecutionSummary AWS API Documentation
1998
2001
  #
1999
2002
  class PipelineExecutionSummary < Struct.new(
2000
2003
  :pipeline_execution_id,
2001
2004
  :status,
2002
2005
  :start_time,
2003
- :last_update_time)
2006
+ :last_update_time,
2007
+ :source_revisions)
2004
2008
  include Aws::Structure
2005
2009
  end
2006
2010
 
@@ -2545,6 +2549,28 @@ module Aws::CodePipeline
2545
2549
  include Aws::Structure
2546
2550
  end
2547
2551
 
2552
+ # @!attribute [rw] action_name
2553
+ # @return [String]
2554
+ #
2555
+ # @!attribute [rw] revision_id
2556
+ # @return [String]
2557
+ #
2558
+ # @!attribute [rw] revision_summary
2559
+ # @return [String]
2560
+ #
2561
+ # @!attribute [rw] revision_url
2562
+ # @return [String]
2563
+ #
2564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/SourceRevision AWS API Documentation
2565
+ #
2566
+ class SourceRevision < Struct.new(
2567
+ :action_name,
2568
+ :revision_id,
2569
+ :revision_summary,
2570
+ :revision_url)
2571
+ include Aws::Structure
2572
+ end
2573
+
2548
2574
  # Represents information about a stage to a job worker.
2549
2575
  #
2550
2576
  # @!attribute [rw] name
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codepipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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: 2017-09-20 00:00:00.000000000 Z
11
+ date: 2018-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.5.1
78
+ rubygems_version: 2.5.2.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: AWS SDK for Ruby - CodePipeline