Skip to content

Commit 7390930

Browse files
author
AWS
committed
AWS CodeBuild Update: Add webhook status and status message to AWS CodeBuild webhooks
1 parent 4c734ab commit 7390930

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
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 CodeBuild",
4+
"contributor": "",
5+
"description": "Add webhook status and status message to AWS CodeBuild webhooks"
6+
}

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5000,6 +5000,14 @@
50005000
"scopeConfiguration":{
50015001
"shape":"ScopeConfiguration",
50025002
"documentation":"<p>The scope configuration for global or organization webhooks.</p> <note> <p>Global or organization webhooks are only available for GitHub and Github Enterprise webhooks.</p> </note>"
5003+
},
5004+
"status":{
5005+
"shape":"WebhookStatus",
5006+
"documentation":"<p>The status of the webhook. Valid values include:</p> <ul> <li> <p> <code>CREATING</code>: The webhook is being created.</p> </li> <li> <p> <code>CREATE_FAILED</code>: The webhook has failed to create.</p> </li> <li> <p> <code>ACTIVE</code>: The webhook has succeeded and is active.</p> </li> <li> <p> <code>DELETING</code>: The webhook is being deleted.</p> </li> </ul>"
5007+
},
5008+
"statusMessage":{
5009+
"shape":"String",
5010+
"documentation":"<p>A message associated with the status of a webhook.</p>"
50035011
}
50045012
},
50055013
"documentation":"<p>Information about a webhook that connects repository events to a build project in CodeBuild.</p>"
@@ -5057,6 +5065,15 @@
50575065
"GITLAB_GROUP"
50585066
]
50595067
},
5068+
"WebhookStatus":{
5069+
"type":"string",
5070+
"enum":[
5071+
"CREATING",
5072+
"CREATE_FAILED",
5073+
"ACTIVE",
5074+
"DELETING"
5075+
]
5076+
},
50605077
"WrapperBoolean":{"type":"boolean"},
50615078
"WrapperDouble":{"type":"double"},
50625079
"WrapperInt":{"type":"integer"},

0 commit comments

Comments
 (0)