aws-sdk-codepipeline 1.84.0 → 1.86.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2008e31a6ebbcdaf1c78a1e992ccae924bf734be2090c875dde475aed895663c
4
- data.tar.gz: f7100148e86d1df1c5a692d759f3242ff52dfc609ab681371214875ea5305a26
3
+ metadata.gz: 6d65207de970da92b8c1f77b34b12200c5aa8e7edac9a73e71fe5b99b7eb29a8
4
+ data.tar.gz: 103af5f0d37b8e12a40d98efe9bd0964714be56cd734551264c4f34b1f1bba38
5
5
  SHA512:
6
- metadata.gz: 90a95bc382736a9759972951e4ffad0ce7dca4753a70701d9ee97922a67041ae65f7387c000a54807658a37331e61752ced02034a14019fed24be06f0ba26582
7
- data.tar.gz: 6a2f749b91c21acd22f16fb19814d768c8caeb8f88d6593051221f7c810a5d2a8526e53633edcbe85a299883cb553bfce9690731e2eeac1091a42fe3feb4b79b
6
+ metadata.gz: 2f9fc205df8226381e0414f2e6de3d9e99c2dbb27e026cd425e71b94426eb4c05a40d1e86a9b66ec00a244970ff545761bd44a392fb39412c19ba5a751e728a4
7
+ data.tar.gz: a42bf08c0df6cfd74e4ea408ba2f25a0d2b91deb5a774fc4e8907bb5aceb498e1ce86d677dab1893b3dda3d4226a714c81639295962b1c9311b5b0993a14dcb2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2024-10-03)
5
+ ------------------
6
+
7
+ * Feature - AWS CodePipeline introduces Commands action that enables you to easily run shell commands as part of your pipeline execution.
8
+
9
+ 1.85.0 (2024-09-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.84.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.86.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:codepipeline)
40
-
41
39
  module Aws::CodePipeline
42
40
  # An API client for CodePipeline. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -723,9 +721,11 @@ module Aws::CodePipeline
723
721
  # configuration: {
724
722
  # "ActionConfigurationKey" => "ActionConfigurationValue",
725
723
  # },
724
+ # commands: ["Command"],
726
725
  # output_artifacts: [
727
726
  # {
728
727
  # name: "ArtifactName", # required
728
+ # files: ["FilePath"],
729
729
  # },
730
730
  # ],
731
731
  # input_artifacts: [
@@ -733,6 +733,7 @@ module Aws::CodePipeline
733
733
  # name: "ArtifactName", # required
734
734
  # },
735
735
  # ],
736
+ # output_variables: ["OutputVariable"],
736
737
  # role_arn: "RoleArn",
737
738
  # region: "AWSRegionName",
738
739
  # namespace: "ActionNamespace",
@@ -912,10 +913,16 @@ module Aws::CodePipeline
912
913
  # resp.pipeline.stages[0].actions[0].run_order #=> Integer
913
914
  # resp.pipeline.stages[0].actions[0].configuration #=> Hash
914
915
  # resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
916
+ # resp.pipeline.stages[0].actions[0].commands #=> Array
917
+ # resp.pipeline.stages[0].actions[0].commands[0] #=> String
915
918
  # resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
916
919
  # resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
920
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
921
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
917
922
  # resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
918
923
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
924
+ # resp.pipeline.stages[0].actions[0].output_variables #=> Array
925
+ # resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
919
926
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
920
927
  # resp.pipeline.stages[0].actions[0].region #=> String
921
928
  # resp.pipeline.stages[0].actions[0].namespace #=> String
@@ -1409,10 +1416,16 @@ module Aws::CodePipeline
1409
1416
  # resp.pipeline.stages[0].actions[0].run_order #=> Integer
1410
1417
  # resp.pipeline.stages[0].actions[0].configuration #=> Hash
1411
1418
  # resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
1419
+ # resp.pipeline.stages[0].actions[0].commands #=> Array
1420
+ # resp.pipeline.stages[0].actions[0].commands[0] #=> String
1412
1421
  # resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
1413
1422
  # resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
1423
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
1424
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
1414
1425
  # resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
1415
1426
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
1427
+ # resp.pipeline.stages[0].actions[0].output_variables #=> Array
1428
+ # resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
1416
1429
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
1417
1430
  # resp.pipeline.stages[0].actions[0].region #=> String
1418
1431
  # resp.pipeline.stages[0].actions[0].namespace #=> String
@@ -3267,9 +3280,11 @@ module Aws::CodePipeline
3267
3280
  # configuration: {
3268
3281
  # "ActionConfigurationKey" => "ActionConfigurationValue",
3269
3282
  # },
3283
+ # commands: ["Command"],
3270
3284
  # output_artifacts: [
3271
3285
  # {
3272
3286
  # name: "ArtifactName", # required
3287
+ # files: ["FilePath"],
3273
3288
  # },
3274
3289
  # ],
3275
3290
  # input_artifacts: [
@@ -3277,6 +3292,7 @@ module Aws::CodePipeline
3277
3292
  # name: "ArtifactName", # required
3278
3293
  # },
3279
3294
  # ],
3295
+ # output_variables: ["OutputVariable"],
3280
3296
  # role_arn: "RoleArn",
3281
3297
  # region: "AWSRegionName",
3282
3298
  # namespace: "ActionNamespace",
@@ -3450,10 +3466,16 @@ module Aws::CodePipeline
3450
3466
  # resp.pipeline.stages[0].actions[0].run_order #=> Integer
3451
3467
  # resp.pipeline.stages[0].actions[0].configuration #=> Hash
3452
3468
  # resp.pipeline.stages[0].actions[0].configuration["ActionConfigurationKey"] #=> String
3469
+ # resp.pipeline.stages[0].actions[0].commands #=> Array
3470
+ # resp.pipeline.stages[0].actions[0].commands[0] #=> String
3453
3471
  # resp.pipeline.stages[0].actions[0].output_artifacts #=> Array
3454
3472
  # resp.pipeline.stages[0].actions[0].output_artifacts[0].name #=> String
3473
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files #=> Array
3474
+ # resp.pipeline.stages[0].actions[0].output_artifacts[0].files[0] #=> String
3455
3475
  # resp.pipeline.stages[0].actions[0].input_artifacts #=> Array
3456
3476
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
3477
+ # resp.pipeline.stages[0].actions[0].output_variables #=> Array
3478
+ # resp.pipeline.stages[0].actions[0].output_variables[0] #=> String
3457
3479
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
3458
3480
  # resp.pipeline.stages[0].actions[0].region #=> String
3459
3481
  # resp.pipeline.stages[0].actions[0].namespace #=> String
@@ -3566,7 +3588,7 @@ module Aws::CodePipeline
3566
3588
  tracer: tracer
3567
3589
  )
3568
3590
  context[:gem_name] = 'aws-sdk-codepipeline'
3569
- context[:gem_version] = '1.84.0'
3591
+ context[:gem_version] = '1.86.0'
3570
3592
  Seahorse::Client::Request.new(handlers, context)
3571
3593
  end
3572
3594
 
@@ -99,6 +99,8 @@ module Aws::CodePipeline
99
99
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
100
100
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
101
101
  Code = Shapes::StringShape.new(name: 'Code')
102
+ Command = Shapes::StringShape.new(name: 'Command')
103
+ CommandList = Shapes::ListShape.new(name: 'CommandList')
102
104
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
103
105
  ConcurrentPipelineExecutionsLimitExceededException = Shapes::StructureShape.new(name: 'ConcurrentPipelineExecutionsLimitExceededException')
104
106
  Condition = Shapes::StructureShape.new(name: 'Condition')
@@ -145,6 +147,8 @@ module Aws::CodePipeline
145
147
  FailureConditions = Shapes::StructureShape.new(name: 'FailureConditions')
146
148
  FailureDetails = Shapes::StructureShape.new(name: 'FailureDetails')
147
149
  FailureType = Shapes::StringShape.new(name: 'FailureType')
150
+ FilePath = Shapes::StringShape.new(name: 'FilePath')
151
+ FilePathList = Shapes::ListShape.new(name: 'FilePathList')
148
152
  GetActionTypeInput = Shapes::StructureShape.new(name: 'GetActionTypeInput')
149
153
  GetActionTypeOutput = Shapes::StructureShape.new(name: 'GetActionTypeOutput')
150
154
  GetJobDetailsInput = Shapes::StructureShape.new(name: 'GetJobDetailsInput')
@@ -237,6 +241,8 @@ module Aws::CodePipeline
237
241
  NotLatestPipelineExecutionException = Shapes::StructureShape.new(name: 'NotLatestPipelineExecutionException')
238
242
  OutputArtifact = Shapes::StructureShape.new(name: 'OutputArtifact')
239
243
  OutputArtifactList = Shapes::ListShape.new(name: 'OutputArtifactList')
244
+ OutputVariable = Shapes::StringShape.new(name: 'OutputVariable')
245
+ OutputVariableList = Shapes::ListShape.new(name: 'OutputVariableList')
240
246
  OutputVariablesKey = Shapes::StringShape.new(name: 'OutputVariablesKey')
241
247
  OutputVariablesMap = Shapes::MapShape.new(name: 'OutputVariablesMap')
242
248
  OutputVariablesSizeExceededException = Shapes::StructureShape.new(name: 'OutputVariablesSizeExceededException')
@@ -473,8 +479,10 @@ module Aws::CodePipeline
473
479
  ActionDeclaration.add_member(:action_type_id, Shapes::ShapeRef.new(shape: ActionTypeId, required: true, location_name: "actionTypeId"))
474
480
  ActionDeclaration.add_member(:run_order, Shapes::ShapeRef.new(shape: ActionRunOrder, location_name: "runOrder"))
475
481
  ActionDeclaration.add_member(:configuration, Shapes::ShapeRef.new(shape: ActionConfigurationMap, location_name: "configuration"))
482
+ ActionDeclaration.add_member(:commands, Shapes::ShapeRef.new(shape: CommandList, location_name: "commands"))
476
483
  ActionDeclaration.add_member(:output_artifacts, Shapes::ShapeRef.new(shape: OutputArtifactList, location_name: "outputArtifacts"))
477
484
  ActionDeclaration.add_member(:input_artifacts, Shapes::ShapeRef.new(shape: InputArtifactList, location_name: "inputArtifacts"))
485
+ ActionDeclaration.add_member(:output_variables, Shapes::ShapeRef.new(shape: OutputVariableList, location_name: "outputVariables"))
478
486
  ActionDeclaration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
479
487
  ActionDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
480
488
  ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
@@ -672,6 +680,8 @@ module Aws::CodePipeline
672
680
  BlockerDeclaration.add_member(:type, Shapes::ShapeRef.new(shape: BlockerType, required: true, location_name: "type"))
673
681
  BlockerDeclaration.struct_class = Types::BlockerDeclaration
674
682
 
683
+ CommandList.member = Shapes::ShapeRef.new(shape: Command)
684
+
675
685
  ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
676
686
  ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
677
687
 
@@ -791,6 +801,8 @@ module Aws::CodePipeline
791
801
  FailureDetails.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "externalExecutionId"))
792
802
  FailureDetails.struct_class = Types::FailureDetails
793
803
 
804
+ FilePathList.member = Shapes::ShapeRef.new(shape: FilePath)
805
+
794
806
  GetActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
795
807
  GetActionTypeInput.add_member(:owner, Shapes::ShapeRef.new(shape: ActionTypeOwner, required: true, location_name: "owner"))
796
808
  GetActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
@@ -1033,10 +1045,13 @@ module Aws::CodePipeline
1033
1045
  NotLatestPipelineExecutionException.struct_class = Types::NotLatestPipelineExecutionException
1034
1046
 
1035
1047
  OutputArtifact.add_member(:name, Shapes::ShapeRef.new(shape: ArtifactName, required: true, location_name: "name"))
1048
+ OutputArtifact.add_member(:files, Shapes::ShapeRef.new(shape: FilePathList, location_name: "files"))
1036
1049
  OutputArtifact.struct_class = Types::OutputArtifact
1037
1050
 
1038
1051
  OutputArtifactList.member = Shapes::ShapeRef.new(shape: OutputArtifact)
1039
1052
 
1053
+ OutputVariableList.member = Shapes::ShapeRef.new(shape: OutputVariable)
1054
+
1040
1055
  OutputVariablesMap.key = Shapes::ShapeRef.new(shape: OutputVariablesKey)
1041
1056
  OutputVariablesMap.value = Shapes::ShapeRef.new(shape: OutputVariablesValue)
1042
1057
 
@@ -251,6 +251,18 @@ module Aws::CodePipeline
251
251
  # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html
252
252
  # @return [Hash<String,String>]
253
253
  #
254
+ # @!attribute [rw] commands
255
+ # The shell commands to run with your compute action in CodePipeline.
256
+ # All commands are supported except multi-line formats. While
257
+ # CodeBuild logs and permissions are used, you do not need to create
258
+ # any resources in CodeBuild.
259
+ #
260
+ # <note markdown="1"> Using compute time for this action will incur separate charges in
261
+ # CodeBuild.
262
+ #
263
+ # </note>
264
+ # @return [Array<String>]
265
+ #
254
266
  # @!attribute [rw] output_artifacts
255
267
  # The name or ID of the result of the action declaration, such as a
256
268
  # test or build artifact.
@@ -261,6 +273,12 @@ module Aws::CodePipeline
261
273
  # test or build artifact.
262
274
  # @return [Array<Types::InputArtifact>]
263
275
  #
276
+ # @!attribute [rw] output_variables
277
+ # The list of variables that are to be exported from the compute
278
+ # action. This is specifically CodeBuild environment variables as used
279
+ # for that action.
280
+ # @return [Array<String>]
281
+ #
264
282
  # @!attribute [rw] role_arn
265
283
  # The ARN of the IAM service role that performs the declared action.
266
284
  # This is assumed through the roleArn for the pipeline.
@@ -294,8 +312,10 @@ module Aws::CodePipeline
294
312
  :action_type_id,
295
313
  :run_order,
296
314
  :configuration,
315
+ :commands,
297
316
  :output_artifacts,
298
317
  :input_artifacts,
318
+ :output_variables,
299
319
  :role_arn,
300
320
  :region,
301
321
  :namespace,
@@ -3079,10 +3099,16 @@ module Aws::CodePipeline
3079
3099
  # Output artifact names must be unique within a pipeline.
3080
3100
  # @return [String]
3081
3101
  #
3102
+ # @!attribute [rw] files
3103
+ # The files that you want to associate with the output artifact that
3104
+ # will be exported from the compute action.
3105
+ # @return [Array<String>]
3106
+ #
3082
3107
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/OutputArtifact AWS API Documentation
3083
3108
  #
3084
3109
  class OutputArtifact < Struct.new(
3085
- :name)
3110
+ :name,
3111
+ :files)
3086
3112
  SENSITIVE = []
3087
3113
  include Aws::Structure
3088
3114
  end
@@ -11,6 +11,8 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:codepipeline)
15
+
14
16
  # This module provides support for AWS CodePipeline. This module is available in the
15
17
  # `aws-sdk-codepipeline` gem.
16
18
  #
@@ -52,7 +54,7 @@ module Aws::CodePipeline
52
54
  autoload :EndpointProvider, 'aws-sdk-codepipeline/endpoint_provider'
53
55
  autoload :Endpoints, 'aws-sdk-codepipeline/endpoints'
54
56
 
55
- GEM_VERSION = '1.84.0'
57
+ GEM_VERSION = '1.86.0'
56
58
 
57
59
  end
58
60
 
data/sig/client.rbs CHANGED
@@ -189,9 +189,11 @@ module Aws
189
189
  },
190
190
  run_order: ::Integer?,
191
191
  configuration: Hash[::String, ::String]?,
192
+ commands: Array[::String]?,
192
193
  output_artifacts: Array[
193
194
  {
194
- name: ::String
195
+ name: ::String,
196
+ files: Array[::String]?
195
197
  },
196
198
  ]?,
197
199
  input_artifacts: Array[
@@ -199,6 +201,7 @@ module Aws
199
201
  name: ::String
200
202
  },
201
203
  ]?,
204
+ output_variables: Array[::String]?,
202
205
  role_arn: ::String?,
203
206
  region: ::String?,
204
207
  namespace: ::String?,
@@ -950,9 +953,11 @@ module Aws
950
953
  },
951
954
  run_order: ::Integer?,
952
955
  configuration: Hash[::String, ::String]?,
956
+ commands: Array[::String]?,
953
957
  output_artifacts: Array[
954
958
  {
955
- name: ::String
959
+ name: ::String,
960
+ files: Array[::String]?
956
961
  },
957
962
  ]?,
958
963
  input_artifacts: Array[
@@ -960,6 +965,7 @@ module Aws
960
965
  name: ::String
961
966
  },
962
967
  ]?,
968
+ output_variables: Array[::String]?,
963
969
  role_arn: ::String?,
964
970
  region: ::String?,
965
971
  namespace: ::String?,
data/sig/types.rbs CHANGED
@@ -65,8 +65,10 @@ module Aws::CodePipeline
65
65
  attr_accessor action_type_id: Types::ActionTypeId
66
66
  attr_accessor run_order: ::Integer
67
67
  attr_accessor configuration: ::Hash[::String, ::String]
68
+ attr_accessor commands: ::Array[::String]
68
69
  attr_accessor output_artifacts: ::Array[Types::OutputArtifact]
69
70
  attr_accessor input_artifacts: ::Array[Types::InputArtifact]
71
+ attr_accessor output_variables: ::Array[::String]
70
72
  attr_accessor role_arn: ::String
71
73
  attr_accessor region: ::String
72
74
  attr_accessor namespace: ::String
@@ -803,6 +805,7 @@ module Aws::CodePipeline
803
805
 
804
806
  class OutputArtifact
805
807
  attr_accessor name: ::String
808
+ attr_accessor files: ::Array[::String]
806
809
  SENSITIVE: []
807
810
  end
808
811
 
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.84.0
4
+ version: 1.86.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: 2024-09-23 00:00:00.000000000 Z
11
+ date: 2024-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core