Skip to content

Commit 9de8a43

Browse files
author
AWS
committed
AWS CodePipeline Update: AWS CodePipeline V2 type pipelines now support Managed Compute Rule.
1 parent b6f4837 commit 9de8a43

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS CodePipeline",
4+
"contributor": "",
5+
"description": "AWS CodePipeline V2 type pipelines now support Managed Compute Rule."
6+
}

services/codepipeline/src/main/resources/codegen-resources/service-2.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
{"shape":"ValidationException"},
343343
{"shape":"InvalidNextTokenException"}
344344
],
345-
"documentation":"<p>Lists the rules for the condition.</p>"
345+
"documentation":"<p>Lists the rules for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>"
346346
},
347347
"ListTagsForResource":{
348348
"name":"ListTagsForResource",
@@ -1394,7 +1394,7 @@
13941394
"members":{
13951395
"category":{
13961396
"shape":"ActionCategory",
1397-
"documentation":"<p>A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values. </p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Invoke</p> </li> <li> <p>Approval</p> </li> </ul>"
1397+
"documentation":"<p>A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values. </p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Invoke</p> </li> <li> <p>Approval</p> </li> <li> <p>Compute</p> </li> </ul>"
13981398
},
13991399
"owner":{
14001400
"shape":"ActionOwner",
@@ -1848,7 +1848,7 @@
18481848
"documentation":"<p>The rules that make up the condition.</p>"
18491849
}
18501850
},
1851-
"documentation":"<p>The condition for the stage. A condition is made up of the rules and the result for the condition.</p>"
1851+
"documentation":"<p>The condition for the stage. A condition is made up of the rules and the result for the condition. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>"
18521852
},
18531853
"ConditionExecution":{
18541854
"type":"structure",
@@ -2375,7 +2375,7 @@
23752375
"members":{
23762376
"category":{
23772377
"shape":"ActionCategory",
2378-
"documentation":"<p>Defines what kind of action can be taken in the stage. The following are the valid values:</p> <ul> <li> <p> <code>Source</code> </p> </li> <li> <p> <code>Build</code> </p> </li> <li> <p> <code>Test</code> </p> </li> <li> <p> <code>Deploy</code> </p> </li> <li> <p> <code>Approval</code> </p> </li> <li> <p> <code>Invoke</code> </p> </li> </ul>"
2378+
"documentation":"<p>Defines what kind of action can be taken in the stage. The following are the valid values:</p> <ul> <li> <p> <code>Source</code> </p> </li> <li> <p> <code>Build</code> </p> </li> <li> <p> <code>Test</code> </p> </li> <li> <p> <code>Deploy</code> </p> </li> <li> <p> <code>Approval</code> </p> </li> <li> <p> <code>Invoke</code> </p> </li> <li> <p> <code>Compute</code> </p> </li> </ul>"
23792379
},
23802380
"owner":{
23812381
"shape":"ActionTypeOwner",
@@ -4426,7 +4426,7 @@
44264426
"members":{
44274427
"name":{
44284428
"shape":"RuleName",
4429-
"documentation":"<p>The name of the rule that is created for the condition, such as CheckAllResults.</p>"
4429+
"documentation":"<p>The name of the rule that is created for the condition, such as <code>VariableCheck</code>.</p>"
44304430
},
44314431
"ruleTypeId":{
44324432
"shape":"RuleTypeId",
@@ -4436,6 +4436,10 @@
44364436
"shape":"RuleConfigurationMap",
44374437
"documentation":"<p>The action configuration fields for the rule.</p>"
44384438
},
4439+
"commands":{
4440+
"shape":"CommandList",
4441+
"documentation":"<p>The shell commands to run with your commands rule in CodePipeline. All commands are supported except multi-line formats. While CodeBuild logs and permissions are used, you do not need to create any resources in CodeBuild.</p> <note> <p>Using compute time for this action will incur separate charges in CodeBuild.</p> </note>"
4442+
},
44394443
"inputArtifacts":{
44404444
"shape":"InputArtifactList",
44414445
"documentation":"<p>The input artifacts fields for the rule, such as specifying an input file for the rule.</p>"
@@ -4453,7 +4457,7 @@
44534457
"documentation":"<p>The action timeout for the rule.</p>"
44544458
}
44554459
},
4456-
"documentation":"<p>Represents information about the rule to be created for an associated condition. An example would be creating a new rule for an entry condition, such as a rule that checks for a test result before allowing the run to enter the deployment stage.</p>"
4460+
"documentation":"<p>Represents information about the rule to be created for an associated condition. An example would be creating a new rule for an entry condition, such as a rule that checks for a test result before allowing the run to enter the deployment stage. For more information about conditions, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html\">Stage conditions</a>. For more information about rules, see the <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html\">CodePipeline rule reference</a>.</p>"
44574461
},
44584462
"RuleDeclarationList":{
44594463
"type":"list",

0 commit comments

Comments
 (0)