aws-sdk-codepipeline 1.41.0 → 1.42.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
  SHA256:
3
- metadata.gz: f8719ecc224a4f703542fc59bc871137ad3939b1f80eb0d6c1fa6a7627bca5db
4
- data.tar.gz: 1adf806b54507be59362df0b4ac6fee1470e09485b9367de11611adf208b30ea
3
+ metadata.gz: 7714560010d850a30c6e85019b5e1a32ec8eff1d3d006c0805e0bca1fd3a1aeb
4
+ data.tar.gz: 8b39432151c15d179c697cfce5e4377e9154ed087f63add89d8c43c9e4a7dd40
5
5
  SHA512:
6
- metadata.gz: 7449a5d2eb3e2ccb78501b971da551d10e206dae44cf2af614d07bdefbc85a9be171dacd58fa59653c67c64d4bce2cc8ed292819e4a5222e4dc6e3ba2dd5474e
7
- data.tar.gz: a3d25d61192c4b871d51933b9b0f66898f625574562460944847a1928a56d5fba96f9a4324ae8ba3d9878bad2153755799a2cd789a0282a7e51925368f205942
6
+ metadata.gz: 68723fbe652f5bc2ce27f771927d5053f2b78a68d00dc733281d9703012693a55571b2745c962dc312df04bf66567af6472a2838460b9dd889a7c2b77967f03d
7
+ data.tar.gz: ed25869300e67136a01c8adc004f6904740ffc24b4a3771f4337ddded06ec3c6dba931cf0cf5b7845589c26a013ccc8780e913132e1e891221c6b2bae7fcdd7e
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
48
48
  # @!group service
49
49
  module Aws::CodePipeline
50
50
 
51
- GEM_VERSION = '1.41.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
@@ -873,12 +873,12 @@ module Aws::CodePipeline
873
873
 
874
874
  # Returns information about an action type created for an external
875
875
  # provider, where the action is to be used by customers of the external
876
- # provider. The action can have been created with any supported
877
- # integration model.
876
+ # provider. The action can be created with any supported integration
877
+ # model.
878
878
  #
879
879
  # @option params [required, String] :category
880
- # A category defines what kind of action can be taken in the stage.
881
- # Valid categories are limited to one of the following values:
880
+ # Defines what kind of action can be taken in the stage. The following
881
+ # are the valid values:
882
882
  #
883
883
  # * `Source`
884
884
  #
@@ -893,9 +893,8 @@ module Aws::CodePipeline
893
893
  # * `Invoke`
894
894
  #
895
895
  # @option params [required, String] :owner
896
- # The creator of an action type that has been created with any supported
897
- # integration model. There are two valid values for the `owner` field in
898
- # the action type category: `AWS` and `ThirdParty`.
896
+ # The creator of an action type that was created with any supported
897
+ # integration model. There are two valid values: `AWS` and `ThirdParty`.
899
898
  #
900
899
  # @option params [required, String] :provider
901
900
  # The provider of the action type being called. The provider name is
@@ -1503,6 +1502,12 @@ module Aws::CodePipeline
1503
1502
  # An identifier that was returned from the previous list pipelines call.
1504
1503
  # It can be used to return the next set of pipelines in the list.
1505
1504
  #
1505
+ # @option params [Integer] :max_results
1506
+ # The maximum number of pipelines to return in a single call. To
1507
+ # retrieve the remaining pipelines, make another call with the returned
1508
+ # nextToken value. The minimum value you can specify is 1. The maximum
1509
+ # accepted value is 1000.
1510
+ #
1506
1511
  # @return [Types::ListPipelinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1507
1512
  #
1508
1513
  # * {Types::ListPipelinesOutput#pipelines #pipelines} => Array<Types::PipelineSummary>
@@ -1514,6 +1519,7 @@ module Aws::CodePipeline
1514
1519
  #
1515
1520
  # resp = client.list_pipelines({
1516
1521
  # next_token: "NextToken",
1522
+ # max_results: 1,
1517
1523
  # })
1518
1524
  #
1519
1525
  # @example Response structure
@@ -2358,10 +2364,10 @@ module Aws::CodePipeline
2358
2364
  req.send_request(options)
2359
2365
  end
2360
2366
 
2361
- # Updates an action type that has been created with any supported
2362
- # integration model, where the action type is to be used by customers of
2363
- # the action type provider. Use a JSON file with the action definition
2364
- # and `UpdateActionType` to provide the full structure.
2367
+ # Updates an action type that was created with any supported integration
2368
+ # model, where the action type is to be used by customers of the action
2369
+ # type provider. Use a JSON file with the action definition and
2370
+ # `UpdateActionType` to provide the full structure.
2365
2371
  #
2366
2372
  # @option params [Types::ActionTypeDeclaration] :action_type
2367
2373
  # The action type definition for the action type to be updated.
@@ -2569,7 +2575,7 @@ module Aws::CodePipeline
2569
2575
  params: params,
2570
2576
  config: config)
2571
2577
  context[:gem_name] = 'aws-sdk-codepipeline'
2572
- context[:gem_version] = '1.41.0'
2578
+ context[:gem_version] = '1.42.0'
2573
2579
  Seahorse::Client::Request.new(handlers, context)
2574
2580
  end
2575
2581
 
@@ -189,6 +189,7 @@ module Aws::CodePipeline
189
189
  ListWebhooksOutput = Shapes::StructureShape.new(name: 'ListWebhooksOutput')
190
190
  MatchEquals = Shapes::StringShape.new(name: 'MatchEquals')
191
191
  MaxBatchSize = Shapes::IntegerShape.new(name: 'MaxBatchSize')
192
+ MaxPipelines = Shapes::IntegerShape.new(name: 'MaxPipelines')
192
193
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
193
194
  MaximumActionTypeArtifactCount = Shapes::IntegerShape.new(name: 'MaximumActionTypeArtifactCount')
194
195
  MaximumArtifactCount = Shapes::IntegerShape.new(name: 'MaximumArtifactCount')
@@ -804,6 +805,7 @@ module Aws::CodePipeline
804
805
  ListPipelineExecutionsOutput.struct_class = Types::ListPipelineExecutionsOutput
805
806
 
806
807
  ListPipelinesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
808
+ ListPipelinesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxPipelines, location_name: "maxResults"))
807
809
  ListPipelinesInput.struct_class = Types::ListPipelinesInput
808
810
 
809
811
  ListPipelinesOutput.add_member(:pipelines, Shapes::ShapeRef.new(shape: PipelineList, location_name: "pipelines"))
@@ -1408,6 +1410,7 @@ module Aws::CodePipeline
1408
1410
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1409
1411
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1410
1412
  o[:pager] = Aws::Pager.new(
1413
+ limit_key: "max_results",
1411
1414
  tokens: {
1412
1415
  "next_token" => "next_token"
1413
1416
  }
@@ -739,14 +739,13 @@ module Aws::CodePipeline
739
739
  # }
740
740
  #
741
741
  # @!attribute [rw] minimum_count
742
- # The minimum allowed number of artifacts that can be used with the
743
- # action type. For example, you should specify a minimum and maximum
744
- # of zero input artifacts for an action type with a category of
745
- # `source`.
742
+ # The minimum number of artifacts that can be used with the action
743
+ # type. For example, you should specify a minimum and maximum of zero
744
+ # input artifacts for an action type with a category of `source`.
746
745
  # @return [Integer]
747
746
  #
748
747
  # @!attribute [rw] maximum_count
749
- # The maximum allowed number of artifacts that can be used with the
748
+ # The maximum number of artifacts that can be used with the
750
749
  # actiontype. For example, you should specify a minimum and maximum of
751
750
  # zero input artifacts for an action type with a category of `source`.
752
751
  # @return [Integer]
@@ -827,8 +826,8 @@ module Aws::CodePipeline
827
826
  # @return [Types::ActionTypeExecutor]
828
827
  #
829
828
  # @!attribute [rw] id
830
- # The action ID is composed of the action category, owner, provider,
831
- # and version of the action type to be updated.
829
+ # The action category, owner, provider, and version of the action type
830
+ # to be updated.
832
831
  # @return [Types::ActionTypeIdentifier]
833
832
  #
834
833
  # @!attribute [rw] input_artifact_details
@@ -902,20 +901,17 @@ module Aws::CodePipeline
902
901
  #
903
902
  # @!attribute [rw] type
904
903
  # The integration model used to create and update the action type,
905
- # such as the Lambda integration model. Each integration type has a
906
- # related action engine, or executor. The available executor types are
907
- # `Lambda` and `JobWorker`.
904
+ # `Lambda` or `JobWorker`.
908
905
  # @return [String]
909
906
  #
910
907
  # @!attribute [rw] policy_statements_template
911
908
  # The policy statement that specifies the permissions in the
912
909
  # CodePipeline customer’s account that are needed to successfully run
913
- # an action execution.
910
+ # an action.
914
911
  #
915
912
  # To grant permission to another account, specify the account ID as
916
- # the Principal. For AWS services, the Principal is a domain-style
917
- # identifier defined by the service, like
918
- # `codepipeline.amazonaws.com`.
913
+ # the Principal, a domain-style identifier defined by the service, for
914
+ # example `codepipeline.amazonaws.com`.
919
915
  #
920
916
  # <note markdown="1"> The size of the passed JSON policy document cannot exceed 2048
921
917
  # characters.
@@ -924,9 +920,9 @@ module Aws::CodePipeline
924
920
  # @return [String]
925
921
  #
926
922
  # @!attribute [rw] job_timeout
927
- # The timeout in seconds for the job. An action execution can consist
928
- # of multiple jobs. This is the timeout for a single job, and not for
929
- # the entire action execution.
923
+ # The timeout in seconds for the job. An action execution can have
924
+ # multiple jobs. This is the timeout for a single job, not the entire
925
+ # action execution.
930
926
  # @return [Integer]
931
927
  #
932
928
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypeExecutor AWS API Documentation
@@ -1024,8 +1020,8 @@ module Aws::CodePipeline
1024
1020
  # }
1025
1021
  #
1026
1022
  # @!attribute [rw] category
1027
- # A category defines what kind of action can be taken in the stage.
1028
- # Valid categories are limited to one of the following values:
1023
+ # Defines what kind of action can be taken in the stage, one of the
1024
+ # following:
1029
1025
  #
1030
1026
  # * `Source`
1031
1027
  #
@@ -1041,8 +1037,7 @@ module Aws::CodePipeline
1041
1037
  # @return [String]
1042
1038
  #
1043
1039
  # @!attribute [rw] owner
1044
- # The creator of the action type being called. There are two valid
1045
- # values for the `owner` field: `AWS` and `ThirdParty`.
1040
+ # The creator of the action type being called: `AWS` or `ThirdParty`.
1046
1041
  # @return [String]
1047
1042
  #
1048
1043
  # @!attribute [rw] provider
@@ -1081,8 +1076,8 @@ module Aws::CodePipeline
1081
1076
  # }
1082
1077
  #
1083
1078
  # @!attribute [rw] allowed_accounts
1084
- # A list of AWS account IDs with allow access to use the action type
1085
- # in their pipelines.
1079
+ # A list of AWS account IDs with access to use the action type in
1080
+ # their pipelines.
1086
1081
  # @return [Array<String>]
1087
1082
  #
1088
1083
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionTypePermissions AWS API Documentation
@@ -1110,8 +1105,7 @@ module Aws::CodePipeline
1110
1105
  # }
1111
1106
  #
1112
1107
  # @!attribute [rw] name
1113
- # The property name. This represents a field name that is displayed to
1114
- # users.
1108
+ # The property name that is displayed to users.
1115
1109
  # @return [String]
1116
1110
  #
1117
1111
  # @!attribute [rw] optional
@@ -1123,9 +1117,9 @@ module Aws::CodePipeline
1123
1117
  # @return [Boolean]
1124
1118
  #
1125
1119
  # @!attribute [rw] no_echo
1126
- # Determines whether the field value entered by the customer is
1127
- # logged. If `noEcho` is `true`, the value is not shown in CloudTrail
1128
- # logs for the action execution.
1120
+ # Whether to omit the field value entered by the customer in the log.
1121
+ # If `true`, the value is not saved in CloudTrail logs for the action
1122
+ # execution.
1129
1123
  # @return [Boolean]
1130
1124
  #
1131
1125
  # @!attribute [rw] queryable
@@ -2202,8 +2196,8 @@ module Aws::CodePipeline
2202
2196
  # }
2203
2197
  #
2204
2198
  # @!attribute [rw] category
2205
- # A category defines what kind of action can be taken in the stage.
2206
- # Valid categories are limited to one of the following values:
2199
+ # Defines what kind of action can be taken in the stage. The following
2200
+ # are the valid values:
2207
2201
  #
2208
2202
  # * `Source`
2209
2203
  #
@@ -2219,9 +2213,9 @@ module Aws::CodePipeline
2219
2213
  # @return [String]
2220
2214
  #
2221
2215
  # @!attribute [rw] owner
2222
- # The creator of an action type that has been created with any
2223
- # supported integration model. There are two valid values for the
2224
- # `owner` field in the action type category: `AWS` and `ThirdParty`.
2216
+ # The creator of an action type that was created with any supported
2217
+ # integration model. There are two valid values: `AWS` and
2218
+ # `ThirdParty`.
2225
2219
  # @return [String]
2226
2220
  #
2227
2221
  # @!attribute [rw] provider
@@ -3002,6 +2996,7 @@ module Aws::CodePipeline
3002
2996
  #
3003
2997
  # {
3004
2998
  # next_token: "NextToken",
2999
+ # max_results: 1,
3005
3000
  # }
3006
3001
  #
3007
3002
  # @!attribute [rw] next_token
@@ -3010,10 +3005,18 @@ module Aws::CodePipeline
3010
3005
  # list.
3011
3006
  # @return [String]
3012
3007
  #
3008
+ # @!attribute [rw] max_results
3009
+ # The maximum number of pipelines to return in a single call. To
3010
+ # retrieve the remaining pipelines, make another call with the
3011
+ # returned nextToken value. The minimum value you can specify is 1.
3012
+ # The maximum accepted value is 1000.
3013
+ # @return [Integer]
3014
+ #
3013
3015
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelinesInput AWS API Documentation
3014
3016
  #
3015
3017
  class ListPipelinesInput < Struct.new(
3016
- :next_token)
3018
+ :next_token,
3019
+ :max_results)
3017
3020
  SENSITIVE = []
3018
3021
  include Aws::Structure
3019
3022
  end
@@ -4167,8 +4170,7 @@ module Aws::CodePipeline
4167
4170
  #
4168
4171
  class RegisterWebhookWithThirdPartyOutput < Aws::EmptyStructure; end
4169
4172
 
4170
- # The request has failed because of an unknown error, exception, or
4171
- # failure.
4173
+ # The request failed because of an unknown error, exception, or failure.
4172
4174
  #
4173
4175
  # @!attribute [rw] message
4174
4176
  # @return [String]
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.41.0
4
+ version: 1.42.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: 2021-02-12 00:00:00.000000000 Z
11
+ date: 2021-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core