aws-sdk-codepipeline 1.26.0 → 1.27.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
  SHA1:
3
- metadata.gz: 804c6c456543be0d7236675e8934c3f52c252539
4
- data.tar.gz: 4bd9fedb9baa1f50f5dd1b715943b3e8f8b8af50
3
+ metadata.gz: 847d358c63dea52617caa84a6e6b9986e4da9213
4
+ data.tar.gz: b0c8513603fa7234e7c803127333ee41ab8a2e4c
5
5
  SHA512:
6
- metadata.gz: 5286abd36d19d2a53efd3099d6aba76de133fc393988de6a53545a3091aa415b6b1fd75a848b18f8694abaebf6f058c93cd637132c93362d919af2fc26877751
7
- data.tar.gz: 7a16e5e191f0128ad52505c36707737a742616623747aa5ffc0f8d1ba2e492bf114a802406515d7ad1bf739e1dd9f43621ec52c116e05ba83b96380923fdba1b
6
+ metadata.gz: 83d9c52769cb1f210e86a1ca85c07057df8812813b657091928521e6934e324623bd6b09c0cc0771ea1f5d0614d472103609d7e9ba733ee62bb5e204152bfb3f
7
+ data.tar.gz: 0a59c917aff6836d48381a2d558bd6fc6d7c9b608cf2bb676ede073ec81826594d4d44db20a9bb245d0699a1ee1a05ad5de3656860c41e23dc2ed0a9f3ed6dba
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
42
42
  # @service
43
43
  module Aws::CodePipeline
44
44
 
45
- GEM_VERSION = '1.26.0'
45
+ GEM_VERSION = '1.27.0'
46
46
 
47
47
  end
@@ -548,6 +548,7 @@ module Aws::CodePipeline
548
548
  # ],
549
549
  # role_arn: "RoleArn",
550
550
  # region: "AWSRegionName",
551
+ # namespace: "ActionNamespace",
551
552
  # },
552
553
  # ],
553
554
  # },
@@ -595,6 +596,7 @@ module Aws::CodePipeline
595
596
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
596
597
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
597
598
  # resp.pipeline.stages[0].actions[0].region #=> String
599
+ # resp.pipeline.stages[0].actions[0].namespace #=> String
598
600
  # resp.pipeline.version #=> Integer
599
601
  # resp.tags #=> Array
600
602
  # resp.tags[0].key #=> String
@@ -924,6 +926,7 @@ module Aws::CodePipeline
924
926
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
925
927
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
926
928
  # resp.pipeline.stages[0].actions[0].region #=> String
929
+ # resp.pipeline.stages[0].actions[0].namespace #=> String
927
930
  # resp.pipeline.version #=> Integer
928
931
  # resp.metadata.pipeline_arn #=> String
929
932
  # resp.metadata.created #=> Time
@@ -1181,12 +1184,15 @@ module Aws::CodePipeline
1181
1184
  # resp.action_execution_details[0].input.action_type_id.version #=> String
1182
1185
  # resp.action_execution_details[0].input.configuration #=> Hash
1183
1186
  # resp.action_execution_details[0].input.configuration["ActionConfigurationKey"] #=> String
1187
+ # resp.action_execution_details[0].input.resolved_configuration #=> Hash
1188
+ # resp.action_execution_details[0].input.resolved_configuration["String"] #=> String
1184
1189
  # resp.action_execution_details[0].input.role_arn #=> String
1185
1190
  # resp.action_execution_details[0].input.region #=> String
1186
1191
  # resp.action_execution_details[0].input.input_artifacts #=> Array
1187
1192
  # resp.action_execution_details[0].input.input_artifacts[0].name #=> String
1188
1193
  # resp.action_execution_details[0].input.input_artifacts[0].s3location.bucket #=> String
1189
1194
  # resp.action_execution_details[0].input.input_artifacts[0].s3location.key #=> String
1195
+ # resp.action_execution_details[0].input.namespace #=> String
1190
1196
  # resp.action_execution_details[0].output.output_artifacts #=> Array
1191
1197
  # resp.action_execution_details[0].output.output_artifacts[0].name #=> String
1192
1198
  # resp.action_execution_details[0].output.output_artifacts[0].s3location.bucket #=> String
@@ -1194,6 +1200,8 @@ module Aws::CodePipeline
1194
1200
  # resp.action_execution_details[0].output.execution_result.external_execution_id #=> String
1195
1201
  # resp.action_execution_details[0].output.execution_result.external_execution_summary #=> String
1196
1202
  # resp.action_execution_details[0].output.execution_result.external_execution_url #=> String
1203
+ # resp.action_execution_details[0].output.output_variables #=> Hash
1204
+ # resp.action_execution_details[0].output.output_variables["OutputVariablesKey"] #=> String
1197
1205
  # resp.next_token #=> String
1198
1206
  #
1199
1207
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListActionExecutions AWS API Documentation
@@ -1741,6 +1749,11 @@ module Aws::CodePipeline
1741
1749
  # The execution details of the successful job, such as the actions taken
1742
1750
  # by the job worker.
1743
1751
  #
1752
+ # @option params [Hash<String,String>] :output_variables
1753
+ # Key-value pairs produced as output by a job worker that can be made
1754
+ # available to a downstream action configuration. `outputVariables` can
1755
+ # be included only when there is no continuation token on the request.
1756
+ #
1744
1757
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1745
1758
  #
1746
1759
  # @example Request syntax with placeholder values
@@ -1759,6 +1772,9 @@ module Aws::CodePipeline
1759
1772
  # external_execution_id: "ExecutionId",
1760
1773
  # percent_complete: 1,
1761
1774
  # },
1775
+ # output_variables: {
1776
+ # "OutputVariablesKey" => "OutputVariablesValue",
1777
+ # },
1762
1778
  # })
1763
1779
  #
1764
1780
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobSuccessResult AWS API Documentation
@@ -2182,6 +2198,7 @@ module Aws::CodePipeline
2182
2198
  # ],
2183
2199
  # role_arn: "RoleArn",
2184
2200
  # region: "AWSRegionName",
2201
+ # namespace: "ActionNamespace",
2185
2202
  # },
2186
2203
  # ],
2187
2204
  # },
@@ -2223,6 +2240,7 @@ module Aws::CodePipeline
2223
2240
  # resp.pipeline.stages[0].actions[0].input_artifacts[0].name #=> String
2224
2241
  # resp.pipeline.stages[0].actions[0].role_arn #=> String
2225
2242
  # resp.pipeline.stages[0].actions[0].region #=> String
2243
+ # resp.pipeline.stages[0].actions[0].namespace #=> String
2226
2244
  # resp.pipeline.version #=> Integer
2227
2245
  #
2228
2246
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline AWS API Documentation
@@ -2247,7 +2265,7 @@ module Aws::CodePipeline
2247
2265
  params: params,
2248
2266
  config: config)
2249
2267
  context[:gem_name] = 'aws-sdk-codepipeline'
2250
- context[:gem_version] = '1.26.0'
2268
+ context[:gem_version] = '1.27.0'
2251
2269
  Seahorse::Client::Request.new(handlers, context)
2252
2270
  end
2253
2271
 
@@ -41,6 +41,7 @@ module Aws::CodePipeline
41
41
  ActionExecutionStatus = Shapes::StringShape.new(name: 'ActionExecutionStatus')
42
42
  ActionExecutionToken = Shapes::StringShape.new(name: 'ActionExecutionToken')
43
43
  ActionName = Shapes::StringShape.new(name: 'ActionName')
44
+ ActionNamespace = Shapes::StringShape.new(name: 'ActionNamespace')
44
45
  ActionNotFoundException = Shapes::StructureShape.new(name: 'ActionNotFoundException')
45
46
  ActionOwner = Shapes::StringShape.new(name: 'ActionOwner')
46
47
  ActionProvider = Shapes::StringShape.new(name: 'ActionProvider')
@@ -172,6 +173,10 @@ module Aws::CodePipeline
172
173
  NotLatestPipelineExecutionException = Shapes::StructureShape.new(name: 'NotLatestPipelineExecutionException')
173
174
  OutputArtifact = Shapes::StructureShape.new(name: 'OutputArtifact')
174
175
  OutputArtifactList = Shapes::ListShape.new(name: 'OutputArtifactList')
176
+ OutputVariablesKey = Shapes::StringShape.new(name: 'OutputVariablesKey')
177
+ OutputVariablesMap = Shapes::MapShape.new(name: 'OutputVariablesMap')
178
+ OutputVariablesSizeExceededException = Shapes::StructureShape.new(name: 'OutputVariablesSizeExceededException')
179
+ OutputVariablesValue = Shapes::StringShape.new(name: 'OutputVariablesValue')
175
180
  Percentage = Shapes::IntegerShape.new(name: 'Percentage')
176
181
  PipelineArn = Shapes::StringShape.new(name: 'PipelineArn')
177
182
  PipelineContext = Shapes::StructureShape.new(name: 'PipelineContext')
@@ -208,6 +213,7 @@ module Aws::CodePipeline
208
213
  QueryParamMap = Shapes::MapShape.new(name: 'QueryParamMap')
209
214
  RegisterWebhookWithThirdPartyInput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyInput')
210
215
  RegisterWebhookWithThirdPartyOutput = Shapes::StructureShape.new(name: 'RegisterWebhookWithThirdPartyOutput')
216
+ ResolvedActionConfigurationMap = Shapes::MapShape.new(name: 'ResolvedActionConfigurationMap')
211
217
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
212
218
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
213
219
  RetryStageExecutionInput = Shapes::StructureShape.new(name: 'RetryStageExecutionInput')
@@ -241,6 +247,7 @@ module Aws::CodePipeline
241
247
  StageTransitionType = Shapes::StringShape.new(name: 'StageTransitionType')
242
248
  StartPipelineExecutionInput = Shapes::StructureShape.new(name: 'StartPipelineExecutionInput')
243
249
  StartPipelineExecutionOutput = Shapes::StructureShape.new(name: 'StartPipelineExecutionOutput')
250
+ String = Shapes::StringShape.new(name: 'String')
244
251
  Tag = Shapes::StructureShape.new(name: 'Tag')
245
252
  TagKey = Shapes::StringShape.new(name: 'TagKey')
246
253
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -332,6 +339,7 @@ module Aws::CodePipeline
332
339
  ActionDeclaration.add_member(:input_artifacts, Shapes::ShapeRef.new(shape: InputArtifactList, location_name: "inputArtifacts"))
333
340
  ActionDeclaration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
334
341
  ActionDeclaration.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
342
+ ActionDeclaration.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
335
343
  ActionDeclaration.struct_class = Types::ActionDeclaration
336
344
 
337
345
  ActionExecution.add_member(:status, Shapes::ShapeRef.new(shape: ActionExecutionStatus, location_name: "status"))
@@ -364,13 +372,16 @@ module Aws::CodePipeline
364
372
 
365
373
  ActionExecutionInput.add_member(:action_type_id, Shapes::ShapeRef.new(shape: ActionTypeId, location_name: "actionTypeId"))
366
374
  ActionExecutionInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ActionConfigurationMap, location_name: "configuration"))
375
+ ActionExecutionInput.add_member(:resolved_configuration, Shapes::ShapeRef.new(shape: ResolvedActionConfigurationMap, location_name: "resolvedConfiguration"))
367
376
  ActionExecutionInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
368
377
  ActionExecutionInput.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegionName, location_name: "region"))
369
378
  ActionExecutionInput.add_member(:input_artifacts, Shapes::ShapeRef.new(shape: ArtifactDetailList, location_name: "inputArtifacts"))
379
+ ActionExecutionInput.add_member(:namespace, Shapes::ShapeRef.new(shape: ActionNamespace, location_name: "namespace"))
370
380
  ActionExecutionInput.struct_class = Types::ActionExecutionInput
371
381
 
372
382
  ActionExecutionOutput.add_member(:output_artifacts, Shapes::ShapeRef.new(shape: ArtifactDetailList, location_name: "outputArtifacts"))
373
383
  ActionExecutionOutput.add_member(:execution_result, Shapes::ShapeRef.new(shape: ActionExecutionResult, location_name: "executionResult"))
384
+ ActionExecutionOutput.add_member(:output_variables, Shapes::ShapeRef.new(shape: OutputVariablesMap, location_name: "outputVariables"))
374
385
  ActionExecutionOutput.struct_class = Types::ActionExecutionOutput
375
386
 
376
387
  ActionExecutionResult.add_member(:external_execution_id, Shapes::ShapeRef.new(shape: ExternalExecutionId, location_name: "externalExecutionId"))
@@ -679,6 +690,12 @@ module Aws::CodePipeline
679
690
 
680
691
  OutputArtifactList.member = Shapes::ShapeRef.new(shape: OutputArtifact)
681
692
 
693
+ OutputVariablesMap.key = Shapes::ShapeRef.new(shape: OutputVariablesKey)
694
+ OutputVariablesMap.value = Shapes::ShapeRef.new(shape: OutputVariablesValue)
695
+
696
+ OutputVariablesSizeExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
697
+ OutputVariablesSizeExceededException.struct_class = Types::OutputVariablesSizeExceededException
698
+
682
699
  PipelineContext.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "pipelineName"))
683
700
  PipelineContext.add_member(:stage, Shapes::ShapeRef.new(shape: StageContext, location_name: "stage"))
684
701
  PipelineContext.add_member(:action, Shapes::ShapeRef.new(shape: ActionContext, location_name: "action"))
@@ -769,6 +786,7 @@ module Aws::CodePipeline
769
786
  PutJobSuccessResultInput.add_member(:current_revision, Shapes::ShapeRef.new(shape: CurrentRevision, location_name: "currentRevision"))
770
787
  PutJobSuccessResultInput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: ContinuationToken, location_name: "continuationToken"))
771
788
  PutJobSuccessResultInput.add_member(:execution_details, Shapes::ShapeRef.new(shape: ExecutionDetails, location_name: "executionDetails"))
789
+ PutJobSuccessResultInput.add_member(:output_variables, Shapes::ShapeRef.new(shape: OutputVariablesMap, location_name: "outputVariables"))
772
790
  PutJobSuccessResultInput.struct_class = Types::PutJobSuccessResultInput
773
791
 
774
792
  PutThirdPartyJobFailureResultInput.add_member(:job_id, Shapes::ShapeRef.new(shape: ThirdPartyJobId, required: true, location_name: "jobId"))
@@ -798,6 +816,9 @@ module Aws::CodePipeline
798
816
 
799
817
  RegisterWebhookWithThirdPartyOutput.struct_class = Types::RegisterWebhookWithThirdPartyOutput
800
818
 
819
+ ResolvedActionConfigurationMap.key = Shapes::ShapeRef.new(shape: String)
820
+ ResolvedActionConfigurationMap.value = Shapes::ShapeRef.new(shape: String)
821
+
801
822
  RetryStageExecutionInput.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, required: true, location_name: "pipelineName"))
802
823
  RetryStageExecutionInput.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, required: true, location_name: "stageName"))
803
824
  RetryStageExecutionInput.add_member(:pipeline_execution_id, Shapes::ShapeRef.new(shape: PipelineExecutionId, required: true, location_name: "pipelineExecutionId"))
@@ -1284,6 +1305,7 @@ module Aws::CodePipeline
1284
1305
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1285
1306
  o.errors << Shapes::ShapeRef.new(shape: JobNotFoundException)
1286
1307
  o.errors << Shapes::ShapeRef.new(shape: InvalidJobStateException)
1308
+ o.errors << Shapes::ShapeRef.new(shape: OutputVariablesSizeExceededException)
1287
1309
  end)
1288
1310
 
1289
1311
  api.add_operation(:put_third_party_job_failure_result, Seahorse::Model::Operation.new.tap do |o|
@@ -58,6 +58,22 @@ module Aws::CodePipeline
58
58
 
59
59
  end
60
60
 
61
+ class OutputVariablesSizeExceededException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::CodePipeline::Types::OutputVariablesSizeExceededException] data
66
+ def initialize(context, message, data = Aws::EmptyStructure.new)
67
+ super(context, message, data)
68
+ end
69
+
70
+ # @return [String]
71
+ def message
72
+ @message || @data[:message]
73
+ end
74
+
75
+ end
76
+
61
77
  class TooManyTagsException < ServiceError
62
78
 
63
79
  # @param [Seahorse::Client::RequestContext] context
@@ -262,6 +262,7 @@ module Aws::CodePipeline
262
262
  # ],
263
263
  # role_arn: "RoleArn",
264
264
  # region: "AWSRegionName",
265
+ # namespace: "ActionNamespace",
265
266
  # }
266
267
  #
267
268
  # @!attribute [rw] name
@@ -319,6 +320,11 @@ module Aws::CodePipeline
319
320
  # The action declaration's AWS Region, such as us-east-1.
320
321
  # @return [String]
321
322
  #
323
+ # @!attribute [rw] namespace
324
+ # The variable namespace associated with the action. All variables
325
+ # produced as output by this action fall under this namespace.
326
+ # @return [String]
327
+ #
322
328
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionDeclaration AWS API Documentation
323
329
  #
324
330
  class ActionDeclaration < Struct.new(
@@ -329,7 +335,8 @@ module Aws::CodePipeline
329
335
  :output_artifacts,
330
336
  :input_artifacts,
331
337
  :role_arn,
332
- :region)
338
+ :region,
339
+ :namespace)
333
340
  include Aws::Structure
334
341
  end
335
342
 
@@ -483,6 +490,11 @@ module Aws::CodePipeline
483
490
  # Configuration data for an action execution.
484
491
  # @return [Hash<String,String>]
485
492
  #
493
+ # @!attribute [rw] resolved_configuration
494
+ # Configuration data for an action execution with all variable
495
+ # references replaced with their real values for the execution.
496
+ # @return [Hash<String,String>]
497
+ #
486
498
  # @!attribute [rw] role_arn
487
499
  # The ARN of the IAM service role that performs the declared action.
488
500
  # This is assumed through the roleArn for the pipeline.
@@ -497,14 +509,21 @@ module Aws::CodePipeline
497
509
  # action execution.
498
510
  # @return [Array<Types::ArtifactDetail>]
499
511
  #
512
+ # @!attribute [rw] namespace
513
+ # The variable namespace associated with the action. All variables
514
+ # produced as output by this action fall under this namespace.
515
+ # @return [String]
516
+ #
500
517
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionInput AWS API Documentation
501
518
  #
502
519
  class ActionExecutionInput < Struct.new(
503
520
  :action_type_id,
504
521
  :configuration,
522
+ :resolved_configuration,
505
523
  :role_arn,
506
524
  :region,
507
- :input_artifacts)
525
+ :input_artifacts,
526
+ :namespace)
508
527
  include Aws::Structure
509
528
  end
510
529
 
@@ -521,11 +540,17 @@ module Aws::CodePipeline
521
540
  # action execution.
522
541
  # @return [Types::ActionExecutionResult]
523
542
  #
543
+ # @!attribute [rw] output_variables
544
+ # The outputVariables field shows the key-value pairs that were output
545
+ # as part of that execution.
546
+ # @return [Hash<String,String>]
547
+ #
524
548
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionOutput AWS API Documentation
525
549
  #
526
550
  class ActionExecutionOutput < Struct.new(
527
551
  :output_artifacts,
528
- :execution_result)
552
+ :execution_result,
553
+ :output_variables)
529
554
  include Aws::Structure
530
555
  end
531
556
 
@@ -1194,6 +1219,7 @@ module Aws::CodePipeline
1194
1219
  # ],
1195
1220
  # role_arn: "RoleArn",
1196
1221
  # region: "AWSRegionName",
1222
+ # namespace: "ActionNamespace",
1197
1223
  # },
1198
1224
  # ],
1199
1225
  # },
@@ -2399,6 +2425,18 @@ module Aws::CodePipeline
2399
2425
  include Aws::Structure
2400
2426
  end
2401
2427
 
2428
+ # Exceeded the total size limit for all variables in the pipeline.
2429
+ #
2430
+ # @!attribute [rw] message
2431
+ # @return [String]
2432
+ #
2433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/OutputVariablesSizeExceededException AWS API Documentation
2434
+ #
2435
+ class OutputVariablesSizeExceededException < Struct.new(
2436
+ :message)
2437
+ include Aws::Structure
2438
+ end
2439
+
2402
2440
  # Represents information about a pipeline to a job worker.
2403
2441
  #
2404
2442
  # <note markdown="1"> PipelineContext contains `pipelineArn` and `pipelineExecutionId` for
@@ -2501,6 +2539,7 @@ module Aws::CodePipeline
2501
2539
  # ],
2502
2540
  # role_arn: "RoleArn",
2503
2541
  # region: "AWSRegionName",
2542
+ # namespace: "ActionNamespace",
2504
2543
  # },
2505
2544
  # ],
2506
2545
  # },
@@ -2988,6 +3027,9 @@ module Aws::CodePipeline
2988
3027
  # external_execution_id: "ExecutionId",
2989
3028
  # percent_complete: 1,
2990
3029
  # },
3030
+ # output_variables: {
3031
+ # "OutputVariablesKey" => "OutputVariablesValue",
3032
+ # },
2991
3033
  # }
2992
3034
  #
2993
3035
  # @!attribute [rw] job_id
@@ -3014,13 +3056,21 @@ module Aws::CodePipeline
3014
3056
  # taken by the job worker.
3015
3057
  # @return [Types::ExecutionDetails]
3016
3058
  #
3059
+ # @!attribute [rw] output_variables
3060
+ # Key-value pairs produced as output by a job worker that can be made
3061
+ # available to a downstream action configuration. `outputVariables`
3062
+ # can be included only when there is no continuation token on the
3063
+ # request.
3064
+ # @return [Hash<String,String>]
3065
+ #
3017
3066
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobSuccessResultInput AWS API Documentation
3018
3067
  #
3019
3068
  class PutJobSuccessResultInput < Struct.new(
3020
3069
  :job_id,
3021
3070
  :current_revision,
3022
3071
  :continuation_token,
3023
- :execution_details)
3072
+ :execution_details,
3073
+ :output_variables)
3024
3074
  include Aws::Structure
3025
3075
  end
3026
3076
 
@@ -3387,6 +3437,7 @@ module Aws::CodePipeline
3387
3437
  # ],
3388
3438
  # role_arn: "RoleArn",
3389
3439
  # region: "AWSRegionName",
3440
+ # namespace: "ActionNamespace",
3390
3441
  # },
3391
3442
  # ],
3392
3443
  # }
@@ -3810,6 +3861,7 @@ module Aws::CodePipeline
3810
3861
  # ],
3811
3862
  # role_arn: "RoleArn",
3812
3863
  # region: "AWSRegionName",
3864
+ # namespace: "ActionNamespace",
3813
3865
  # },
3814
3866
  # ],
3815
3867
  # },
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.26.0
4
+ version: 1.27.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-10-23 00:00:00.000000000 Z
11
+ date: 2019-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core