aws-sdk-codepipeline 1.55.0 → 1.57.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codepipeline/client.rb +62 -57
- data/lib/aws-sdk-codepipeline/client_api.rb +1 -0
- data/lib/aws-sdk-codepipeline/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-codepipeline/types.rb +146 -112
- data/lib/aws-sdk-codepipeline.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49597595a114479e99f8054b2fb16ff644b0a42be22eaacf4b54c60d99d84c21
|
|
4
|
+
data.tar.gz: 23c16c5a9f8d389500e8aec818032f1f5aad80a5ab4fe187a87a151766a432f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d21cf2954fa23204b94993de3f47e98acda75cd813253f08d8605bd081c80169588a6c119385f0d733bec79dcf1e0eda13e3582e3cd8e8927aca1042b66e4562
|
|
7
|
+
data.tar.gz: 8b91a27d6647bd8d0cdd23d3e5d8610283a426e1868974b051d13a0cb7b98ad99520fb06cbf7428660445c07714312e52166cee5183c3c097a6e50a1bd18b2e3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.57.0 (2023-05-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.56.0 (2023-05-25)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add PollingDisabledAt time information in PipelineMetadata object of GetPipeline API.
|
|
13
|
+
|
|
4
14
|
1.55.0 (2023-01-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.57.0
|
|
@@ -275,6 +275,11 @@ module Aws::CodePipeline
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -386,10 +391,9 @@ module Aws::CodePipeline
|
|
|
386
391
|
# confirm receipt.
|
|
387
392
|
#
|
|
388
393
|
# @option params [required, String] :nonce
|
|
389
|
-
# A system-generated random number that
|
|
390
|
-
#
|
|
391
|
-
#
|
|
392
|
-
# job.
|
|
394
|
+
# A system-generated random number that CodePipeline uses to ensure that
|
|
395
|
+
# the job is being worked on by only one job worker. Get this number
|
|
396
|
+
# from the response of the PollForJobs request that returned this job.
|
|
393
397
|
#
|
|
394
398
|
# @return [Types::AcknowledgeJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
395
399
|
#
|
|
@@ -422,9 +426,9 @@ module Aws::CodePipeline
|
|
|
422
426
|
# The unique system-generated ID of the job.
|
|
423
427
|
#
|
|
424
428
|
# @option params [required, String] :nonce
|
|
425
|
-
# A system-generated random number that
|
|
426
|
-
#
|
|
427
|
-
#
|
|
429
|
+
# A system-generated random number that CodePipeline uses to ensure that
|
|
430
|
+
# the job is being worked on by only one job worker. Get this number
|
|
431
|
+
# from the response to a GetThirdPartyJobDetails request.
|
|
428
432
|
#
|
|
429
433
|
# @option params [required, String] :client_token
|
|
430
434
|
# The clientToken portion of the clientId and clientToken pair used to
|
|
@@ -457,14 +461,15 @@ module Aws::CodePipeline
|
|
|
457
461
|
end
|
|
458
462
|
|
|
459
463
|
# Creates a new custom action that can be used in all pipelines
|
|
460
|
-
# associated with the
|
|
464
|
+
# associated with the Amazon Web Services account. Only used for custom
|
|
465
|
+
# actions.
|
|
461
466
|
#
|
|
462
467
|
# @option params [required, String] :category
|
|
463
468
|
# The category of the custom action, such as a build action or a test
|
|
464
469
|
# action.
|
|
465
470
|
#
|
|
466
471
|
# @option params [required, String] :provider
|
|
467
|
-
# The provider of the service used in the custom action, such as
|
|
472
|
+
# The provider of the service used in the custom action, such as
|
|
468
473
|
# CodeDeploy.
|
|
469
474
|
#
|
|
470
475
|
# @option params [required, String] :version
|
|
@@ -735,7 +740,7 @@ module Aws::CodePipeline
|
|
|
735
740
|
# source or deploy.
|
|
736
741
|
#
|
|
737
742
|
# @option params [required, String] :provider
|
|
738
|
-
# The provider of the service used in the custom action, such as
|
|
743
|
+
# The provider of the service used in the custom action, such as
|
|
739
744
|
# CodeDeploy.
|
|
740
745
|
#
|
|
741
746
|
# @option params [required, String] :version
|
|
@@ -783,7 +788,7 @@ module Aws::CodePipeline
|
|
|
783
788
|
end
|
|
784
789
|
|
|
785
790
|
# Deletes a previously created webhook by name. Deleting the webhook
|
|
786
|
-
# stops
|
|
791
|
+
# stops CodePipeline from starting a pipeline every time an external
|
|
787
792
|
# event occurs. The API returns successfully when trying to delete a
|
|
788
793
|
# webhook that is already deleted. If a deleted webhook is re-created by
|
|
789
794
|
# calling PutWebhook with the same name, it will have a different URL.
|
|
@@ -1001,11 +1006,11 @@ module Aws::CodePipeline
|
|
|
1001
1006
|
|
|
1002
1007
|
# Returns information about a job. Used for custom actions only.
|
|
1003
1008
|
#
|
|
1004
|
-
# When this API is called,
|
|
1005
|
-
#
|
|
1006
|
-
#
|
|
1007
|
-
#
|
|
1008
|
-
#
|
|
1009
|
+
# When this API is called, CodePipeline returns temporary credentials
|
|
1010
|
+
# for the S3 bucket used to store artifacts for the pipeline, if the
|
|
1011
|
+
# action requires access to that S3 bucket for input or output
|
|
1012
|
+
# artifacts. This API also returns any secret values defined for the
|
|
1013
|
+
# action.
|
|
1009
1014
|
#
|
|
1010
1015
|
# @option params [required, String] :job_id
|
|
1011
1016
|
# The unique system-generated ID for the job.
|
|
@@ -1071,7 +1076,7 @@ module Aws::CodePipeline
|
|
|
1071
1076
|
#
|
|
1072
1077
|
# @option params [required, String] :name
|
|
1073
1078
|
# The name of the pipeline for which you want to get information.
|
|
1074
|
-
# Pipeline names must be unique
|
|
1079
|
+
# Pipeline names must be unique in an Amazon Web Services account.
|
|
1075
1080
|
#
|
|
1076
1081
|
# @option params [Integer] :version
|
|
1077
1082
|
# The version number of the pipeline. If you do not specify a version,
|
|
@@ -1127,6 +1132,7 @@ module Aws::CodePipeline
|
|
|
1127
1132
|
# resp.metadata.pipeline_arn #=> String
|
|
1128
1133
|
# resp.metadata.created #=> Time
|
|
1129
1134
|
# resp.metadata.updated #=> Time
|
|
1135
|
+
# resp.metadata.polling_disabled_at #=> Time
|
|
1130
1136
|
#
|
|
1131
1137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipeline AWS API Documentation
|
|
1132
1138
|
#
|
|
@@ -1257,11 +1263,11 @@ module Aws::CodePipeline
|
|
|
1257
1263
|
# Requests the details of a job for a third party action. Used for
|
|
1258
1264
|
# partner actions only.
|
|
1259
1265
|
#
|
|
1260
|
-
# When this API is called,
|
|
1261
|
-
#
|
|
1262
|
-
#
|
|
1263
|
-
#
|
|
1264
|
-
#
|
|
1266
|
+
# When this API is called, CodePipeline returns temporary credentials
|
|
1267
|
+
# for the S3 bucket used to store artifacts for the pipeline, if the
|
|
1268
|
+
# action requires access to that S3 bucket for input or output
|
|
1269
|
+
# artifacts. This API also returns any secret values defined for the
|
|
1270
|
+
# action.
|
|
1265
1271
|
#
|
|
1266
1272
|
# @option params [required, String] :job_id
|
|
1267
1273
|
# The unique system-generated ID used for identifying the job.
|
|
@@ -1415,8 +1421,8 @@ module Aws::CodePipeline
|
|
|
1415
1421
|
req.send_request(options)
|
|
1416
1422
|
end
|
|
1417
1423
|
|
|
1418
|
-
# Gets a summary of all
|
|
1419
|
-
#
|
|
1424
|
+
# Gets a summary of all CodePipeline action types associated with your
|
|
1425
|
+
# account.
|
|
1420
1426
|
#
|
|
1421
1427
|
# @option params [String] :action_owner_filter
|
|
1422
1428
|
# Filters the list of action types to those created by a specified
|
|
@@ -1626,9 +1632,9 @@ module Aws::CodePipeline
|
|
|
1626
1632
|
req.send_request(options)
|
|
1627
1633
|
end
|
|
1628
1634
|
|
|
1629
|
-
# Gets a listing of all the webhooks in this
|
|
1630
|
-
# account. The output lists all webhooks and includes the
|
|
1631
|
-
# and ARN and the configuration for each webhook.
|
|
1635
|
+
# Gets a listing of all the webhooks in this Amazon Web Services Region
|
|
1636
|
+
# for this account. The output lists all webhooks and includes the
|
|
1637
|
+
# webhook URL and ARN and the configuration for each webhook.
|
|
1632
1638
|
#
|
|
1633
1639
|
# @option params [String] :next_token
|
|
1634
1640
|
# The token that was returned from the previous ListWebhooks call, which
|
|
@@ -1684,16 +1690,16 @@ module Aws::CodePipeline
|
|
|
1684
1690
|
req.send_request(options)
|
|
1685
1691
|
end
|
|
1686
1692
|
|
|
1687
|
-
# Returns information about any jobs for
|
|
1693
|
+
# Returns information about any jobs for CodePipeline to act on.
|
|
1688
1694
|
# `PollForJobs` is valid only for action types with "Custom" in the
|
|
1689
|
-
# owner field. If the action type contains
|
|
1690
|
-
#
|
|
1695
|
+
# owner field. If the action type contains `AWS` or `ThirdParty` in the
|
|
1696
|
+
# owner field, the `PollForJobs` action returns an error.
|
|
1691
1697
|
#
|
|
1692
|
-
# When this API is called,
|
|
1693
|
-
#
|
|
1694
|
-
#
|
|
1695
|
-
#
|
|
1696
|
-
#
|
|
1698
|
+
# When this API is called, CodePipeline returns temporary credentials
|
|
1699
|
+
# for the S3 bucket used to store artifacts for the pipeline, if the
|
|
1700
|
+
# action requires access to that S3 bucket for input or output
|
|
1701
|
+
# artifacts. This API also returns any secret values defined for the
|
|
1702
|
+
# action.
|
|
1697
1703
|
#
|
|
1698
1704
|
# @option params [required, Types::ActionTypeId] :action_type_id
|
|
1699
1705
|
# Represents information about an action type.
|
|
@@ -1776,10 +1782,10 @@ module Aws::CodePipeline
|
|
|
1776
1782
|
# Determines whether there are any third party jobs for a job worker to
|
|
1777
1783
|
# act on. Used for partner actions only.
|
|
1778
1784
|
#
|
|
1779
|
-
# When this API is called,
|
|
1780
|
-
#
|
|
1781
|
-
#
|
|
1782
|
-
#
|
|
1785
|
+
# When this API is called, CodePipeline returns temporary credentials
|
|
1786
|
+
# for the S3 bucket used to store artifacts for the pipeline, if the
|
|
1787
|
+
# action requires access to that S3 bucket for input or output
|
|
1788
|
+
# artifacts.
|
|
1783
1789
|
#
|
|
1784
1790
|
# @option params [required, Types::ActionTypeId] :action_type_id
|
|
1785
1791
|
# Represents information about an action type.
|
|
@@ -1818,8 +1824,7 @@ module Aws::CodePipeline
|
|
|
1818
1824
|
req.send_request(options)
|
|
1819
1825
|
end
|
|
1820
1826
|
|
|
1821
|
-
# Provides information to
|
|
1822
|
-
# source.
|
|
1827
|
+
# Provides information to CodePipeline about new revisions to a source.
|
|
1823
1828
|
#
|
|
1824
1829
|
# @option params [required, String] :pipeline_name
|
|
1825
1830
|
# The name of the pipeline that starts processing the revision to the
|
|
@@ -1867,8 +1872,8 @@ module Aws::CodePipeline
|
|
|
1867
1872
|
req.send_request(options)
|
|
1868
1873
|
end
|
|
1869
1874
|
|
|
1870
|
-
# Provides the response to a manual approval request to
|
|
1871
|
-
#
|
|
1875
|
+
# Provides the response to a manual approval request to CodePipeline.
|
|
1876
|
+
# Valid responses include Approved and Rejected.
|
|
1872
1877
|
#
|
|
1873
1878
|
# @option params [required, String] :pipeline_name
|
|
1874
1879
|
# The name of the pipeline that contains the action.
|
|
@@ -1962,12 +1967,12 @@ module Aws::CodePipeline
|
|
|
1962
1967
|
# by the job.
|
|
1963
1968
|
#
|
|
1964
1969
|
# @option params [String] :continuation_token
|
|
1965
|
-
# A token generated by a job worker, such as
|
|
1966
|
-
#
|
|
1967
|
-
#
|
|
1968
|
-
#
|
|
1969
|
-
#
|
|
1970
|
-
#
|
|
1970
|
+
# A token generated by a job worker, such as a CodeDeploy deployment ID,
|
|
1971
|
+
# that a successful job provides to identify a custom action in
|
|
1972
|
+
# progress. Future jobs use this token to identify the running instance
|
|
1973
|
+
# of the action. It can be reused to return more information about the
|
|
1974
|
+
# progress of the custom action. When the action is complete, no
|
|
1975
|
+
# continuation token should be supplied.
|
|
1971
1976
|
#
|
|
1972
1977
|
# @option params [Types::ExecutionDetails] :execution_details
|
|
1973
1978
|
# The execution details of the successful job, such as the actions taken
|
|
@@ -2064,12 +2069,12 @@ module Aws::CodePipeline
|
|
|
2064
2069
|
# Represents information about a current revision.
|
|
2065
2070
|
#
|
|
2066
2071
|
# @option params [String] :continuation_token
|
|
2067
|
-
# A token generated by a job worker, such as
|
|
2068
|
-
#
|
|
2069
|
-
#
|
|
2070
|
-
#
|
|
2071
|
-
#
|
|
2072
|
-
#
|
|
2072
|
+
# A token generated by a job worker, such as a CodeDeploy deployment ID,
|
|
2073
|
+
# that a successful job provides to identify a partner action in
|
|
2074
|
+
# progress. Future jobs use this token to identify the running instance
|
|
2075
|
+
# of the action. It can be reused to return more information about the
|
|
2076
|
+
# progress of the partner action. When the action is complete, no
|
|
2077
|
+
# continuation token should be supplied.
|
|
2073
2078
|
#
|
|
2074
2079
|
# @option params [Types::ExecutionDetails] :execution_details
|
|
2075
2080
|
# The details of the actions taken and results produced on an artifact
|
|
@@ -2379,7 +2384,7 @@ module Aws::CodePipeline
|
|
|
2379
2384
|
req.send_request(options)
|
|
2380
2385
|
end
|
|
2381
2386
|
|
|
2382
|
-
# Removes tags from an
|
|
2387
|
+
# Removes tags from an Amazon Web Services resource.
|
|
2383
2388
|
#
|
|
2384
2389
|
# @option params [required, String] :resource_arn
|
|
2385
2390
|
# The Amazon Resource Name (ARN) of the resource to remove tags from.
|
|
@@ -2616,7 +2621,7 @@ module Aws::CodePipeline
|
|
|
2616
2621
|
params: params,
|
|
2617
2622
|
config: config)
|
|
2618
2623
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
|
2619
|
-
context[:gem_version] = '1.
|
|
2624
|
+
context[:gem_version] = '1.57.0'
|
|
2620
2625
|
Seahorse::Client::Request.new(handlers, context)
|
|
2621
2626
|
end
|
|
2622
2627
|
|
|
@@ -895,6 +895,7 @@ module Aws::CodePipeline
|
|
|
895
895
|
PipelineMetadata.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "pipelineArn"))
|
|
896
896
|
PipelineMetadata.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
|
|
897
897
|
PipelineMetadata.add_member(:updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updated"))
|
|
898
|
+
PipelineMetadata.add_member(:polling_disabled_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "pollingDisabledAt"))
|
|
898
899
|
PipelineMetadata.struct_class = Types::PipelineMetadata
|
|
899
900
|
|
|
900
901
|
PipelineNameInUseException.struct_class = Types::PipelineNameInUseException
|
|
@@ -14,36 +14,39 @@ module Aws::CodePipeline
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
|
19
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
26
|
-
end
|
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
-
end
|
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
32
|
-
end
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
34
|
-
|
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
36
|
-
end
|
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
38
20
|
end
|
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
40
|
-
|
|
41
|
-
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
23
|
+
end
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
31
|
+
end
|
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
|
+
end
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
|
+
end
|
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
39
|
+
end
|
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
43
|
+
end
|
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
42
45
|
end
|
|
43
|
-
|
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
44
47
|
end
|
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://codepipeline.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
46
48
|
end
|
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
48
51
|
|
|
49
52
|
end
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
module Aws::CodePipeline
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
-
# Represents an
|
|
14
|
-
# temporary credentials that are issued by
|
|
15
|
-
# (STS). They can be used to access input
|
|
16
|
-
# bucket used to store artifact for the
|
|
13
|
+
# Represents an Amazon Web Services session credentials object. These
|
|
14
|
+
# credentials are temporary credentials that are issued by Amazon Web
|
|
15
|
+
# Services Secure Token Service (STS). They can be used to access input
|
|
16
|
+
# and output artifacts in the S3 bucket used to store artifact for the
|
|
17
|
+
# pipeline in CodePipeline.
|
|
17
18
|
#
|
|
18
19
|
# @!attribute [rw] access_key_id
|
|
19
20
|
# The access key for the session.
|
|
@@ -45,10 +46,10 @@ module Aws::CodePipeline
|
|
|
45
46
|
# @return [String]
|
|
46
47
|
#
|
|
47
48
|
# @!attribute [rw] nonce
|
|
48
|
-
# A system-generated random number that
|
|
49
|
-
#
|
|
50
|
-
#
|
|
51
|
-
#
|
|
49
|
+
# A system-generated random number that CodePipeline uses to ensure
|
|
50
|
+
# that the job is being worked on by only one job worker. Get this
|
|
51
|
+
# number from the response of the PollForJobs request that returned
|
|
52
|
+
# this job.
|
|
52
53
|
# @return [String]
|
|
53
54
|
#
|
|
54
55
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeJobInput AWS API Documentation
|
|
@@ -81,9 +82,9 @@ module Aws::CodePipeline
|
|
|
81
82
|
# @return [String]
|
|
82
83
|
#
|
|
83
84
|
# @!attribute [rw] nonce
|
|
84
|
-
# A system-generated random number that
|
|
85
|
-
#
|
|
86
|
-
#
|
|
85
|
+
# A system-generated random number that CodePipeline uses to ensure
|
|
86
|
+
# that the job is being worked on by only one job worker. Get this
|
|
87
|
+
# number from the response to a GetThirdPartyJobDetails request.
|
|
87
88
|
# @return [String]
|
|
88
89
|
#
|
|
89
90
|
# @!attribute [rw] client_token
|
|
@@ -230,11 +231,11 @@ module Aws::CodePipeline
|
|
|
230
231
|
# The action's configuration. These are key-value pairs that specify
|
|
231
232
|
# input values for an action. For more information, see [Action
|
|
232
233
|
# Structure Requirements in CodePipeline][1]. For the list of
|
|
233
|
-
# configuration properties for the
|
|
234
|
+
# configuration properties for the CloudFormation action type in
|
|
234
235
|
# CodePipeline, see [Configuration Properties Reference][2] in the
|
|
235
|
-
# *
|
|
236
|
-
#
|
|
237
|
-
# Pipelines][3] in the *
|
|
236
|
+
# *CloudFormation User Guide*. For template snippets with examples,
|
|
237
|
+
# see [Using Parameter Override Functions with CodePipeline
|
|
238
|
+
# Pipelines][3] in the *CloudFormation User Guide*.
|
|
238
239
|
#
|
|
239
240
|
# The values can be represented in either JSON or YAML format. For
|
|
240
241
|
# example, the JSON configuration item format is as follows:
|
|
@@ -266,7 +267,8 @@ module Aws::CodePipeline
|
|
|
266
267
|
# @return [String]
|
|
267
268
|
#
|
|
268
269
|
# @!attribute [rw] region
|
|
269
|
-
# The action declaration's
|
|
270
|
+
# The action declaration's Amazon Web Services Region, such as
|
|
271
|
+
# us-east-1.
|
|
270
272
|
# @return [String]
|
|
271
273
|
#
|
|
272
274
|
# @!attribute [rw] namespace
|
|
@@ -332,8 +334,8 @@ module Aws::CodePipeline
|
|
|
332
334
|
# @return [String]
|
|
333
335
|
#
|
|
334
336
|
# @!attribute [rw] external_execution_url
|
|
335
|
-
# The URL of a resource external to
|
|
336
|
-
# action (for example, an external repository URL).
|
|
337
|
+
# The URL of a resource external to Amazon Web Services that is used
|
|
338
|
+
# when running the action (for example, an external repository URL).
|
|
337
339
|
# @return [String]
|
|
338
340
|
#
|
|
339
341
|
# @!attribute [rw] percent_complete
|
|
@@ -341,7 +343,8 @@ module Aws::CodePipeline
|
|
|
341
343
|
# @return [Integer]
|
|
342
344
|
#
|
|
343
345
|
# @!attribute [rw] error_details
|
|
344
|
-
# The details of an error returned by a URL external to
|
|
346
|
+
# The details of an error returned by a URL external to Amazon Web
|
|
347
|
+
# Services.
|
|
345
348
|
# @return [Types::ErrorDetails]
|
|
346
349
|
#
|
|
347
350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecution AWS API Documentation
|
|
@@ -459,7 +462,7 @@ module Aws::CodePipeline
|
|
|
459
462
|
# @return [String]
|
|
460
463
|
#
|
|
461
464
|
# @!attribute [rw] region
|
|
462
|
-
# The
|
|
465
|
+
# The Amazon Web Services Region for the action, such as us-east-1.
|
|
463
466
|
# @return [String]
|
|
464
467
|
#
|
|
465
468
|
# @!attribute [rw] input_artifacts
|
|
@@ -750,8 +753,8 @@ module Aws::CodePipeline
|
|
|
750
753
|
#
|
|
751
754
|
# @!attribute [rw] policy_statements_template
|
|
752
755
|
# The policy statement that specifies the permissions in the
|
|
753
|
-
# CodePipeline customer
|
|
754
|
-
#
|
|
756
|
+
# CodePipeline customer account that are needed to successfully run an
|
|
757
|
+
# action.
|
|
755
758
|
#
|
|
756
759
|
# To grant permission to another account, specify the account ID as
|
|
757
760
|
# the Principal, a domain-style identifier defined by the service, for
|
|
@@ -815,8 +818,8 @@ module Aws::CodePipeline
|
|
|
815
818
|
# @!attribute [rw] provider
|
|
816
819
|
# The provider of the service being called by the action. Valid
|
|
817
820
|
# providers are determined by the action category. For example, an
|
|
818
|
-
# action in the Deploy category type might have a provider of
|
|
819
|
-
# CodeDeploy, which would be specified as CodeDeploy
|
|
821
|
+
# action in the Deploy category type might have a provider of
|
|
822
|
+
# CodeDeploy, which would be specified as `CodeDeploy`. For more
|
|
820
823
|
# information, see [Valid Action Types and Providers in
|
|
821
824
|
# CodePipeline][1].
|
|
822
825
|
#
|
|
@@ -893,8 +896,8 @@ module Aws::CodePipeline
|
|
|
893
896
|
# Details identifying the users with permissions to use the action type.
|
|
894
897
|
#
|
|
895
898
|
# @!attribute [rw] allowed_accounts
|
|
896
|
-
# A list of
|
|
897
|
-
# their pipelines.
|
|
899
|
+
# A list of Amazon Web Services account IDs with access to use the
|
|
900
|
+
# action type in their pipelines.
|
|
898
901
|
# @return [Array<String>]
|
|
899
902
|
#
|
|
900
903
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypePermissions AWS API Documentation
|
|
@@ -959,24 +962,24 @@ module Aws::CodePipeline
|
|
|
959
962
|
# @return [String]
|
|
960
963
|
#
|
|
961
964
|
# @!attribute [rw] entity_url_template
|
|
962
|
-
# The URL returned to the
|
|
963
|
-
#
|
|
964
|
-
# configuration page for
|
|
965
|
-
#
|
|
965
|
+
# The URL returned to the CodePipeline console that provides a deep
|
|
966
|
+
# link to the resources of the external system, such as the
|
|
967
|
+
# configuration page for a CodeDeploy deployment group. This link is
|
|
968
|
+
# provided as part of the action display in the pipeline.
|
|
966
969
|
# @return [String]
|
|
967
970
|
#
|
|
968
971
|
# @!attribute [rw] execution_url_template
|
|
969
|
-
# The URL returned to the
|
|
970
|
-
#
|
|
971
|
-
#
|
|
972
|
-
#
|
|
973
|
-
#
|
|
972
|
+
# The URL returned to the CodePipeline console that contains a link to
|
|
973
|
+
# the top-level landing page for the external system, such as the
|
|
974
|
+
# console page for CodeDeploy. This link is shown on the pipeline view
|
|
975
|
+
# page in the CodePipeline console and provides a link to the
|
|
976
|
+
# execution entity of the external action.
|
|
974
977
|
# @return [String]
|
|
975
978
|
#
|
|
976
979
|
# @!attribute [rw] revision_url_template
|
|
977
|
-
# The URL returned to the
|
|
978
|
-
#
|
|
979
|
-
#
|
|
980
|
+
# The URL returned to the CodePipeline console that contains a link to
|
|
981
|
+
# the page where customers can update or change the configuration of
|
|
982
|
+
# the external action.
|
|
980
983
|
# @return [String]
|
|
981
984
|
#
|
|
982
985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypeSettings AWS API Documentation
|
|
@@ -1055,8 +1058,11 @@ module Aws::CodePipeline
|
|
|
1055
1058
|
include Aws::Structure
|
|
1056
1059
|
end
|
|
1057
1060
|
|
|
1058
|
-
#
|
|
1059
|
-
#
|
|
1061
|
+
# Artifacts are the files that are worked on by actions in the pipeline.
|
|
1062
|
+
# See the action configuration for each action for details about
|
|
1063
|
+
# artifact parameters. For example, the S3 source action artifact is a
|
|
1064
|
+
# file name (or file path), and the files are generally provided as a
|
|
1065
|
+
# ZIP file. Example artifact name: SampleApp\_Windows.zip
|
|
1060
1066
|
#
|
|
1061
1067
|
# @!attribute [rw] name
|
|
1062
1068
|
# The artifact's name.
|
|
@@ -1157,7 +1163,7 @@ module Aws::CodePipeline
|
|
|
1157
1163
|
#
|
|
1158
1164
|
# @!attribute [rw] revision_summary
|
|
1159
1165
|
# Summary information about the most recent revision of the artifact.
|
|
1160
|
-
# For GitHub and
|
|
1166
|
+
# For GitHub and CodeCommit repositories, the commit message. For
|
|
1161
1167
|
# Amazon S3 buckets or actions, the user-provided content of a
|
|
1162
1168
|
# `codepipeline-artifact-revision-summary` key specified in the object
|
|
1163
1169
|
# metadata.
|
|
@@ -1170,7 +1176,7 @@ module Aws::CodePipeline
|
|
|
1170
1176
|
#
|
|
1171
1177
|
# @!attribute [rw] revision_url
|
|
1172
1178
|
# The commit ID for the artifact revision. For artifacts stored in
|
|
1173
|
-
# GitHub or
|
|
1179
|
+
# GitHub or CodeCommit repositories, the commit ID is linked to a
|
|
1174
1180
|
# commit details page.
|
|
1175
1181
|
# @return [String]
|
|
1176
1182
|
#
|
|
@@ -1203,14 +1209,15 @@ module Aws::CodePipeline
|
|
|
1203
1209
|
# The S3 bucket used for storing the artifacts for a pipeline. You can
|
|
1204
1210
|
# specify the name of an S3 bucket but not a folder in the bucket. A
|
|
1205
1211
|
# folder to contain the pipeline artifacts is created for you based on
|
|
1206
|
-
# the name of the pipeline. You can use any S3 bucket in the same
|
|
1207
|
-
# Region as the pipeline to store your pipeline
|
|
1212
|
+
# the name of the pipeline. You can use any S3 bucket in the same
|
|
1213
|
+
# Amazon Web Services Region as the pipeline to store your pipeline
|
|
1214
|
+
# artifacts.
|
|
1208
1215
|
# @return [String]
|
|
1209
1216
|
#
|
|
1210
1217
|
# @!attribute [rw] encryption_key
|
|
1211
1218
|
# The encryption key used to encrypt the data in the artifact store,
|
|
1212
|
-
# such as an
|
|
1213
|
-
# undefined, the default key for Amazon S3 is used.
|
|
1219
|
+
# such as an Amazon Web Services Key Management Service key. If this
|
|
1220
|
+
# is undefined, the default key for Amazon S3 is used.
|
|
1214
1221
|
# @return [Types::EncryptionKey]
|
|
1215
1222
|
#
|
|
1216
1223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ArtifactStore AWS API Documentation
|
|
@@ -1277,7 +1284,7 @@ module Aws::CodePipeline
|
|
|
1277
1284
|
# @return [String]
|
|
1278
1285
|
#
|
|
1279
1286
|
# @!attribute [rw] provider
|
|
1280
|
-
# The provider of the service used in the custom action, such as
|
|
1287
|
+
# The provider of the service used in the custom action, such as
|
|
1281
1288
|
# CodeDeploy.
|
|
1282
1289
|
# @return [String]
|
|
1283
1290
|
#
|
|
@@ -1432,7 +1439,7 @@ module Aws::CodePipeline
|
|
|
1432
1439
|
# @return [String]
|
|
1433
1440
|
#
|
|
1434
1441
|
# @!attribute [rw] provider
|
|
1435
|
-
# The provider of the service used in the custom action, such as
|
|
1442
|
+
# The provider of the service used in the custom action, such as
|
|
1436
1443
|
# CodeDeploy.
|
|
1437
1444
|
# @return [String]
|
|
1438
1445
|
#
|
|
@@ -1580,23 +1587,26 @@ module Aws::CodePipeline
|
|
|
1580
1587
|
end
|
|
1581
1588
|
|
|
1582
1589
|
# Represents information about the key used to encrypt data in the
|
|
1583
|
-
# artifact store, such as an
|
|
1590
|
+
# artifact store, such as an Amazon Web Services Key Management Service
|
|
1591
|
+
# (Key Management Service) key.
|
|
1584
1592
|
#
|
|
1585
1593
|
# @!attribute [rw] id
|
|
1586
|
-
# The ID used to identify the key. For an
|
|
1587
|
-
# key ID, the key ARN, or the alias ARN.
|
|
1594
|
+
# The ID used to identify the key. For an Amazon Web Services KMS key,
|
|
1595
|
+
# you can use the key ID, the key ARN, or the alias ARN.
|
|
1588
1596
|
#
|
|
1589
|
-
# <note markdown="1"> Aliases are recognized only in the account that created the
|
|
1590
|
-
#
|
|
1591
|
-
#
|
|
1597
|
+
# <note markdown="1"> Aliases are recognized only in the account that created the KMS key.
|
|
1598
|
+
# For cross-account actions, you can only use the key ID or key ARN to
|
|
1599
|
+
# identify the key. Cross-account actions involve using the role from
|
|
1600
|
+
# the other account (AccountB), so specifying the key ID will use the
|
|
1601
|
+
# key from the other account (AccountB).
|
|
1592
1602
|
#
|
|
1593
1603
|
# </note>
|
|
1594
1604
|
# @return [String]
|
|
1595
1605
|
#
|
|
1596
1606
|
# @!attribute [rw] type
|
|
1597
|
-
# The type of encryption key, such as an
|
|
1598
|
-
#
|
|
1599
|
-
#
|
|
1607
|
+
# The type of encryption key, such as an Amazon Web Services KMS key.
|
|
1608
|
+
# When creating or updating a pipeline, the value must be set to
|
|
1609
|
+
# 'KMS'.
|
|
1600
1610
|
# @return [String]
|
|
1601
1611
|
#
|
|
1602
1612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EncryptionKey AWS API Documentation
|
|
@@ -1608,7 +1618,7 @@ module Aws::CodePipeline
|
|
|
1608
1618
|
include Aws::Structure
|
|
1609
1619
|
end
|
|
1610
1620
|
|
|
1611
|
-
# Represents information about an error in
|
|
1621
|
+
# Represents information about an error in CodePipeline.
|
|
1612
1622
|
#
|
|
1613
1623
|
# @!attribute [rw] code
|
|
1614
1624
|
# The system ID or number code of the error.
|
|
@@ -1636,7 +1646,7 @@ module Aws::CodePipeline
|
|
|
1636
1646
|
#
|
|
1637
1647
|
# @!attribute [rw] external_execution_id
|
|
1638
1648
|
# The system-generated unique ID of this action used to identify this
|
|
1639
|
-
# job worker in any external systems, such as
|
|
1649
|
+
# job worker in any external systems, such as CodeDeploy.
|
|
1640
1650
|
# @return [String]
|
|
1641
1651
|
#
|
|
1642
1652
|
# @!attribute [rw] percent_complete
|
|
@@ -1850,7 +1860,7 @@ module Aws::CodePipeline
|
|
|
1850
1860
|
#
|
|
1851
1861
|
# @!attribute [rw] name
|
|
1852
1862
|
# The name of the pipeline for which you want to get information.
|
|
1853
|
-
# Pipeline names must be unique
|
|
1863
|
+
# Pipeline names must be unique in an Amazon Web Services account.
|
|
1854
1864
|
# @return [String]
|
|
1855
1865
|
#
|
|
1856
1866
|
# @!attribute [rw] version
|
|
@@ -1985,6 +1995,13 @@ module Aws::CodePipeline
|
|
|
1985
1995
|
# @!attribute [rw] name
|
|
1986
1996
|
# The name of the artifact to be worked on (for example, "My App").
|
|
1987
1997
|
#
|
|
1998
|
+
# Artifacts are the files that are worked on by actions in the
|
|
1999
|
+
# pipeline. See the action configuration for each action for details
|
|
2000
|
+
# about artifact parameters. For example, the S3 source action input
|
|
2001
|
+
# artifact is a file name (or file path), and the files are generally
|
|
2002
|
+
# provided as a ZIP file. Example artifact name:
|
|
2003
|
+
# SampleApp\_Windows.zip
|
|
2004
|
+
#
|
|
1988
2005
|
# The input artifact of an action must exactly match the output
|
|
1989
2006
|
# artifact declared in a preceding action, but the input artifact does
|
|
1990
2007
|
# not have to be the next action in strict sequence from the action
|
|
@@ -2111,13 +2128,14 @@ module Aws::CodePipeline
|
|
|
2111
2128
|
# @return [Types::JobData]
|
|
2112
2129
|
#
|
|
2113
2130
|
# @!attribute [rw] nonce
|
|
2114
|
-
# A system-generated random number that
|
|
2115
|
-
#
|
|
2116
|
-
#
|
|
2131
|
+
# A system-generated random number that CodePipeline uses to ensure
|
|
2132
|
+
# that the job is being worked on by only one job worker. Use this
|
|
2133
|
+
# number in an AcknowledgeJob request.
|
|
2117
2134
|
# @return [String]
|
|
2118
2135
|
#
|
|
2119
2136
|
# @!attribute [rw] account_id
|
|
2120
|
-
# The ID of the
|
|
2137
|
+
# The ID of the Amazon Web Services account to use when performing the
|
|
2138
|
+
# job.
|
|
2121
2139
|
# @return [String]
|
|
2122
2140
|
#
|
|
2123
2141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/Job AWS API Documentation
|
|
@@ -2159,21 +2177,21 @@ module Aws::CodePipeline
|
|
|
2159
2177
|
# @return [Array<Types::Artifact>]
|
|
2160
2178
|
#
|
|
2161
2179
|
# @!attribute [rw] artifact_credentials
|
|
2162
|
-
# Represents an
|
|
2163
|
-
# temporary credentials that are issued by
|
|
2164
|
-
# (STS). They can be used to access
|
|
2165
|
-
# S3 bucket used to store artifacts
|
|
2166
|
-
# CodePipeline.
|
|
2180
|
+
# Represents an Amazon Web Services session credentials object. These
|
|
2181
|
+
# credentials are temporary credentials that are issued by Amazon Web
|
|
2182
|
+
# Services Secure Token Service (STS). They can be used to access
|
|
2183
|
+
# input and output artifacts in the S3 bucket used to store artifacts
|
|
2184
|
+
# for the pipeline in CodePipeline.
|
|
2167
2185
|
# @return [Types::AWSSessionCredentials]
|
|
2168
2186
|
#
|
|
2169
2187
|
# @!attribute [rw] continuation_token
|
|
2170
|
-
# A system-generated token, such as a
|
|
2171
|
-
#
|
|
2188
|
+
# A system-generated token, such as a deployment ID, required by a job
|
|
2189
|
+
# to continue the job asynchronously.
|
|
2172
2190
|
# @return [String]
|
|
2173
2191
|
#
|
|
2174
2192
|
# @!attribute [rw] encryption_key
|
|
2175
2193
|
# Represents information about the key used to encrypt data in the
|
|
2176
|
-
# artifact store, such as an
|
|
2194
|
+
# artifact store, such as an KMS key.
|
|
2177
2195
|
# @return [Types::EncryptionKey]
|
|
2178
2196
|
#
|
|
2179
2197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/JobData AWS API Documentation
|
|
@@ -2203,7 +2221,7 @@ module Aws::CodePipeline
|
|
|
2203
2221
|
# @return [Types::JobData]
|
|
2204
2222
|
#
|
|
2205
2223
|
# @!attribute [rw] account_id
|
|
2206
|
-
# The
|
|
2224
|
+
# The Amazon Web Services account ID associated with the job.
|
|
2207
2225
|
# @return [String]
|
|
2208
2226
|
#
|
|
2209
2227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/JobDetails AWS API Documentation
|
|
@@ -2259,8 +2277,8 @@ module Aws::CodePipeline
|
|
|
2259
2277
|
include Aws::Structure
|
|
2260
2278
|
end
|
|
2261
2279
|
|
|
2262
|
-
# The number of pipelines associated with the
|
|
2263
|
-
# the limit allowed for the account.
|
|
2280
|
+
# The number of pipelines associated with the Amazon Web Services
|
|
2281
|
+
# account has exceeded the limit allowed for the account.
|
|
2264
2282
|
#
|
|
2265
2283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/LimitExceededException AWS API Documentation
|
|
2266
2284
|
#
|
|
@@ -2608,7 +2626,7 @@ module Aws::CodePipeline
|
|
|
2608
2626
|
end
|
|
2609
2627
|
|
|
2610
2628
|
# The stage has failed in a later run of the pipeline and the
|
|
2611
|
-
# pipelineExecutionId associated with the request is out of date.
|
|
2629
|
+
# `pipelineExecutionId` associated with the request is out of date.
|
|
2612
2630
|
#
|
|
2613
2631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/NotLatestPipelineExecutionException AWS API Documentation
|
|
2614
2632
|
#
|
|
@@ -2700,7 +2718,7 @@ module Aws::CodePipeline
|
|
|
2700
2718
|
# @return [String]
|
|
2701
2719
|
#
|
|
2702
2720
|
# @!attribute [rw] role_arn
|
|
2703
|
-
# The Amazon Resource Name (ARN) for
|
|
2721
|
+
# The Amazon Resource Name (ARN) for CodePipeline to use to either
|
|
2704
2722
|
# perform actions with no `actionRoleArn`, or to use to assume roles
|
|
2705
2723
|
# for actions with an `actionRoleArn`.
|
|
2706
2724
|
# @return [String]
|
|
@@ -2717,9 +2735,9 @@ module Aws::CodePipeline
|
|
|
2717
2735
|
# @return [Types::ArtifactStore]
|
|
2718
2736
|
#
|
|
2719
2737
|
# @!attribute [rw] artifact_stores
|
|
2720
|
-
# A mapping of `artifactStore` objects and their corresponding
|
|
2721
|
-
# Regions. There must be an artifact store for the
|
|
2722
|
-
# for each cross-region action in the pipeline.
|
|
2738
|
+
# A mapping of `artifactStore` objects and their corresponding Amazon
|
|
2739
|
+
# Web Services Regions. There must be an artifact store for the
|
|
2740
|
+
# pipeline Region and for each cross-region action in the pipeline.
|
|
2723
2741
|
#
|
|
2724
2742
|
# <note markdown="1"> You must include either `artifactStore` or `artifactStores` in your
|
|
2725
2743
|
# pipeline, but you cannot use both. If you create a cross-region
|
|
@@ -2928,12 +2946,27 @@ module Aws::CodePipeline
|
|
|
2928
2946
|
# format.
|
|
2929
2947
|
# @return [Time]
|
|
2930
2948
|
#
|
|
2949
|
+
# @!attribute [rw] polling_disabled_at
|
|
2950
|
+
# The date and time that polling for source changes (periodic checks)
|
|
2951
|
+
# was stopped for the pipeline, in timestamp format. You can migrate
|
|
2952
|
+
# (update) a polling pipeline to use event-based change detection. For
|
|
2953
|
+
# example, for a pipeline with a CodeCommit source, we recommend you
|
|
2954
|
+
# migrate (update) your pipeline to use CloudWatch Events. To learn
|
|
2955
|
+
# more, see [Migrate polling pipelines to use event-based change
|
|
2956
|
+
# detection][1] in the CodePipeline User Guide.
|
|
2957
|
+
#
|
|
2958
|
+
#
|
|
2959
|
+
#
|
|
2960
|
+
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html
|
|
2961
|
+
# @return [Time]
|
|
2962
|
+
#
|
|
2931
2963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineMetadata AWS API Documentation
|
|
2932
2964
|
#
|
|
2933
2965
|
class PipelineMetadata < Struct.new(
|
|
2934
2966
|
:pipeline_arn,
|
|
2935
2967
|
:created,
|
|
2936
|
-
:updated
|
|
2968
|
+
:updated,
|
|
2969
|
+
:polling_disabled_at)
|
|
2937
2970
|
SENSITIVE = []
|
|
2938
2971
|
include Aws::Structure
|
|
2939
2972
|
end
|
|
@@ -3197,12 +3230,12 @@ module Aws::CodePipeline
|
|
|
3197
3230
|
# @return [Types::CurrentRevision]
|
|
3198
3231
|
#
|
|
3199
3232
|
# @!attribute [rw] continuation_token
|
|
3200
|
-
# A token generated by a job worker, such as
|
|
3201
|
-
#
|
|
3202
|
-
#
|
|
3203
|
-
#
|
|
3204
|
-
#
|
|
3205
|
-
#
|
|
3233
|
+
# A token generated by a job worker, such as a CodeDeploy deployment
|
|
3234
|
+
# ID, that a successful job provides to identify a custom action in
|
|
3235
|
+
# progress. Future jobs use this token to identify the running
|
|
3236
|
+
# instance of the action. It can be reused to return more information
|
|
3237
|
+
# about the progress of the custom action. When the action is
|
|
3238
|
+
# complete, no continuation token should be supplied.
|
|
3206
3239
|
# @return [String]
|
|
3207
3240
|
#
|
|
3208
3241
|
# @!attribute [rw] execution_details
|
|
@@ -3274,12 +3307,12 @@ module Aws::CodePipeline
|
|
|
3274
3307
|
# @return [Types::CurrentRevision]
|
|
3275
3308
|
#
|
|
3276
3309
|
# @!attribute [rw] continuation_token
|
|
3277
|
-
# A token generated by a job worker, such as
|
|
3278
|
-
#
|
|
3279
|
-
#
|
|
3280
|
-
#
|
|
3281
|
-
#
|
|
3282
|
-
#
|
|
3310
|
+
# A token generated by a job worker, such as a CodeDeploy deployment
|
|
3311
|
+
# ID, that a successful job provides to identify a partner action in
|
|
3312
|
+
# progress. Future jobs use this token to identify the running
|
|
3313
|
+
# instance of the action. It can be reused to return more information
|
|
3314
|
+
# about the progress of the partner action. When the action is
|
|
3315
|
+
# complete, no continuation token should be supplied.
|
|
3283
3316
|
# @return [String]
|
|
3284
3317
|
#
|
|
3285
3318
|
# @!attribute [rw] execution_details
|
|
@@ -3469,7 +3502,7 @@ module Aws::CodePipeline
|
|
|
3469
3502
|
#
|
|
3470
3503
|
# @!attribute [rw] revision_summary
|
|
3471
3504
|
# Summary information about the most recent revision of the artifact.
|
|
3472
|
-
# For GitHub and
|
|
3505
|
+
# For GitHub and CodeCommit repositories, the commit message. For
|
|
3473
3506
|
# Amazon S3 buckets or actions, the user-provided content of a
|
|
3474
3507
|
# `codepipeline-artifact-revision-summary` key specified in the object
|
|
3475
3508
|
# metadata.
|
|
@@ -3477,7 +3510,7 @@ module Aws::CodePipeline
|
|
|
3477
3510
|
#
|
|
3478
3511
|
# @!attribute [rw] revision_url
|
|
3479
3512
|
# The commit ID for the artifact revision. For artifacts stored in
|
|
3480
|
-
# GitHub or
|
|
3513
|
+
# GitHub or CodeCommit repositories, the commit ID is linked to a
|
|
3481
3514
|
# commit details page.
|
|
3482
3515
|
# @return [String]
|
|
3483
3516
|
#
|
|
@@ -3746,7 +3779,7 @@ module Aws::CodePipeline
|
|
|
3746
3779
|
#
|
|
3747
3780
|
class TagResourceOutput < Aws::EmptyStructure; end
|
|
3748
3781
|
|
|
3749
|
-
# A response to a `PollForThirdPartyJobs` request returned by
|
|
3782
|
+
# A response to a `PollForThirdPartyJobs` request returned by
|
|
3750
3783
|
# CodePipeline when there is a job to be worked on by a partner action.
|
|
3751
3784
|
#
|
|
3752
3785
|
# @!attribute [rw] client_id
|
|
@@ -3756,7 +3789,7 @@ module Aws::CodePipeline
|
|
|
3756
3789
|
# @return [String]
|
|
3757
3790
|
#
|
|
3758
3791
|
# @!attribute [rw] job_id
|
|
3759
|
-
# The identifier used to identify the job in
|
|
3792
|
+
# The identifier used to identify the job in CodePipeline.
|
|
3760
3793
|
# @return [String]
|
|
3761
3794
|
#
|
|
3762
3795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJob AWS API Documentation
|
|
@@ -3802,22 +3835,23 @@ module Aws::CodePipeline
|
|
|
3802
3835
|
# @return [Array<Types::Artifact>]
|
|
3803
3836
|
#
|
|
3804
3837
|
# @!attribute [rw] artifact_credentials
|
|
3805
|
-
# Represents an
|
|
3806
|
-
# temporary credentials that are issued by
|
|
3807
|
-
# (STS). They can be used to access
|
|
3808
|
-
# S3 bucket used to store artifact
|
|
3809
|
-
# CodePipeline.
|
|
3838
|
+
# Represents an Amazon Web Services session credentials object. These
|
|
3839
|
+
# credentials are temporary credentials that are issued by Amazon Web
|
|
3840
|
+
# Services Secure Token Service (STS). They can be used to access
|
|
3841
|
+
# input and output artifacts in the S3 bucket used to store artifact
|
|
3842
|
+
# for the pipeline in CodePipeline.
|
|
3810
3843
|
# @return [Types::AWSSessionCredentials]
|
|
3811
3844
|
#
|
|
3812
3845
|
# @!attribute [rw] continuation_token
|
|
3813
|
-
# A system-generated token, such as a
|
|
3814
|
-
#
|
|
3846
|
+
# A system-generated token, such as a CodeDeploy deployment ID, that a
|
|
3847
|
+
# job requires to continue the job asynchronously.
|
|
3815
3848
|
# @return [String]
|
|
3816
3849
|
#
|
|
3817
3850
|
# @!attribute [rw] encryption_key
|
|
3818
3851
|
# The encryption key used to encrypt and decrypt data in the artifact
|
|
3819
|
-
# store for the pipeline, such as an
|
|
3820
|
-
# KMS) key. This is optional
|
|
3852
|
+
# store for the pipeline, such as an Amazon Web Services Key
|
|
3853
|
+
# Management Service (Amazon Web Services KMS) key. This is optional
|
|
3854
|
+
# and might not be present.
|
|
3821
3855
|
# @return [Types::EncryptionKey]
|
|
3822
3856
|
#
|
|
3823
3857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJobData AWS API Documentation
|
|
@@ -3839,7 +3873,7 @@ module Aws::CodePipeline
|
|
|
3839
3873
|
# request.
|
|
3840
3874
|
#
|
|
3841
3875
|
# @!attribute [rw] id
|
|
3842
|
-
# The identifier used to identify the job details in
|
|
3876
|
+
# The identifier used to identify the job details in CodePipeline.
|
|
3843
3877
|
# @return [String]
|
|
3844
3878
|
#
|
|
3845
3879
|
# @!attribute [rw] data
|
|
@@ -3847,9 +3881,9 @@ module Aws::CodePipeline
|
|
|
3847
3881
|
# @return [Types::ThirdPartyJobData]
|
|
3848
3882
|
#
|
|
3849
3883
|
# @!attribute [rw] nonce
|
|
3850
|
-
# A system-generated random number that
|
|
3851
|
-
#
|
|
3852
|
-
#
|
|
3884
|
+
# A system-generated random number that CodePipeline uses to ensure
|
|
3885
|
+
# that the job is being worked on by only one job worker. Use this
|
|
3886
|
+
# number in an AcknowledgeThirdPartyJob request.
|
|
3853
3887
|
# @return [String]
|
|
3854
3888
|
#
|
|
3855
3889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ThirdPartyJobDetails AWS API Documentation
|
|
@@ -4082,8 +4116,8 @@ module Aws::CodePipeline
|
|
|
4082
4116
|
# configuration key with curly brackets. For example, if the value
|
|
4083
4117
|
# supplied here is "refs/heads/\\\{Branch\\}" and the target action
|
|
4084
4118
|
# has an action configuration property called "Branch" with a value
|
|
4085
|
-
# of "
|
|
4086
|
-
# "refs/heads/
|
|
4119
|
+
# of "main", the `MatchEquals` value is evaluated as
|
|
4120
|
+
# "refs/heads/main". For a list of action configuration properties
|
|
4087
4121
|
# for built-in action types, see [Pipeline Structure Reference Action
|
|
4088
4122
|
# Requirements][1].
|
|
4089
4123
|
#
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
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.
|
|
4
|
+
version: 1.57.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: 2023-
|
|
11
|
+
date: 2023-05-31 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.
|
|
22
|
+
version: 3.174.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.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|