Skip to content

Commit e17e527

Browse files
author
awstools
committed
feat(client-codebuild): Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild.
1 parent 39e810c commit e17e527

15 files changed

+159
-85
lines changed

clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
6969
* // },
7070
* // ],
7171
* // source: { // ProjectSource
72-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
72+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
7373
* // location: "STRING_VALUE",
7474
* // gitCloneDepth: Number("int"),
7575
* // gitSubmodulesConfig: { // GitSubmodulesConfig
7676
* // fetchSubmodules: true || false, // required
7777
* // },
7878
* // buildspec: "STRING_VALUE",
7979
* // auth: { // SourceAuth
80-
* // type: "OAUTH", // required
80+
* // type: "OAUTH" || "CODECONNECTIONS", // required
8181
* // resource: "STRING_VALUE",
8282
* // },
8383
* // reportBuildStatus: true || false,
@@ -90,15 +90,15 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
9090
* // },
9191
* // secondarySources: [ // ProjectSources
9292
* // {
93-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
93+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
9494
* // location: "STRING_VALUE",
9595
* // gitCloneDepth: Number("int"),
9696
* // gitSubmodulesConfig: {
9797
* // fetchSubmodules: true || false, // required
9898
* // },
9999
* // buildspec: "STRING_VALUE",
100100
* // auth: {
101-
* // type: "OAUTH", // required
101+
* // type: "OAUTH" || "CODECONNECTIONS", // required
102102
* // resource: "STRING_VALUE",
103103
* // },
104104
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met
7070
* // },
7171
* // ],
7272
* // source: { // ProjectSource
73-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
73+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
7474
* // location: "STRING_VALUE",
7575
* // gitCloneDepth: Number("int"),
7676
* // gitSubmodulesConfig: { // GitSubmodulesConfig
7777
* // fetchSubmodules: true || false, // required
7878
* // },
7979
* // buildspec: "STRING_VALUE",
8080
* // auth: { // SourceAuth
81-
* // type: "OAUTH", // required
81+
* // type: "OAUTH" || "CODECONNECTIONS", // required
8282
* // resource: "STRING_VALUE",
8383
* // },
8484
* // reportBuildStatus: true || false,
@@ -91,15 +91,15 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met
9191
* // },
9292
* // secondarySources: [ // ProjectSources
9393
* // {
94-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
94+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
9595
* // location: "STRING_VALUE",
9696
* // gitCloneDepth: Number("int"),
9797
* // gitSubmodulesConfig: {
9898
* // fetchSubmodules: true || false, // required
9999
* // },
100100
* // buildspec: "STRING_VALUE",
101101
* // auth: {
102-
* // type: "OAUTH", // required
102+
* // type: "OAUTH" || "CODECONNECTIONS", // required
103103
* // resource: "STRING_VALUE",
104104
* // },
105105
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _
4848
* // arn: "STRING_VALUE",
4949
* // description: "STRING_VALUE",
5050
* // source: { // ProjectSource
51-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
51+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
5252
* // location: "STRING_VALUE",
5353
* // gitCloneDepth: Number("int"),
5454
* // gitSubmodulesConfig: { // GitSubmodulesConfig
5555
* // fetchSubmodules: true || false, // required
5656
* // },
5757
* // buildspec: "STRING_VALUE",
5858
* // auth: { // SourceAuth
59-
* // type: "OAUTH", // required
59+
* // type: "OAUTH" || "CODECONNECTIONS", // required
6060
* // resource: "STRING_VALUE",
6161
* // },
6262
* // reportBuildStatus: true || false,
@@ -69,15 +69,15 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _
6969
* // },
7070
* // secondarySources: [ // ProjectSources
7171
* // {
72-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
72+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
7373
* // location: "STRING_VALUE",
7474
* // gitCloneDepth: Number("int"),
7575
* // gitSubmodulesConfig: {
7676
* // fetchSubmodules: true || false, // required
7777
* // },
7878
* // buildspec: "STRING_VALUE",
7979
* // auth: {
80-
* // type: "OAUTH", // required
80+
* // type: "OAUTH" || "CODECONNECTIONS", // required
8181
* // resource: "STRING_VALUE",
8282
* // },
8383
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/CreateProjectCommand.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
3838
* name: "STRING_VALUE", // required
3939
* description: "STRING_VALUE",
4040
* source: { // ProjectSource
41-
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
41+
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
4242
* location: "STRING_VALUE",
4343
* gitCloneDepth: Number("int"),
4444
* gitSubmodulesConfig: { // GitSubmodulesConfig
4545
* fetchSubmodules: true || false, // required
4646
* },
4747
* buildspec: "STRING_VALUE",
4848
* auth: { // SourceAuth
49-
* type: "OAUTH", // required
49+
* type: "OAUTH" || "CODECONNECTIONS", // required
5050
* resource: "STRING_VALUE",
5151
* },
5252
* reportBuildStatus: true || false,
@@ -59,15 +59,15 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
5959
* },
6060
* secondarySources: [ // ProjectSources
6161
* {
62-
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
62+
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
6363
* location: "STRING_VALUE",
6464
* gitCloneDepth: Number("int"),
6565
* gitSubmodulesConfig: {
6666
* fetchSubmodules: true || false, // required
6767
* },
6868
* buildspec: "STRING_VALUE",
6969
* auth: {
70-
* type: "OAUTH", // required
70+
* type: "OAUTH" || "CODECONNECTIONS", // required
7171
* resource: "STRING_VALUE",
7272
* },
7373
* reportBuildStatus: true || false,
@@ -205,15 +205,15 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
205205
* // arn: "STRING_VALUE",
206206
* // description: "STRING_VALUE",
207207
* // source: { // ProjectSource
208-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
208+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
209209
* // location: "STRING_VALUE",
210210
* // gitCloneDepth: Number("int"),
211211
* // gitSubmodulesConfig: { // GitSubmodulesConfig
212212
* // fetchSubmodules: true || false, // required
213213
* // },
214214
* // buildspec: "STRING_VALUE",
215215
* // auth: { // SourceAuth
216-
* // type: "OAUTH", // required
216+
* // type: "OAUTH" || "CODECONNECTIONS", // required
217217
* // resource: "STRING_VALUE",
218218
* // },
219219
* // reportBuildStatus: true || false,
@@ -226,15 +226,15 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
226226
* // },
227227
* // secondarySources: [ // ProjectSources
228228
* // {
229-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
229+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
230230
* // location: "STRING_VALUE",
231231
* // gitCloneDepth: Number("int"),
232232
* // gitSubmodulesConfig: {
233233
* // fetchSubmodules: true || false, // required
234234
* // },
235235
* // buildspec: "STRING_VALUE",
236236
* // auth: {
237-
* // type: "OAUTH", // required
237+
* // type: "OAUTH" || "CODECONNECTIONS", // required
238238
* // resource: "STRING_VALUE",
239239
* // },
240240
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden
4242
* const input = { // ImportSourceCredentialsInput
4343
* username: "STRING_VALUE",
4444
* token: "STRING_VALUE", // required
45-
* serverType: "GITHUB" || "BITBUCKET" || "GITHUB_ENTERPRISE", // required
46-
* authType: "OAUTH" || "BASIC_AUTH" || "PERSONAL_ACCESS_TOKEN", // required
45+
* serverType: "GITHUB" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "GITLAB" || "GITLAB_SELF_MANAGED", // required
46+
* authType: "OAUTH" || "BASIC_AUTH" || "PERSONAL_ACCESS_TOKEN" || "CODECONNECTIONS", // required
4747
* shouldOverwrite: true || false,
4848
* };
4949
* const command = new ImportSourceCredentialsCommand(input);

clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
4141
* // sourceCredentialsInfos: [ // SourceCredentialsInfos
4242
* // { // SourceCredentialsInfo
4343
* // arn: "STRING_VALUE",
44-
* // serverType: "GITHUB" || "BITBUCKET" || "GITHUB_ENTERPRISE",
45-
* // authType: "OAUTH" || "BASIC_AUTH" || "PERSONAL_ACCESS_TOKEN",
44+
* // serverType: "GITHUB" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "GITLAB" || "GITLAB_SELF_MANAGED",
45+
* // authType: "OAUTH" || "BASIC_AUTH" || "PERSONAL_ACCESS_TOKEN" || "CODECONNECTIONS",
46+
* // resource: "STRING_VALUE",
4647
* // },
4748
* // ],
4849
* // };

clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
6868
* // },
6969
* // ],
7070
* // source: { // ProjectSource
71-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
71+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
7272
* // location: "STRING_VALUE",
7373
* // gitCloneDepth: Number("int"),
7474
* // gitSubmodulesConfig: { // GitSubmodulesConfig
7575
* // fetchSubmodules: true || false, // required
7676
* // },
7777
* // buildspec: "STRING_VALUE",
7878
* // auth: { // SourceAuth
79-
* // type: "OAUTH", // required
79+
* // type: "OAUTH" || "CODECONNECTIONS", // required
8080
* // resource: "STRING_VALUE",
8181
* // },
8282
* // reportBuildStatus: true || false,
@@ -89,15 +89,15 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
8989
* // },
9090
* // secondarySources: [ // ProjectSources
9191
* // {
92-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
92+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
9393
* // location: "STRING_VALUE",
9494
* // gitCloneDepth: Number("int"),
9595
* // gitSubmodulesConfig: {
9696
* // fetchSubmodules: true || false, // required
9797
* // },
9898
* // buildspec: "STRING_VALUE",
9999
* // auth: {
100-
* // type: "OAUTH", // required
100+
* // type: "OAUTH" || "CODECONNECTIONS", // required
101101
* // resource: "STRING_VALUE",
102102
* // },
103103
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/RetryBuildCommand.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
6868
* // },
6969
* // ],
7070
* // source: { // ProjectSource
71-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
71+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
7272
* // location: "STRING_VALUE",
7373
* // gitCloneDepth: Number("int"),
7474
* // gitSubmodulesConfig: { // GitSubmodulesConfig
7575
* // fetchSubmodules: true || false, // required
7676
* // },
7777
* // buildspec: "STRING_VALUE",
7878
* // auth: { // SourceAuth
79-
* // type: "OAUTH", // required
79+
* // type: "OAUTH" || "CODECONNECTIONS", // required
8080
* // resource: "STRING_VALUE",
8181
* // },
8282
* // reportBuildStatus: true || false,
@@ -89,15 +89,15 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
8989
* // },
9090
* // secondarySources: [ // ProjectSources
9191
* // {
92-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
92+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
9393
* // location: "STRING_VALUE",
9494
* // gitCloneDepth: Number("int"),
9595
* // gitSubmodulesConfig: {
9696
* // fetchSubmodules: true || false, // required
9797
* // },
9898
* // buildspec: "STRING_VALUE",
9999
* // auth: {
100-
* // type: "OAUTH", // required
100+
* // type: "OAUTH" || "CODECONNECTIONS", // required
101101
* // resource: "STRING_VALUE",
102102
* // },
103103
* // reportBuildStatus: true || false,

clients/client-codebuild/src/commands/StartBuildBatchCommand.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
3838
* projectName: "STRING_VALUE", // required
3939
* secondarySourcesOverride: [ // ProjectSources
4040
* { // ProjectSource
41-
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
41+
* type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
4242
* location: "STRING_VALUE",
4343
* gitCloneDepth: Number("int"),
4444
* gitSubmodulesConfig: { // GitSubmodulesConfig
4545
* fetchSubmodules: true || false, // required
4646
* },
4747
* buildspec: "STRING_VALUE",
4848
* auth: { // SourceAuth
49-
* type: "OAUTH", // required
49+
* type: "OAUTH" || "CODECONNECTIONS", // required
5050
* resource: "STRING_VALUE",
5151
* },
5252
* reportBuildStatus: true || false,
@@ -98,10 +98,10 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
9898
* type: "PLAINTEXT" || "PARAMETER_STORE" || "SECRETS_MANAGER",
9999
* },
100100
* ],
101-
* sourceTypeOverride: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE",
101+
* sourceTypeOverride: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE",
102102
* sourceLocationOverride: "STRING_VALUE",
103103
* sourceAuthOverride: {
104-
* type: "OAUTH", // required
104+
* type: "OAUTH" || "CODECONNECTIONS", // required
105105
* resource: "STRING_VALUE",
106106
* },
107107
* gitCloneDepthOverride: Number("int"),
@@ -189,15 +189,15 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
189189
* // },
190190
* // ],
191191
* // source: { // ProjectSource
192-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
192+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
193193
* // location: "STRING_VALUE",
194194
* // gitCloneDepth: Number("int"),
195195
* // gitSubmodulesConfig: { // GitSubmodulesConfig
196196
* // fetchSubmodules: true || false, // required
197197
* // },
198198
* // buildspec: "STRING_VALUE",
199199
* // auth: { // SourceAuth
200-
* // type: "OAUTH", // required
200+
* // type: "OAUTH" || "CODECONNECTIONS", // required
201201
* // resource: "STRING_VALUE",
202202
* // },
203203
* // reportBuildStatus: true || false,
@@ -210,15 +210,15 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
210210
* // },
211211
* // secondarySources: [ // ProjectSources
212212
* // {
213-
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
213+
* // type: "CODECOMMIT" || "CODEPIPELINE" || "GITHUB" || "GITLAB" || "GITLAB_SELF_MANAGED" || "S3" || "BITBUCKET" || "GITHUB_ENTERPRISE" || "NO_SOURCE", // required
214214
* // location: "STRING_VALUE",
215215
* // gitCloneDepth: Number("int"),
216216
* // gitSubmodulesConfig: {
217217
* // fetchSubmodules: true || false, // required
218218
* // },
219219
* // buildspec: "STRING_VALUE",
220220
* // auth: {
221-
* // type: "OAUTH", // required
221+
* // type: "OAUTH" || "CODECONNECTIONS", // required
222222
* // resource: "STRING_VALUE",
223223
* // },
224224
* // reportBuildStatus: true || false,

0 commit comments

Comments
 (0)