aws-sdk-codepipeline 1.15.0 → 1.16.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: 6942366c64b3076e5c5d3f5a08a005af8b5af78e
4
- data.tar.gz: a85cb0f7a767d90f66aa1914e1170b074eba6b79
3
+ metadata.gz: e194fd621887767cba5ab9fb9a687540319f56e3
4
+ data.tar.gz: '083b9a7afbe2db5fd0cb05d172c1542243921d29'
5
5
  SHA512:
6
- metadata.gz: 4418b6f245cfddf51194ae755d85d1775ab9857e159cf87a73ed7af41d147f8c7688bf74222b98d2a49baf1dbd3117fa150d62925217f44ee3be62cb7d9184db
7
- data.tar.gz: 1feedac5d01184bcd0cb0a410519730a073e93cd5d29fbe1692e087f9e3b8dc94ec34575f5e43bef92b4e6f31356f6be9cdb363cda44e6afcaab6898362be776
6
+ metadata.gz: ba8a88cbb7c76071ec045d7855f9712725d8552ae0e3e213220d43d8cb782858864709e23b40e33451a45418083606a99dc0a96170209e73a6051a7b1713aac6
7
+ data.tar.gz: 83af3740cbb5e4f8654ba6ec23ae3a9caaa9a85c1c10a544ceaeae2edbbf139d0a7cecf2400ce94ed972b58032910724018cd036c9d369779b72bf4564fe3648
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
42
42
  # @service
43
43
  module Aws::CodePipeline
44
44
 
45
- GEM_VERSION = '1.15.0'
45
+ GEM_VERSION = '1.16.0'
46
46
 
47
47
  end
@@ -209,6 +209,49 @@ module Aws::CodePipeline
209
209
  # When `true`, request parameters are validated before
210
210
  # sending the request.
211
211
  #
212
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
213
+ # requests through. Formatted like 'http://proxy.com:123'.
214
+ #
215
+ # @option options [Float] :http_open_timeout (15) The number of
216
+ # seconds to wait when opening a HTTP session before rasing a
217
+ # `Timeout::Error`.
218
+ #
219
+ # @option options [Integer] :http_read_timeout (60) The default
220
+ # number of seconds to wait for response data. This value can
221
+ # safely be set
222
+ # per-request on the session yeidled by {#session_for}.
223
+ #
224
+ # @option options [Float] :http_idle_timeout (5) The number of
225
+ # seconds a connection is allowed to sit idble before it is
226
+ # considered stale. Stale connections are closed and removed
227
+ # from the pool before making a request.
228
+ #
229
+ # @option options [Float] :http_continue_timeout (1) The number of
230
+ # seconds to wait for a 100-continue response before sending the
231
+ # request body. This option has no effect unless the request has
232
+ # "Expect" header set to "100-continue". Defaults to `nil` which
233
+ # disables this behaviour. This value can safely be set per
234
+ # request on the session yeidled by {#session_for}.
235
+ #
236
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
237
+ # HTTP debug output will be sent to the `:logger`.
238
+ #
239
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
240
+ # SSL peer certificates are verified when establishing a
241
+ # connection.
242
+ #
243
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
244
+ # certificate authority bundle file that should be used when
245
+ # verifying peer certificates. If you do not pass
246
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
247
+ # will be used if available.
248
+ #
249
+ # @option options [String] :ssl_ca_directory Full path of the
250
+ # directory that contains the unbundled SSL certificate
251
+ # authority files for verifying peer certificates. If you do
252
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
253
+ # system default will be used if available.
254
+ #
212
255
  def initialize(*args)
213
256
  super
214
257
  end
@@ -752,6 +795,9 @@ module Aws::CodePipeline
752
795
  # resp.job_details.data.pipeline_context.pipeline_name #=> String
753
796
  # resp.job_details.data.pipeline_context.stage.name #=> String
754
797
  # resp.job_details.data.pipeline_context.action.name #=> String
798
+ # resp.job_details.data.pipeline_context.action.action_execution_id #=> String
799
+ # resp.job_details.data.pipeline_context.pipeline_arn #=> String
800
+ # resp.job_details.data.pipeline_context.pipeline_execution_id #=> String
755
801
  # resp.job_details.data.input_artifacts #=> Array
756
802
  # resp.job_details.data.input_artifacts[0].name #=> String
757
803
  # resp.job_details.data.input_artifacts[0].revision #=> String
@@ -1007,6 +1053,9 @@ module Aws::CodePipeline
1007
1053
  # resp.job_details.data.pipeline_context.pipeline_name #=> String
1008
1054
  # resp.job_details.data.pipeline_context.stage.name #=> String
1009
1055
  # resp.job_details.data.pipeline_context.action.name #=> String
1056
+ # resp.job_details.data.pipeline_context.action.action_execution_id #=> String
1057
+ # resp.job_details.data.pipeline_context.pipeline_arn #=> String
1058
+ # resp.job_details.data.pipeline_context.pipeline_execution_id #=> String
1010
1059
  # resp.job_details.data.input_artifacts #=> Array
1011
1060
  # resp.job_details.data.input_artifacts[0].name #=> String
1012
1061
  # resp.job_details.data.input_artifacts[0].revision #=> String
@@ -1048,8 +1097,13 @@ module Aws::CodePipeline
1048
1097
  # @option params [Integer] :max_results
1049
1098
  # The maximum number of results to return in a single call. To retrieve
1050
1099
  # the remaining results, make another call with the returned nextToken
1051
- # value. The action execution history is limited to the most recent 12
1052
- # months, based on action execution start times. Default value is 100.
1100
+ # value. Action execution history is retained for up to 12 months, based
1101
+ # on action execution start times. Default value is 100.
1102
+ #
1103
+ # <note markdown="1"> Detailed execution history is available for executions run on or after
1104
+ # February 21, 2019.
1105
+ #
1106
+ # </note>
1053
1107
  #
1054
1108
  # @option params [String] :next_token
1055
1109
  # The token that was returned from the previous ListActionExecutions
@@ -1180,9 +1234,8 @@ module Aws::CodePipeline
1180
1234
  # @option params [Integer] :max_results
1181
1235
  # The maximum number of results to return in a single call. To retrieve
1182
1236
  # the remaining results, make another call with the returned nextToken
1183
- # value. The available pipeline execution history is limited to the most
1184
- # recent 12 months, based on pipeline execution start times. Default
1185
- # value is 100.
1237
+ # value. Pipeline history is limited to the most recent 12 months, based
1238
+ # on pipeline execution start times. Default value is 100.
1186
1239
  #
1187
1240
  # @option params [String] :next_token
1188
1241
  # The token that was returned from the previous ListPipelineExecutions
@@ -1369,6 +1422,9 @@ module Aws::CodePipeline
1369
1422
  # resp.jobs[0].data.pipeline_context.pipeline_name #=> String
1370
1423
  # resp.jobs[0].data.pipeline_context.stage.name #=> String
1371
1424
  # resp.jobs[0].data.pipeline_context.action.name #=> String
1425
+ # resp.jobs[0].data.pipeline_context.action.action_execution_id #=> String
1426
+ # resp.jobs[0].data.pipeline_context.pipeline_arn #=> String
1427
+ # resp.jobs[0].data.pipeline_context.pipeline_execution_id #=> String
1372
1428
  # resp.jobs[0].data.input_artifacts #=> Array
1373
1429
  # resp.jobs[0].data.input_artifacts[0].name #=> String
1374
1430
  # resp.jobs[0].data.input_artifacts[0].revision #=> String
@@ -2033,7 +2089,7 @@ module Aws::CodePipeline
2033
2089
  params: params,
2034
2090
  config: config)
2035
2091
  context[:gem_name] = 'aws-sdk-codepipeline'
2036
- context[:gem_version] = '1.15.0'
2092
+ context[:gem_version] = '1.16.0'
2037
2093
  Seahorse::Client::Request.new(handlers, context)
2038
2094
  end
2039
2095
 
@@ -301,6 +301,7 @@ module Aws::CodePipeline
301
301
  ActionConfigurationPropertyList.member = Shapes::ShapeRef.new(shape: ActionConfigurationProperty)
302
302
 
303
303
  ActionContext.add_member(:name, Shapes::ShapeRef.new(shape: ActionName, location_name: "name"))
304
+ ActionContext.add_member(:action_execution_id, Shapes::ShapeRef.new(shape: ActionExecutionId, location_name: "actionExecutionId"))
304
305
  ActionContext.struct_class = Types::ActionContext
305
306
 
306
307
  ActionDeclaration.add_member(:name, Shapes::ShapeRef.new(shape: ActionName, required: true, location_name: "name"))
@@ -634,6 +635,8 @@ module Aws::CodePipeline
634
635
  PipelineContext.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "pipelineName"))
635
636
  PipelineContext.add_member(:stage, Shapes::ShapeRef.new(shape: StageContext, location_name: "stage"))
636
637
  PipelineContext.add_member(:action, Shapes::ShapeRef.new(shape: ActionContext, location_name: "action"))
638
+ PipelineContext.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "pipelineArn"))
639
+ PipelineContext.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, location_name: "pipelineExecutionId"))
637
640
  PipelineContext.struct_class = Types::PipelineContext
638
641
 
639
642
  PipelineDeclaration.add_member(:name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "name"))
@@ -220,10 +220,16 @@ module Aws::CodePipeline
220
220
  # The name of the action within the context of a job.
221
221
  # @return [String]
222
222
  #
223
+ # @!attribute [rw] action_execution_id
224
+ # The system-generated unique ID that corresponds to an action's
225
+ # execution.
226
+ # @return [String]
227
+ #
223
228
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionContext AWS API Documentation
224
229
  #
225
230
  class ActionContext < Struct.new(
226
- :name)
231
+ :name,
232
+ :action_execution_id)
227
233
  include Aws::Structure
228
234
  end
229
235
 
@@ -1805,6 +1811,10 @@ module Aws::CodePipeline
1805
1811
  #
1806
1812
  # @!attribute [rw] pipeline_context
1807
1813
  # Represents information about a pipeline to a job worker.
1814
+ #
1815
+ # <note markdown="1"> Includes `pipelineArn` and `pipelineExecutionId` for Custom jobs.
1816
+ #
1817
+ # </note>
1808
1818
  # @return [Types::PipelineContext]
1809
1819
  #
1810
1820
  # @!attribute [rw] input_artifacts
@@ -1895,9 +1905,13 @@ module Aws::CodePipeline
1895
1905
  # @!attribute [rw] max_results
1896
1906
  # The maximum number of results to return in a single call. To
1897
1907
  # retrieve the remaining results, make another call with the returned
1898
- # nextToken value. The action execution history is limited to the most
1899
- # recent 12 months, based on action execution start times. Default
1900
- # value is 100.
1908
+ # nextToken value. Action execution history is retained for up to 12
1909
+ # months, based on action execution start times. Default value is 100.
1910
+ #
1911
+ # <note markdown="1"> Detailed execution history is available for executions run on or
1912
+ # after February 21, 2019.
1913
+ #
1914
+ # </note>
1901
1915
  # @return [Integer]
1902
1916
  #
1903
1917
  # @!attribute [rw] next_token
@@ -2005,9 +2019,9 @@ module Aws::CodePipeline
2005
2019
  # @!attribute [rw] max_results
2006
2020
  # The maximum number of results to return in a single call. To
2007
2021
  # retrieve the remaining results, make another call with the returned
2008
- # nextToken value. The available pipeline execution history is limited
2009
- # to the most recent 12 months, based on pipeline execution start
2010
- # times. Default value is 100.
2022
+ # nextToken value. Pipeline history is limited to the most recent 12
2023
+ # months, based on pipeline execution start times. Default value is
2024
+ # 100.
2011
2025
  # @return [Integer]
2012
2026
  #
2013
2027
  # @!attribute [rw] next_token
@@ -2209,6 +2223,12 @@ module Aws::CodePipeline
2209
2223
 
2210
2224
  # Represents information about a pipeline to a job worker.
2211
2225
  #
2226
+ # <note markdown="1"> PipelineContext contains `pipelineArn` and `pipelineExecutionId` for
2227
+ # custom action jobs. The `pipelineArn` and `pipelineExecutionId` fields
2228
+ # are not populated for ThirdParty action jobs.
2229
+ #
2230
+ # </note>
2231
+ #
2212
2232
  # @!attribute [rw] pipeline_name
2213
2233
  # The name of the pipeline. This is a user-specified value. Pipeline
2214
2234
  # names must be unique across all pipeline names under an Amazon Web
@@ -2224,12 +2244,22 @@ module Aws::CodePipeline
2224
2244
  # pipeline.
2225
2245
  # @return [Types::ActionContext]
2226
2246
  #
2247
+ # @!attribute [rw] pipeline_arn
2248
+ # The pipeline execution ID provided to the job worker.
2249
+ # @return [String]
2250
+ #
2251
+ # @!attribute [rw] pipeline_execution_id
2252
+ # The pipeline Amazon Resource Name (ARN) provided to the job worker.
2253
+ # @return [String]
2254
+ #
2227
2255
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineContext AWS API Documentation
2228
2256
  #
2229
2257
  class PipelineContext < Struct.new(
2230
2258
  :pipeline_name,
2231
2259
  :stage,
2232
- :action)
2260
+ :action,
2261
+ :pipeline_arn,
2262
+ :pipeline_execution_id)
2233
2263
  include Aws::Structure
2234
2264
  end
2235
2265
 
@@ -3308,6 +3338,11 @@ module Aws::CodePipeline
3308
3338
  #
3309
3339
  # @!attribute [rw] pipeline_context
3310
3340
  # Represents information about a pipeline to a job worker.
3341
+ #
3342
+ # <note markdown="1"> Does not include `pipelineArn` and `pipelineExecutionId` for
3343
+ # ThirdParty jobs.
3344
+ #
3345
+ # </note>
3311
3346
  # @return [Types::PipelineContext]
3312
3347
  #
3313
3348
  # @!attribute [rw] input_artifacts
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.15.0
4
+ version: 1.16.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: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-codepipeline/errors.rb
60
60
  - lib/aws-sdk-codepipeline/resource.rb
61
61
  - lib/aws-sdk-codepipeline/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: