@aws-sdk/client-codebuild 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetReportsCommand.d.ts +2 -2
- package/dist-types/commands/CreateProjectCommand.d.ts +29 -29
- package/dist-types/commands/CreateReportGroupCommand.d.ts +5 -5
- package/dist-types/commands/CreateWebhookCommand.d.ts +4 -4
- package/dist-types/commands/DeleteBuildBatchCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReportCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReportGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWebhookCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestCasesCommand.d.ts +2 -2
- package/dist-types/commands/GetReportGroupTrendCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +1 -1
- package/dist-types/commands/ListBuildBatchesCommand.d.ts +2 -2
- package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +2 -2
- package/dist-types/commands/ListBuildsCommand.d.ts +1 -1
- package/dist-types/commands/ListBuildsForProjectCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListReportGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListReportsCommand.d.ts +2 -2
- package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +2 -2
- package/dist-types/commands/ListSharedProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +1 -1
- package/dist-types/commands/RetryBuildCommand.d.ts +1 -1
- package/dist-types/commands/StartBuildBatchCommand.d.ts +21 -21
- package/dist-types/commands/StartBuildCommand.d.ts +18 -18
- package/dist-types/commands/StopBuildBatchCommand.d.ts +1 -1
- package/dist-types/commands/StopBuildCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +29 -29
- package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateReportGroupCommand.d.ts +5 -5
- package/dist-types/commands/UpdateWebhookCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -26,8 +26,8 @@ export interface BatchDeleteBuildsCommandOutput extends BatchDeleteBuildsOutput,
|
|
|
26
26
|
* import { CodeBuildClient, BatchDeleteBuildsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, BatchDeleteBuildsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* ids: [ // required
|
|
29
|
+
* const input = { // BatchDeleteBuildsInput
|
|
30
|
+
* ids: [ // BuildIds // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -26,8 +26,8 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
|
|
|
26
26
|
* import { CodeBuildClient, BatchGetBuildBatchesCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, BatchGetBuildBatchesCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* ids: [ // required
|
|
29
|
+
* const input = { // BatchGetBuildBatchesInput
|
|
30
|
+
* ids: [ // BuildBatchIds // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -26,8 +26,8 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met
|
|
|
26
26
|
* import { CodeBuildClient, BatchGetBuildsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, BatchGetBuildsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* ids: [ // required
|
|
29
|
+
* const input = { // BatchGetBuildsInput
|
|
30
|
+
* ids: [ // BuildIds // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -26,8 +26,8 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _
|
|
|
26
26
|
* import { CodeBuildClient, BatchGetProjectsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, BatchGetProjectsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* names: [ // required
|
|
29
|
+
* const input = { // BatchGetProjectsInput
|
|
30
|
+
* names: [ // ProjectNames // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -28,8 +28,8 @@ export interface BatchGetReportGroupsCommandOutput extends BatchGetReportGroupsO
|
|
|
28
28
|
* import { CodeBuildClient, BatchGetReportGroupsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, BatchGetReportGroupsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* reportGroupArns: [ // required
|
|
31
|
+
* const input = { // BatchGetReportGroupsInput
|
|
32
|
+
* reportGroupArns: [ // ReportGroupArns // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -28,8 +28,8 @@ export interface BatchGetReportsCommandOutput extends BatchGetReportsOutput, __M
|
|
|
28
28
|
* import { CodeBuildClient, BatchGetReportsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, BatchGetReportsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* reportArns: [ // required
|
|
31
|
+
* const input = { // BatchGetReportsInput
|
|
32
|
+
* reportArns: [ // ReportArns // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -26,30 +26,30 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
26
26
|
* import { CodeBuildClient, CreateProjectCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, CreateProjectCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateProjectInput
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* source: {
|
|
32
|
+
* source: { // ProjectSource
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* location: "STRING_VALUE",
|
|
35
35
|
* gitCloneDepth: Number("int"),
|
|
36
|
-
* gitSubmodulesConfig: {
|
|
36
|
+
* gitSubmodulesConfig: { // GitSubmodulesConfig
|
|
37
37
|
* fetchSubmodules: true || false, // required
|
|
38
38
|
* },
|
|
39
39
|
* buildspec: "STRING_VALUE",
|
|
40
|
-
* auth: {
|
|
40
|
+
* auth: { // SourceAuth
|
|
41
41
|
* type: "STRING_VALUE", // required
|
|
42
42
|
* resource: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* reportBuildStatus: true || false,
|
|
45
|
-
* buildStatusConfig: {
|
|
45
|
+
* buildStatusConfig: { // BuildStatusConfig
|
|
46
46
|
* context: "STRING_VALUE",
|
|
47
47
|
* targetUrl: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* insecureSsl: true || false,
|
|
50
50
|
* sourceIdentifier: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
|
-
* secondarySources: [
|
|
52
|
+
* secondarySources: [ // ProjectSources
|
|
53
53
|
* {
|
|
54
54
|
* type: "STRING_VALUE", // required
|
|
55
55
|
* location: "STRING_VALUE",
|
|
@@ -72,13 +72,13 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
72
72
|
* },
|
|
73
73
|
* ],
|
|
74
74
|
* sourceVersion: "STRING_VALUE",
|
|
75
|
-
* secondarySourceVersions: [
|
|
76
|
-
* {
|
|
75
|
+
* secondarySourceVersions: [ // ProjectSecondarySourceVersions
|
|
76
|
+
* { // ProjectSourceVersion
|
|
77
77
|
* sourceIdentifier: "STRING_VALUE", // required
|
|
78
78
|
* sourceVersion: "STRING_VALUE", // required
|
|
79
79
|
* },
|
|
80
80
|
* ],
|
|
81
|
-
* artifacts: {
|
|
81
|
+
* artifacts: { // ProjectArtifacts
|
|
82
82
|
* type: "STRING_VALUE", // required
|
|
83
83
|
* location: "STRING_VALUE",
|
|
84
84
|
* path: "STRING_VALUE",
|
|
@@ -90,7 +90,7 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
90
90
|
* artifactIdentifier: "STRING_VALUE",
|
|
91
91
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
92
92
|
* },
|
|
93
|
-
* secondaryArtifacts: [
|
|
93
|
+
* secondaryArtifacts: [ // ProjectArtifactsList
|
|
94
94
|
* {
|
|
95
95
|
* type: "STRING_VALUE", // required
|
|
96
96
|
* location: "STRING_VALUE",
|
|
@@ -104,19 +104,19 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
104
104
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
105
105
|
* },
|
|
106
106
|
* ],
|
|
107
|
-
* cache: {
|
|
107
|
+
* cache: { // ProjectCache
|
|
108
108
|
* type: "STRING_VALUE", // required
|
|
109
109
|
* location: "STRING_VALUE",
|
|
110
|
-
* modes: [
|
|
110
|
+
* modes: [ // ProjectCacheModes
|
|
111
111
|
* "STRING_VALUE",
|
|
112
112
|
* ],
|
|
113
113
|
* },
|
|
114
|
-
* environment: {
|
|
114
|
+
* environment: { // ProjectEnvironment
|
|
115
115
|
* type: "STRING_VALUE", // required
|
|
116
116
|
* image: "STRING_VALUE", // required
|
|
117
117
|
* computeType: "STRING_VALUE", // required
|
|
118
|
-
* environmentVariables: [
|
|
119
|
-
* {
|
|
118
|
+
* environmentVariables: [ // EnvironmentVariables
|
|
119
|
+
* { // EnvironmentVariable
|
|
120
120
|
* name: "STRING_VALUE", // required
|
|
121
121
|
* value: "STRING_VALUE", // required
|
|
122
122
|
* type: "STRING_VALUE",
|
|
@@ -124,7 +124,7 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
124
124
|
* ],
|
|
125
125
|
* privilegedMode: true || false,
|
|
126
126
|
* certificate: "STRING_VALUE",
|
|
127
|
-
* registryCredential: {
|
|
127
|
+
* registryCredential: { // RegistryCredential
|
|
128
128
|
* credential: "STRING_VALUE", // required
|
|
129
129
|
* credentialProvider: "STRING_VALUE", // required
|
|
130
130
|
* },
|
|
@@ -134,37 +134,37 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
134
134
|
* timeoutInMinutes: Number("int"),
|
|
135
135
|
* queuedTimeoutInMinutes: Number("int"),
|
|
136
136
|
* encryptionKey: "STRING_VALUE",
|
|
137
|
-
* tags: [
|
|
138
|
-
* {
|
|
137
|
+
* tags: [ // TagList
|
|
138
|
+
* { // Tag
|
|
139
139
|
* key: "STRING_VALUE",
|
|
140
140
|
* value: "STRING_VALUE",
|
|
141
141
|
* },
|
|
142
142
|
* ],
|
|
143
|
-
* vpcConfig: {
|
|
143
|
+
* vpcConfig: { // VpcConfig
|
|
144
144
|
* vpcId: "STRING_VALUE",
|
|
145
|
-
* subnets: [
|
|
145
|
+
* subnets: [ // Subnets
|
|
146
146
|
* "STRING_VALUE",
|
|
147
147
|
* ],
|
|
148
|
-
* securityGroupIds: [
|
|
148
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
149
149
|
* "STRING_VALUE",
|
|
150
150
|
* ],
|
|
151
151
|
* },
|
|
152
152
|
* badgeEnabled: true || false,
|
|
153
|
-
* logsConfig: {
|
|
154
|
-
* cloudWatchLogs: {
|
|
153
|
+
* logsConfig: { // LogsConfig
|
|
154
|
+
* cloudWatchLogs: { // CloudWatchLogsConfig
|
|
155
155
|
* status: "STRING_VALUE", // required
|
|
156
156
|
* groupName: "STRING_VALUE",
|
|
157
157
|
* streamName: "STRING_VALUE",
|
|
158
158
|
* },
|
|
159
|
-
* s3Logs: {
|
|
159
|
+
* s3Logs: { // S3LogsConfig
|
|
160
160
|
* status: "STRING_VALUE", // required
|
|
161
161
|
* location: "STRING_VALUE",
|
|
162
162
|
* encryptionDisabled: true || false,
|
|
163
163
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
164
164
|
* },
|
|
165
165
|
* },
|
|
166
|
-
* fileSystemLocations: [
|
|
167
|
-
* {
|
|
166
|
+
* fileSystemLocations: [ // ProjectFileSystemLocations
|
|
167
|
+
* { // ProjectFileSystemLocation
|
|
168
168
|
* type: "STRING_VALUE",
|
|
169
169
|
* location: "STRING_VALUE",
|
|
170
170
|
* mountPoint: "STRING_VALUE",
|
|
@@ -172,12 +172,12 @@ export interface CreateProjectCommandOutput extends CreateProjectOutput, __Metad
|
|
|
172
172
|
* mountOptions: "STRING_VALUE",
|
|
173
173
|
* },
|
|
174
174
|
* ],
|
|
175
|
-
* buildBatchConfig: {
|
|
175
|
+
* buildBatchConfig: { // ProjectBuildBatchConfig
|
|
176
176
|
* serviceRole: "STRING_VALUE",
|
|
177
177
|
* combineArtifacts: true || false,
|
|
178
|
-
* restrictions: {
|
|
178
|
+
* restrictions: { // BatchRestrictions
|
|
179
179
|
* maximumBuildsAllowed: Number("int"),
|
|
180
|
-
* computeTypesAllowed: [
|
|
180
|
+
* computeTypesAllowed: [ // ComputeTypesAllowed
|
|
181
181
|
* "STRING_VALUE",
|
|
182
182
|
* ],
|
|
183
183
|
* },
|
|
@@ -28,12 +28,12 @@ export interface CreateReportGroupCommandOutput extends CreateReportGroupOutput,
|
|
|
28
28
|
* import { CodeBuildClient, CreateReportGroupCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, CreateReportGroupCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateReportGroupInput
|
|
32
32
|
* name: "STRING_VALUE", // required
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
|
-
* exportConfig: {
|
|
34
|
+
* exportConfig: { // ReportExportConfig
|
|
35
35
|
* exportConfigType: "STRING_VALUE",
|
|
36
|
-
* s3Destination: {
|
|
36
|
+
* s3Destination: { // S3ReportExportConfig
|
|
37
37
|
* bucket: "STRING_VALUE",
|
|
38
38
|
* bucketOwner: "STRING_VALUE",
|
|
39
39
|
* path: "STRING_VALUE",
|
|
@@ -42,8 +42,8 @@ export interface CreateReportGroupCommandOutput extends CreateReportGroupOutput,
|
|
|
42
42
|
* encryptionDisabled: true || false,
|
|
43
43
|
* },
|
|
44
44
|
* },
|
|
45
|
-
* tags: [
|
|
46
|
-
* {
|
|
45
|
+
* tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
47
|
* key: "STRING_VALUE",
|
|
48
48
|
* value: "STRING_VALUE",
|
|
49
49
|
* },
|
|
@@ -36,12 +36,12 @@ export interface CreateWebhookCommandOutput extends CreateWebhookOutput, __Metad
|
|
|
36
36
|
* import { CodeBuildClient, CreateWebhookCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
37
37
|
* // const { CodeBuildClient, CreateWebhookCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
38
38
|
* const client = new CodeBuildClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // CreateWebhookInput
|
|
40
40
|
* projectName: "STRING_VALUE", // required
|
|
41
41
|
* branchFilter: "STRING_VALUE",
|
|
42
|
-
* filterGroups: [
|
|
43
|
-
* [
|
|
44
|
-
* {
|
|
42
|
+
* filterGroups: [ // FilterGroups
|
|
43
|
+
* [ // FilterGroup
|
|
44
|
+
* { // WebhookFilter
|
|
45
45
|
* type: "STRING_VALUE", // required
|
|
46
46
|
* pattern: "STRING_VALUE", // required
|
|
47
47
|
* excludeMatchedPattern: true || false,
|
|
@@ -26,7 +26,7 @@ export interface DeleteBuildBatchCommandOutput extends DeleteBuildBatchOutput, _
|
|
|
26
26
|
* import { CodeBuildClient, DeleteBuildBatchCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, DeleteBuildBatchCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteBuildBatchInput
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteBuildBatchCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectOutput, __Metad
|
|
|
27
27
|
* import { CodeBuildClient, DeleteProjectCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, DeleteProjectCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteProjectInput
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteProjectCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeleteReportCommandOutput extends DeleteReportOutput, __Metadat
|
|
|
28
28
|
* import { CodeBuildClient, DeleteReportCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, DeleteReportCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteReportInput
|
|
32
32
|
* arn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteReportCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteReportGroupCommandOutput extends DeleteReportGroupOutput,
|
|
|
26
26
|
* import { CodeBuildClient, DeleteReportGroupCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, DeleteReportGroupCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteReportGroupInput
|
|
30
30
|
* arn: "STRING_VALUE", // required
|
|
31
31
|
* deleteReports: true || false,
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO
|
|
|
26
26
|
* import { CodeBuildClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, DeleteResourcePolicyCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteResourcePolicyInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteSourceCredentialsCommandOutput extends DeleteSourceCreden
|
|
|
26
26
|
* import { CodeBuildClient, DeleteSourceCredentialsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, DeleteSourceCredentialsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSourceCredentialsInput
|
|
30
30
|
* arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSourceCredentialsCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
28
28
|
* import { CodeBuildClient, DeleteWebhookCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, DeleteWebhookCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteWebhookInput
|
|
32
32
|
* projectName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteWebhookCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeCodeCoveragesCommandOutput extends DescribeCodeCoverage
|
|
|
26
26
|
* import { CodeBuildClient, DescribeCodeCoveragesCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, DescribeCodeCoveragesCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeCodeCoveragesInput
|
|
30
30
|
* reportArn: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -28,11 +28,11 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
|
|
|
28
28
|
* import { CodeBuildClient, DescribeTestCasesCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, DescribeTestCasesCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeTestCasesInput
|
|
32
32
|
* reportArn: "STRING_VALUE", // required
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* maxResults: Number("int"),
|
|
35
|
-
* filter: {
|
|
35
|
+
* filter: { // TestCaseFilter
|
|
36
36
|
* status: "STRING_VALUE",
|
|
37
37
|
* keyword: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -26,7 +26,7 @@ export interface GetReportGroupTrendCommandOutput extends GetReportGroupTrendOut
|
|
|
26
26
|
* import { CodeBuildClient, GetReportGroupTrendCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, GetReportGroupTrendCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetReportGroupTrendInput
|
|
30
30
|
* reportGroupArn: "STRING_VALUE", // required
|
|
31
31
|
* numOfReports: Number("int"),
|
|
32
32
|
* trendField: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput,
|
|
|
26
26
|
* import { CodeBuildClient, GetResourcePolicyCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, GetResourcePolicyCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetResourcePolicyInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourcePolicyCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden
|
|
|
27
27
|
* import { CodeBuildClient, ImportSourceCredentialsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, ImportSourceCredentialsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ImportSourceCredentialsInput
|
|
31
31
|
* username: "STRING_VALUE",
|
|
32
32
|
* token: "STRING_VALUE", // required
|
|
33
33
|
* serverType: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface InvalidateProjectCacheCommandOutput extends InvalidateProjectCa
|
|
|
26
26
|
* import { CodeBuildClient, InvalidateProjectCacheCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, InvalidateProjectCacheCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // InvalidateProjectCacheInput
|
|
30
30
|
* projectName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new InvalidateProjectCacheCommand(input);
|
|
@@ -26,8 +26,8 @@ export interface ListBuildBatchesCommandOutput extends ListBuildBatchesOutput, _
|
|
|
26
26
|
* import { CodeBuildClient, ListBuildBatchesCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, ListBuildBatchesCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* filter: {
|
|
29
|
+
* const input = { // ListBuildBatchesInput
|
|
30
|
+
* filter: { // BuildBatchFilter
|
|
31
31
|
* status: "STRING_VALUE",
|
|
32
32
|
* },
|
|
33
33
|
* maxResults: Number("int"),
|
|
@@ -26,9 +26,9 @@ export interface ListBuildBatchesForProjectCommandOutput extends ListBuildBatche
|
|
|
26
26
|
* import { CodeBuildClient, ListBuildBatchesForProjectCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, ListBuildBatchesForProjectCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListBuildBatchesForProjectInput
|
|
30
30
|
* projectName: "STRING_VALUE",
|
|
31
|
-
* filter: {
|
|
31
|
+
* filter: { // BuildBatchFilter
|
|
32
32
|
* status: "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea
|
|
|
26
26
|
* import { CodeBuildClient, ListBuildsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, ListBuildsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListBuildsInput
|
|
30
30
|
* sortOrder: "STRING_VALUE",
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListBuildsForProjectCommandOutput extends ListBuildsForProjectO
|
|
|
27
27
|
* import { CodeBuildClient, ListBuildsForProjectCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, ListBuildsForProjectCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListBuildsForProjectInput
|
|
31
31
|
* projectName: "STRING_VALUE", // required
|
|
32
32
|
* sortOrder: "STRING_VALUE",
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat
|
|
|
27
27
|
* import { CodeBuildClient, ListProjectsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, ListProjectsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListProjectsInput
|
|
31
31
|
* sortBy: "STRING_VALUE",
|
|
32
32
|
* sortOrder: "STRING_VALUE",
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListReportGroupsCommandOutput extends ListReportGroupsOutput, _
|
|
|
28
28
|
* import { CodeBuildClient, ListReportGroupsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, ListReportGroupsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListReportGroupsInput
|
|
32
32
|
* sortOrder: "STRING_VALUE",
|
|
33
33
|
* sortBy: "STRING_VALUE",
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
@@ -28,11 +28,11 @@ export interface ListReportsCommandOutput extends ListReportsOutput, __MetadataB
|
|
|
28
28
|
* import { CodeBuildClient, ListReportsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, ListReportsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListReportsInput
|
|
32
32
|
* sortOrder: "STRING_VALUE",
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* maxResults: Number("int"),
|
|
35
|
-
* filter: {
|
|
35
|
+
* filter: { // ReportFilter
|
|
36
36
|
* status: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* };
|
|
@@ -28,12 +28,12 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
28
28
|
* import { CodeBuildClient, ListReportsForReportGroupCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, ListReportsForReportGroupCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListReportsForReportGroupInput
|
|
32
32
|
* reportGroupArn: "STRING_VALUE", // required
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* sortOrder: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
36
|
-
* filter: {
|
|
36
|
+
* filter: { // ReportFilter
|
|
37
37
|
* status: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
26
26
|
* import { CodeBuildClient, ListSharedProjectsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, ListSharedProjectsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSharedProjectsInput
|
|
30
30
|
* sortBy: "STRING_VALUE",
|
|
31
31
|
* sortOrder: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
27
27
|
* import { CodeBuildClient, ListSharedReportGroupsCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, ListSharedReportGroupsCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListSharedReportGroupsInput
|
|
31
31
|
* sortOrder: "STRING_VALUE",
|
|
32
32
|
* sortBy: "STRING_VALUE",
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
27
27
|
* import { CodeBuildClient, PutResourcePolicyCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
28
28
|
* // const { CodeBuildClient, PutResourcePolicyCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
29
29
|
* const client = new CodeBuildClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // PutResourcePolicyInput
|
|
31
31
|
* policy: "STRING_VALUE", // required
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
|
|
|
26
26
|
* import { CodeBuildClient, RetryBuildBatchCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, RetryBuildBatchCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RetryBuildBatchInput
|
|
30
30
|
* id: "STRING_VALUE",
|
|
31
31
|
* idempotencyToken: "STRING_VALUE",
|
|
32
32
|
* retryType: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
|
|
|
26
26
|
* import { CodeBuildClient, RetryBuildCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, RetryBuildCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RetryBuildInput
|
|
30
30
|
* id: "STRING_VALUE",
|
|
31
31
|
* idempotencyToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,23 +26,23 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
26
26
|
* import { CodeBuildClient, StartBuildBatchCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, StartBuildBatchCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartBuildBatchInput
|
|
30
30
|
* projectName: "STRING_VALUE", // required
|
|
31
|
-
* secondarySourcesOverride: [
|
|
32
|
-
* {
|
|
31
|
+
* secondarySourcesOverride: [ // ProjectSources
|
|
32
|
+
* { // ProjectSource
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* location: "STRING_VALUE",
|
|
35
35
|
* gitCloneDepth: Number("int"),
|
|
36
|
-
* gitSubmodulesConfig: {
|
|
36
|
+
* gitSubmodulesConfig: { // GitSubmodulesConfig
|
|
37
37
|
* fetchSubmodules: true || false, // required
|
|
38
38
|
* },
|
|
39
39
|
* buildspec: "STRING_VALUE",
|
|
40
|
-
* auth: {
|
|
40
|
+
* auth: { // SourceAuth
|
|
41
41
|
* type: "STRING_VALUE", // required
|
|
42
42
|
* resource: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* reportBuildStatus: true || false,
|
|
45
|
-
* buildStatusConfig: {
|
|
45
|
+
* buildStatusConfig: { // BuildStatusConfig
|
|
46
46
|
* context: "STRING_VALUE",
|
|
47
47
|
* targetUrl: "STRING_VALUE",
|
|
48
48
|
* },
|
|
@@ -50,14 +50,14 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
50
50
|
* sourceIdentifier: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
52
|
* ],
|
|
53
|
-
* secondarySourcesVersionOverride: [
|
|
54
|
-
* {
|
|
53
|
+
* secondarySourcesVersionOverride: [ // ProjectSecondarySourceVersions
|
|
54
|
+
* { // ProjectSourceVersion
|
|
55
55
|
* sourceIdentifier: "STRING_VALUE", // required
|
|
56
56
|
* sourceVersion: "STRING_VALUE", // required
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
59
|
* sourceVersion: "STRING_VALUE",
|
|
60
|
-
* artifactsOverride: {
|
|
60
|
+
* artifactsOverride: { // ProjectArtifacts
|
|
61
61
|
* type: "STRING_VALUE", // required
|
|
62
62
|
* location: "STRING_VALUE",
|
|
63
63
|
* path: "STRING_VALUE",
|
|
@@ -69,7 +69,7 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
69
69
|
* artifactIdentifier: "STRING_VALUE",
|
|
70
70
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
71
71
|
* },
|
|
72
|
-
* secondaryArtifactsOverride: [
|
|
72
|
+
* secondaryArtifactsOverride: [ // ProjectArtifactsList
|
|
73
73
|
* {
|
|
74
74
|
* type: "STRING_VALUE", // required
|
|
75
75
|
* location: "STRING_VALUE",
|
|
@@ -83,8 +83,8 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
83
83
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
84
84
|
* },
|
|
85
85
|
* ],
|
|
86
|
-
* environmentVariablesOverride: [
|
|
87
|
-
* {
|
|
86
|
+
* environmentVariablesOverride: [ // EnvironmentVariables
|
|
87
|
+
* { // EnvironmentVariable
|
|
88
88
|
* name: "STRING_VALUE", // required
|
|
89
89
|
* value: "STRING_VALUE", // required
|
|
90
90
|
* type: "STRING_VALUE",
|
|
@@ -107,10 +107,10 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
107
107
|
* imageOverride: "STRING_VALUE",
|
|
108
108
|
* computeTypeOverride: "STRING_VALUE",
|
|
109
109
|
* certificateOverride: "STRING_VALUE",
|
|
110
|
-
* cacheOverride: {
|
|
110
|
+
* cacheOverride: { // ProjectCache
|
|
111
111
|
* type: "STRING_VALUE", // required
|
|
112
112
|
* location: "STRING_VALUE",
|
|
113
|
-
* modes: [
|
|
113
|
+
* modes: [ // ProjectCacheModes
|
|
114
114
|
* "STRING_VALUE",
|
|
115
115
|
* ],
|
|
116
116
|
* },
|
|
@@ -120,30 +120,30 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
120
120
|
* queuedTimeoutInMinutesOverride: Number("int"),
|
|
121
121
|
* encryptionKeyOverride: "STRING_VALUE",
|
|
122
122
|
* idempotencyToken: "STRING_VALUE",
|
|
123
|
-
* logsConfigOverride: {
|
|
124
|
-
* cloudWatchLogs: {
|
|
123
|
+
* logsConfigOverride: { // LogsConfig
|
|
124
|
+
* cloudWatchLogs: { // CloudWatchLogsConfig
|
|
125
125
|
* status: "STRING_VALUE", // required
|
|
126
126
|
* groupName: "STRING_VALUE",
|
|
127
127
|
* streamName: "STRING_VALUE",
|
|
128
128
|
* },
|
|
129
|
-
* s3Logs: {
|
|
129
|
+
* s3Logs: { // S3LogsConfig
|
|
130
130
|
* status: "STRING_VALUE", // required
|
|
131
131
|
* location: "STRING_VALUE",
|
|
132
132
|
* encryptionDisabled: true || false,
|
|
133
133
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
134
134
|
* },
|
|
135
135
|
* },
|
|
136
|
-
* registryCredentialOverride: {
|
|
136
|
+
* registryCredentialOverride: { // RegistryCredential
|
|
137
137
|
* credential: "STRING_VALUE", // required
|
|
138
138
|
* credentialProvider: "STRING_VALUE", // required
|
|
139
139
|
* },
|
|
140
140
|
* imagePullCredentialsTypeOverride: "STRING_VALUE",
|
|
141
|
-
* buildBatchConfigOverride: {
|
|
141
|
+
* buildBatchConfigOverride: { // ProjectBuildBatchConfig
|
|
142
142
|
* serviceRole: "STRING_VALUE",
|
|
143
143
|
* combineArtifacts: true || false,
|
|
144
|
-
* restrictions: {
|
|
144
|
+
* restrictions: { // BatchRestrictions
|
|
145
145
|
* maximumBuildsAllowed: Number("int"),
|
|
146
|
-
* computeTypesAllowed: [
|
|
146
|
+
* computeTypesAllowed: [ // ComputeTypesAllowed
|
|
147
147
|
* "STRING_VALUE",
|
|
148
148
|
* ],
|
|
149
149
|
* },
|
|
@@ -26,23 +26,23 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
26
26
|
* import { CodeBuildClient, StartBuildCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, StartBuildCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartBuildInput
|
|
30
30
|
* projectName: "STRING_VALUE", // required
|
|
31
|
-
* secondarySourcesOverride: [
|
|
32
|
-
* {
|
|
31
|
+
* secondarySourcesOverride: [ // ProjectSources
|
|
32
|
+
* { // ProjectSource
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* location: "STRING_VALUE",
|
|
35
35
|
* gitCloneDepth: Number("int"),
|
|
36
|
-
* gitSubmodulesConfig: {
|
|
36
|
+
* gitSubmodulesConfig: { // GitSubmodulesConfig
|
|
37
37
|
* fetchSubmodules: true || false, // required
|
|
38
38
|
* },
|
|
39
39
|
* buildspec: "STRING_VALUE",
|
|
40
|
-
* auth: {
|
|
40
|
+
* auth: { // SourceAuth
|
|
41
41
|
* type: "STRING_VALUE", // required
|
|
42
42
|
* resource: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* reportBuildStatus: true || false,
|
|
45
|
-
* buildStatusConfig: {
|
|
45
|
+
* buildStatusConfig: { // BuildStatusConfig
|
|
46
46
|
* context: "STRING_VALUE",
|
|
47
47
|
* targetUrl: "STRING_VALUE",
|
|
48
48
|
* },
|
|
@@ -50,14 +50,14 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
50
50
|
* sourceIdentifier: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
52
|
* ],
|
|
53
|
-
* secondarySourcesVersionOverride: [
|
|
54
|
-
* {
|
|
53
|
+
* secondarySourcesVersionOverride: [ // ProjectSecondarySourceVersions
|
|
54
|
+
* { // ProjectSourceVersion
|
|
55
55
|
* sourceIdentifier: "STRING_VALUE", // required
|
|
56
56
|
* sourceVersion: "STRING_VALUE", // required
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
59
|
* sourceVersion: "STRING_VALUE",
|
|
60
|
-
* artifactsOverride: {
|
|
60
|
+
* artifactsOverride: { // ProjectArtifacts
|
|
61
61
|
* type: "STRING_VALUE", // required
|
|
62
62
|
* location: "STRING_VALUE",
|
|
63
63
|
* path: "STRING_VALUE",
|
|
@@ -69,7 +69,7 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
69
69
|
* artifactIdentifier: "STRING_VALUE",
|
|
70
70
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
71
71
|
* },
|
|
72
|
-
* secondaryArtifactsOverride: [
|
|
72
|
+
* secondaryArtifactsOverride: [ // ProjectArtifactsList
|
|
73
73
|
* {
|
|
74
74
|
* type: "STRING_VALUE", // required
|
|
75
75
|
* location: "STRING_VALUE",
|
|
@@ -83,8 +83,8 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
83
83
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
84
84
|
* },
|
|
85
85
|
* ],
|
|
86
|
-
* environmentVariablesOverride: [
|
|
87
|
-
* {
|
|
86
|
+
* environmentVariablesOverride: [ // EnvironmentVariables
|
|
87
|
+
* { // EnvironmentVariable
|
|
88
88
|
* name: "STRING_VALUE", // required
|
|
89
89
|
* value: "STRING_VALUE", // required
|
|
90
90
|
* type: "STRING_VALUE",
|
|
@@ -111,10 +111,10 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
111
111
|
* imageOverride: "STRING_VALUE",
|
|
112
112
|
* computeTypeOverride: "STRING_VALUE",
|
|
113
113
|
* certificateOverride: "STRING_VALUE",
|
|
114
|
-
* cacheOverride: {
|
|
114
|
+
* cacheOverride: { // ProjectCache
|
|
115
115
|
* type: "STRING_VALUE", // required
|
|
116
116
|
* location: "STRING_VALUE",
|
|
117
|
-
* modes: [
|
|
117
|
+
* modes: [ // ProjectCacheModes
|
|
118
118
|
* "STRING_VALUE",
|
|
119
119
|
* ],
|
|
120
120
|
* },
|
|
@@ -124,20 +124,20 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
124
124
|
* queuedTimeoutInMinutesOverride: Number("int"),
|
|
125
125
|
* encryptionKeyOverride: "STRING_VALUE",
|
|
126
126
|
* idempotencyToken: "STRING_VALUE",
|
|
127
|
-
* logsConfigOverride: {
|
|
128
|
-
* cloudWatchLogs: {
|
|
127
|
+
* logsConfigOverride: { // LogsConfig
|
|
128
|
+
* cloudWatchLogs: { // CloudWatchLogsConfig
|
|
129
129
|
* status: "STRING_VALUE", // required
|
|
130
130
|
* groupName: "STRING_VALUE",
|
|
131
131
|
* streamName: "STRING_VALUE",
|
|
132
132
|
* },
|
|
133
|
-
* s3Logs: {
|
|
133
|
+
* s3Logs: { // S3LogsConfig
|
|
134
134
|
* status: "STRING_VALUE", // required
|
|
135
135
|
* location: "STRING_VALUE",
|
|
136
136
|
* encryptionDisabled: true || false,
|
|
137
137
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
138
138
|
* },
|
|
139
139
|
* },
|
|
140
|
-
* registryCredentialOverride: {
|
|
140
|
+
* registryCredentialOverride: { // RegistryCredential
|
|
141
141
|
* credential: "STRING_VALUE", // required
|
|
142
142
|
* credentialProvider: "STRING_VALUE", // required
|
|
143
143
|
* },
|
|
@@ -26,7 +26,7 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
|
|
|
26
26
|
* import { CodeBuildClient, StopBuildBatchCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, StopBuildBatchCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopBuildBatchInput
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopBuildBatchCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
|
|
|
26
26
|
* import { CodeBuildClient, StopBuildCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, StopBuildCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopBuildInput
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopBuildCommand(input);
|
|
@@ -26,30 +26,30 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
26
26
|
* import { CodeBuildClient, UpdateProjectCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
27
27
|
* // const { CodeBuildClient, UpdateProjectCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
28
28
|
* const client = new CodeBuildClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateProjectInput
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* source: {
|
|
32
|
+
* source: { // ProjectSource
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* location: "STRING_VALUE",
|
|
35
35
|
* gitCloneDepth: Number("int"),
|
|
36
|
-
* gitSubmodulesConfig: {
|
|
36
|
+
* gitSubmodulesConfig: { // GitSubmodulesConfig
|
|
37
37
|
* fetchSubmodules: true || false, // required
|
|
38
38
|
* },
|
|
39
39
|
* buildspec: "STRING_VALUE",
|
|
40
|
-
* auth: {
|
|
40
|
+
* auth: { // SourceAuth
|
|
41
41
|
* type: "STRING_VALUE", // required
|
|
42
42
|
* resource: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* reportBuildStatus: true || false,
|
|
45
|
-
* buildStatusConfig: {
|
|
45
|
+
* buildStatusConfig: { // BuildStatusConfig
|
|
46
46
|
* context: "STRING_VALUE",
|
|
47
47
|
* targetUrl: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* insecureSsl: true || false,
|
|
50
50
|
* sourceIdentifier: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
|
-
* secondarySources: [
|
|
52
|
+
* secondarySources: [ // ProjectSources
|
|
53
53
|
* {
|
|
54
54
|
* type: "STRING_VALUE", // required
|
|
55
55
|
* location: "STRING_VALUE",
|
|
@@ -72,13 +72,13 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
72
72
|
* },
|
|
73
73
|
* ],
|
|
74
74
|
* sourceVersion: "STRING_VALUE",
|
|
75
|
-
* secondarySourceVersions: [
|
|
76
|
-
* {
|
|
75
|
+
* secondarySourceVersions: [ // ProjectSecondarySourceVersions
|
|
76
|
+
* { // ProjectSourceVersion
|
|
77
77
|
* sourceIdentifier: "STRING_VALUE", // required
|
|
78
78
|
* sourceVersion: "STRING_VALUE", // required
|
|
79
79
|
* },
|
|
80
80
|
* ],
|
|
81
|
-
* artifacts: {
|
|
81
|
+
* artifacts: { // ProjectArtifacts
|
|
82
82
|
* type: "STRING_VALUE", // required
|
|
83
83
|
* location: "STRING_VALUE",
|
|
84
84
|
* path: "STRING_VALUE",
|
|
@@ -90,7 +90,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
90
90
|
* artifactIdentifier: "STRING_VALUE",
|
|
91
91
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
92
92
|
* },
|
|
93
|
-
* secondaryArtifacts: [
|
|
93
|
+
* secondaryArtifacts: [ // ProjectArtifactsList
|
|
94
94
|
* {
|
|
95
95
|
* type: "STRING_VALUE", // required
|
|
96
96
|
* location: "STRING_VALUE",
|
|
@@ -104,19 +104,19 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
104
104
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
105
105
|
* },
|
|
106
106
|
* ],
|
|
107
|
-
* cache: {
|
|
107
|
+
* cache: { // ProjectCache
|
|
108
108
|
* type: "STRING_VALUE", // required
|
|
109
109
|
* location: "STRING_VALUE",
|
|
110
|
-
* modes: [
|
|
110
|
+
* modes: [ // ProjectCacheModes
|
|
111
111
|
* "STRING_VALUE",
|
|
112
112
|
* ],
|
|
113
113
|
* },
|
|
114
|
-
* environment: {
|
|
114
|
+
* environment: { // ProjectEnvironment
|
|
115
115
|
* type: "STRING_VALUE", // required
|
|
116
116
|
* image: "STRING_VALUE", // required
|
|
117
117
|
* computeType: "STRING_VALUE", // required
|
|
118
|
-
* environmentVariables: [
|
|
119
|
-
* {
|
|
118
|
+
* environmentVariables: [ // EnvironmentVariables
|
|
119
|
+
* { // EnvironmentVariable
|
|
120
120
|
* name: "STRING_VALUE", // required
|
|
121
121
|
* value: "STRING_VALUE", // required
|
|
122
122
|
* type: "STRING_VALUE",
|
|
@@ -124,7 +124,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
124
124
|
* ],
|
|
125
125
|
* privilegedMode: true || false,
|
|
126
126
|
* certificate: "STRING_VALUE",
|
|
127
|
-
* registryCredential: {
|
|
127
|
+
* registryCredential: { // RegistryCredential
|
|
128
128
|
* credential: "STRING_VALUE", // required
|
|
129
129
|
* credentialProvider: "STRING_VALUE", // required
|
|
130
130
|
* },
|
|
@@ -134,37 +134,37 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
134
134
|
* timeoutInMinutes: Number("int"),
|
|
135
135
|
* queuedTimeoutInMinutes: Number("int"),
|
|
136
136
|
* encryptionKey: "STRING_VALUE",
|
|
137
|
-
* tags: [
|
|
138
|
-
* {
|
|
137
|
+
* tags: [ // TagList
|
|
138
|
+
* { // Tag
|
|
139
139
|
* key: "STRING_VALUE",
|
|
140
140
|
* value: "STRING_VALUE",
|
|
141
141
|
* },
|
|
142
142
|
* ],
|
|
143
|
-
* vpcConfig: {
|
|
143
|
+
* vpcConfig: { // VpcConfig
|
|
144
144
|
* vpcId: "STRING_VALUE",
|
|
145
|
-
* subnets: [
|
|
145
|
+
* subnets: [ // Subnets
|
|
146
146
|
* "STRING_VALUE",
|
|
147
147
|
* ],
|
|
148
|
-
* securityGroupIds: [
|
|
148
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
149
149
|
* "STRING_VALUE",
|
|
150
150
|
* ],
|
|
151
151
|
* },
|
|
152
152
|
* badgeEnabled: true || false,
|
|
153
|
-
* logsConfig: {
|
|
154
|
-
* cloudWatchLogs: {
|
|
153
|
+
* logsConfig: { // LogsConfig
|
|
154
|
+
* cloudWatchLogs: { // CloudWatchLogsConfig
|
|
155
155
|
* status: "STRING_VALUE", // required
|
|
156
156
|
* groupName: "STRING_VALUE",
|
|
157
157
|
* streamName: "STRING_VALUE",
|
|
158
158
|
* },
|
|
159
|
-
* s3Logs: {
|
|
159
|
+
* s3Logs: { // S3LogsConfig
|
|
160
160
|
* status: "STRING_VALUE", // required
|
|
161
161
|
* location: "STRING_VALUE",
|
|
162
162
|
* encryptionDisabled: true || false,
|
|
163
163
|
* bucketOwnerAccess: "STRING_VALUE",
|
|
164
164
|
* },
|
|
165
165
|
* },
|
|
166
|
-
* fileSystemLocations: [
|
|
167
|
-
* {
|
|
166
|
+
* fileSystemLocations: [ // ProjectFileSystemLocations
|
|
167
|
+
* { // ProjectFileSystemLocation
|
|
168
168
|
* type: "STRING_VALUE",
|
|
169
169
|
* location: "STRING_VALUE",
|
|
170
170
|
* mountPoint: "STRING_VALUE",
|
|
@@ -172,12 +172,12 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
172
172
|
* mountOptions: "STRING_VALUE",
|
|
173
173
|
* },
|
|
174
174
|
* ],
|
|
175
|
-
* buildBatchConfig: {
|
|
175
|
+
* buildBatchConfig: { // ProjectBuildBatchConfig
|
|
176
176
|
* serviceRole: "STRING_VALUE",
|
|
177
177
|
* combineArtifacts: true || false,
|
|
178
|
-
* restrictions: {
|
|
178
|
+
* restrictions: { // BatchRestrictions
|
|
179
179
|
* maximumBuildsAllowed: Number("int"),
|
|
180
|
-
* computeTypesAllowed: [
|
|
180
|
+
* computeTypesAllowed: [ // ComputeTypesAllowed
|
|
181
181
|
* "STRING_VALUE",
|
|
182
182
|
* ],
|
|
183
183
|
* },
|
|
@@ -63,7 +63,7 @@ export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisib
|
|
|
63
63
|
* import { CodeBuildClient, UpdateProjectVisibilityCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
64
64
|
* // const { CodeBuildClient, UpdateProjectVisibilityCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
65
65
|
* const client = new CodeBuildClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // UpdateProjectVisibilityInput
|
|
67
67
|
* projectArn: "STRING_VALUE", // required
|
|
68
68
|
* projectVisibility: "STRING_VALUE", // required
|
|
69
69
|
* resourceAccessRole: "STRING_VALUE",
|
|
@@ -28,11 +28,11 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput,
|
|
|
28
28
|
* import { CodeBuildClient, UpdateReportGroupCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
29
29
|
* // const { CodeBuildClient, UpdateReportGroupCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
30
30
|
* const client = new CodeBuildClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateReportGroupInput
|
|
32
32
|
* arn: "STRING_VALUE", // required
|
|
33
|
-
* exportConfig: {
|
|
33
|
+
* exportConfig: { // ReportExportConfig
|
|
34
34
|
* exportConfigType: "STRING_VALUE",
|
|
35
|
-
* s3Destination: {
|
|
35
|
+
* s3Destination: { // S3ReportExportConfig
|
|
36
36
|
* bucket: "STRING_VALUE",
|
|
37
37
|
* bucketOwner: "STRING_VALUE",
|
|
38
38
|
* path: "STRING_VALUE",
|
|
@@ -41,8 +41,8 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput,
|
|
|
41
41
|
* encryptionDisabled: true || false,
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
44
|
-
* tags: [
|
|
45
|
-
* {
|
|
44
|
+
* tags: [ // TagList
|
|
45
|
+
* { // Tag
|
|
46
46
|
* key: "STRING_VALUE",
|
|
47
47
|
* value: "STRING_VALUE",
|
|
48
48
|
* },
|
|
@@ -30,13 +30,13 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __Metad
|
|
|
30
30
|
* import { CodeBuildClient, UpdateWebhookCommand } from "@aws-sdk/client-codebuild"; // ES Modules import
|
|
31
31
|
* // const { CodeBuildClient, UpdateWebhookCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import
|
|
32
32
|
* const client = new CodeBuildClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // UpdateWebhookInput
|
|
34
34
|
* projectName: "STRING_VALUE", // required
|
|
35
35
|
* branchFilter: "STRING_VALUE",
|
|
36
36
|
* rotateSecret: true || false,
|
|
37
|
-
* filterGroups: [
|
|
38
|
-
* [
|
|
39
|
-
* {
|
|
37
|
+
* filterGroups: [ // FilterGroups
|
|
38
|
+
* [ // FilterGroup
|
|
39
|
+
* { // WebhookFilter
|
|
40
40
|
* type: "STRING_VALUE", // required
|
|
41
41
|
* pattern: "STRING_VALUE", // required
|
|
42
42
|
* excludeMatchedPattern: true || false,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codebuild",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|