@aws-sdk/client-codebuild 3.296.0 → 3.297.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.
Files changed (63) hide show
  1. package/dist-types/CodeBuild.d.ts +46 -0
  2. package/dist-types/CodeBuildClient.d.ts +24 -4
  3. package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +16 -0
  5. package/dist-types/commands/BatchGetBuildsCommand.d.ts +16 -0
  6. package/dist-types/commands/BatchGetProjectsCommand.d.ts +16 -0
  7. package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +16 -0
  8. package/dist-types/commands/BatchGetReportsCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateReportGroupCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateWebhookCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteBuildBatchCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteProjectCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteReportCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteReportGroupCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeTestCasesCommand.d.ts +16 -0
  21. package/dist-types/commands/GetReportGroupTrendCommand.d.ts +16 -0
  22. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  23. package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +16 -0
  24. package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +16 -0
  25. package/dist-types/commands/ListBuildBatchesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +16 -0
  27. package/dist-types/commands/ListBuildsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListBuildsForProjectCommand.d.ts +16 -0
  29. package/dist-types/commands/ListCuratedEnvironmentImagesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListReportGroupsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListReportsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +16 -0
  34. package/dist-types/commands/ListSharedProjectsCommand.d.ts +16 -0
  35. package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListSourceCredentialsCommand.d.ts +16 -0
  37. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  38. package/dist-types/commands/RetryBuildBatchCommand.d.ts +16 -0
  39. package/dist-types/commands/RetryBuildCommand.d.ts +16 -0
  40. package/dist-types/commands/StartBuildBatchCommand.d.ts +16 -0
  41. package/dist-types/commands/StartBuildCommand.d.ts +16 -0
  42. package/dist-types/commands/StopBuildBatchCommand.d.ts +16 -0
  43. package/dist-types/commands/StopBuildCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateProjectCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateReportGroupCommand.d.ts +16 -0
  47. package/dist-types/commands/UpdateWebhookCommand.d.ts +16 -0
  48. package/dist-types/models/CodeBuildServiceException.d.ts +2 -0
  49. package/dist-types/models/models_0.d.ts +444 -2
  50. package/dist-types/pagination/DescribeCodeCoveragesPaginator.d.ts +3 -0
  51. package/dist-types/pagination/DescribeTestCasesPaginator.d.ts +3 -0
  52. package/dist-types/pagination/Interfaces.d.ts +3 -0
  53. package/dist-types/pagination/ListBuildBatchesForProjectPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListBuildBatchesPaginator.d.ts +3 -0
  55. package/dist-types/pagination/ListBuildsForProjectPaginator.d.ts +3 -0
  56. package/dist-types/pagination/ListBuildsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
  58. package/dist-types/pagination/ListReportGroupsPaginator.d.ts +3 -0
  59. package/dist-types/pagination/ListReportsForReportGroupPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListReportsPaginator.d.ts +3 -0
  61. package/dist-types/pagination/ListSharedProjectsPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListSharedReportGroupsPaginator.d.ts +3 -0
  63. package/package.json +3 -3
@@ -46,6 +46,7 @@ import { UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutp
46
46
  import { UpdateReportGroupCommandInput, UpdateReportGroupCommandOutput } from "./commands/UpdateReportGroupCommand";
47
47
  import { UpdateWebhookCommandInput, UpdateWebhookCommandOutput } from "./commands/UpdateWebhookCommand";
48
48
  /**
49
+ * @public
49
50
  * <fullname>CodeBuild</fullname>
50
51
  * <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code,
51
52
  * runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the
@@ -60,30 +61,35 @@ import { UpdateWebhookCommandInput, UpdateWebhookCommandOutput } from "./command
60
61
  */
61
62
  export declare class CodeBuild extends CodeBuildClient {
62
63
  /**
64
+ * @public
63
65
  * <p>Deletes one or more builds.</p>
64
66
  */
65
67
  batchDeleteBuilds(args: BatchDeleteBuildsCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteBuildsCommandOutput>;
66
68
  batchDeleteBuilds(args: BatchDeleteBuildsCommandInput, cb: (err: any, data?: BatchDeleteBuildsCommandOutput) => void): void;
67
69
  batchDeleteBuilds(args: BatchDeleteBuildsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteBuildsCommandOutput) => void): void;
68
70
  /**
71
+ * @public
69
72
  * <p>Retrieves information about one or more batch builds.</p>
70
73
  */
71
74
  batchGetBuildBatches(args: BatchGetBuildBatchesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetBuildBatchesCommandOutput>;
72
75
  batchGetBuildBatches(args: BatchGetBuildBatchesCommandInput, cb: (err: any, data?: BatchGetBuildBatchesCommandOutput) => void): void;
73
76
  batchGetBuildBatches(args: BatchGetBuildBatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetBuildBatchesCommandOutput) => void): void;
74
77
  /**
78
+ * @public
75
79
  * <p>Gets information about one or more builds.</p>
76
80
  */
77
81
  batchGetBuilds(args: BatchGetBuildsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetBuildsCommandOutput>;
78
82
  batchGetBuilds(args: BatchGetBuildsCommandInput, cb: (err: any, data?: BatchGetBuildsCommandOutput) => void): void;
79
83
  batchGetBuilds(args: BatchGetBuildsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetBuildsCommandOutput) => void): void;
80
84
  /**
85
+ * @public
81
86
  * <p>Gets information about one or more build projects.</p>
82
87
  */
83
88
  batchGetProjects(args: BatchGetProjectsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetProjectsCommandOutput>;
84
89
  batchGetProjects(args: BatchGetProjectsCommandInput, cb: (err: any, data?: BatchGetProjectsCommandOutput) => void): void;
85
90
  batchGetProjects(args: BatchGetProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetProjectsCommandOutput) => void): void;
86
91
  /**
92
+ * @public
87
93
  * <p>
88
94
  * Returns an array of report groups.
89
95
  * </p>
@@ -92,6 +98,7 @@ export declare class CodeBuild extends CodeBuildClient {
92
98
  batchGetReportGroups(args: BatchGetReportGroupsCommandInput, cb: (err: any, data?: BatchGetReportGroupsCommandOutput) => void): void;
93
99
  batchGetReportGroups(args: BatchGetReportGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetReportGroupsCommandOutput) => void): void;
94
100
  /**
101
+ * @public
95
102
  * <p>
96
103
  * Returns an array of reports.
97
104
  * </p>
@@ -100,12 +107,14 @@ export declare class CodeBuild extends CodeBuildClient {
100
107
  batchGetReports(args: BatchGetReportsCommandInput, cb: (err: any, data?: BatchGetReportsCommandOutput) => void): void;
101
108
  batchGetReports(args: BatchGetReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetReportsCommandOutput) => void): void;
102
109
  /**
110
+ * @public
103
111
  * <p>Creates a build project.</p>
104
112
  */
105
113
  createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
106
114
  createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
107
115
  createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
108
116
  /**
117
+ * @public
109
118
  * <p>
110
119
  * Creates a report group. A report group contains a collection of reports.
111
120
  * </p>
@@ -114,6 +123,7 @@ export declare class CodeBuild extends CodeBuildClient {
114
123
  createReportGroup(args: CreateReportGroupCommandInput, cb: (err: any, data?: CreateReportGroupCommandOutput) => void): void;
115
124
  createReportGroup(args: CreateReportGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReportGroupCommandOutput) => void): void;
116
125
  /**
126
+ * @public
117
127
  * <p>For an existing CodeBuild build project that has its source code stored in a GitHub or
118
128
  * Bitbucket repository, enables CodeBuild to start rebuilding the source code every time a
119
129
  * code change is pushed to the repository.</p>
@@ -130,12 +140,14 @@ export declare class CodeBuild extends CodeBuildClient {
130
140
  createWebhook(args: CreateWebhookCommandInput, cb: (err: any, data?: CreateWebhookCommandOutput) => void): void;
131
141
  createWebhook(args: CreateWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWebhookCommandOutput) => void): void;
132
142
  /**
143
+ * @public
133
144
  * <p>Deletes a batch build.</p>
134
145
  */
135
146
  deleteBuildBatch(args: DeleteBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBuildBatchCommandOutput>;
136
147
  deleteBuildBatch(args: DeleteBuildBatchCommandInput, cb: (err: any, data?: DeleteBuildBatchCommandOutput) => void): void;
137
148
  deleteBuildBatch(args: DeleteBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBuildBatchCommandOutput) => void): void;
138
149
  /**
150
+ * @public
139
151
  * <p> Deletes a build project. When you delete a project, its builds are not deleted.
140
152
  * </p>
141
153
  */
@@ -143,6 +155,7 @@ export declare class CodeBuild extends CodeBuildClient {
143
155
  deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
144
156
  deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
145
157
  /**
158
+ * @public
146
159
  * <p>
147
160
  * Deletes a report.
148
161
  * </p>
@@ -151,24 +164,28 @@ export declare class CodeBuild extends CodeBuildClient {
151
164
  deleteReport(args: DeleteReportCommandInput, cb: (err: any, data?: DeleteReportCommandOutput) => void): void;
152
165
  deleteReport(args: DeleteReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReportCommandOutput) => void): void;
153
166
  /**
167
+ * @public
154
168
  * <p>Deletes a report group. Before you delete a report group, you must delete its reports. </p>
155
169
  */
156
170
  deleteReportGroup(args: DeleteReportGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReportGroupCommandOutput>;
157
171
  deleteReportGroup(args: DeleteReportGroupCommandInput, cb: (err: any, data?: DeleteReportGroupCommandOutput) => void): void;
158
172
  deleteReportGroup(args: DeleteReportGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReportGroupCommandOutput) => void): void;
159
173
  /**
174
+ * @public
160
175
  * <p> Deletes a resource policy that is identified by its resource ARN. </p>
161
176
  */
162
177
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
163
178
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
164
179
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
165
180
  /**
181
+ * @public
166
182
  * <p> Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials. </p>
167
183
  */
168
184
  deleteSourceCredentials(args: DeleteSourceCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSourceCredentialsCommandOutput>;
169
185
  deleteSourceCredentials(args: DeleteSourceCredentialsCommandInput, cb: (err: any, data?: DeleteSourceCredentialsCommandOutput) => void): void;
170
186
  deleteSourceCredentials(args: DeleteSourceCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSourceCredentialsCommandOutput) => void): void;
171
187
  /**
188
+ * @public
172
189
  * <p>For an existing CodeBuild build project that has its source code stored in a GitHub or
173
190
  * Bitbucket repository, stops CodeBuild from rebuilding the source code every time a code
174
191
  * change is pushed to the repository.</p>
@@ -177,12 +194,14 @@ export declare class CodeBuild extends CodeBuildClient {
177
194
  deleteWebhook(args: DeleteWebhookCommandInput, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
178
195
  deleteWebhook(args: DeleteWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
179
196
  /**
197
+ * @public
180
198
  * <p>Retrieves one or more code coverage reports.</p>
181
199
  */
182
200
  describeCodeCoverages(args: DescribeCodeCoveragesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCodeCoveragesCommandOutput>;
183
201
  describeCodeCoverages(args: DescribeCodeCoveragesCommandInput, cb: (err: any, data?: DescribeCodeCoveragesCommandOutput) => void): void;
184
202
  describeCodeCoverages(args: DescribeCodeCoveragesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCodeCoveragesCommandOutput) => void): void;
185
203
  /**
204
+ * @public
186
205
  * <p>
187
206
  * Returns a list of details about test cases for a report.
188
207
  * </p>
@@ -191,18 +210,21 @@ export declare class CodeBuild extends CodeBuildClient {
191
210
  describeTestCases(args: DescribeTestCasesCommandInput, cb: (err: any, data?: DescribeTestCasesCommandOutput) => void): void;
192
211
  describeTestCases(args: DescribeTestCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTestCasesCommandOutput) => void): void;
193
212
  /**
213
+ * @public
194
214
  * <p>Analyzes and accumulates test report values for the specified test reports.</p>
195
215
  */
196
216
  getReportGroupTrend(args: GetReportGroupTrendCommandInput, options?: __HttpHandlerOptions): Promise<GetReportGroupTrendCommandOutput>;
197
217
  getReportGroupTrend(args: GetReportGroupTrendCommandInput, cb: (err: any, data?: GetReportGroupTrendCommandOutput) => void): void;
198
218
  getReportGroupTrend(args: GetReportGroupTrendCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReportGroupTrendCommandOutput) => void): void;
199
219
  /**
220
+ * @public
200
221
  * <p> Gets a resource policy that is identified by its resource ARN. </p>
201
222
  */
202
223
  getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
203
224
  getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
204
225
  getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
205
226
  /**
227
+ * @public
206
228
  * <p> Imports the source repository credentials for an CodeBuild project that has its
207
229
  * source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository. </p>
208
230
  */
@@ -210,30 +232,35 @@ export declare class CodeBuild extends CodeBuildClient {
210
232
  importSourceCredentials(args: ImportSourceCredentialsCommandInput, cb: (err: any, data?: ImportSourceCredentialsCommandOutput) => void): void;
211
233
  importSourceCredentials(args: ImportSourceCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportSourceCredentialsCommandOutput) => void): void;
212
234
  /**
235
+ * @public
213
236
  * <p>Resets the cache for a project.</p>
214
237
  */
215
238
  invalidateProjectCache(args: InvalidateProjectCacheCommandInput, options?: __HttpHandlerOptions): Promise<InvalidateProjectCacheCommandOutput>;
216
239
  invalidateProjectCache(args: InvalidateProjectCacheCommandInput, cb: (err: any, data?: InvalidateProjectCacheCommandOutput) => void): void;
217
240
  invalidateProjectCache(args: InvalidateProjectCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InvalidateProjectCacheCommandOutput) => void): void;
218
241
  /**
242
+ * @public
219
243
  * <p>Retrieves the identifiers of your build batches in the current region.</p>
220
244
  */
221
245
  listBuildBatches(args: ListBuildBatchesCommandInput, options?: __HttpHandlerOptions): Promise<ListBuildBatchesCommandOutput>;
222
246
  listBuildBatches(args: ListBuildBatchesCommandInput, cb: (err: any, data?: ListBuildBatchesCommandOutput) => void): void;
223
247
  listBuildBatches(args: ListBuildBatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBuildBatchesCommandOutput) => void): void;
224
248
  /**
249
+ * @public
225
250
  * <p>Retrieves the identifiers of the build batches for a specific project.</p>
226
251
  */
227
252
  listBuildBatchesForProject(args: ListBuildBatchesForProjectCommandInput, options?: __HttpHandlerOptions): Promise<ListBuildBatchesForProjectCommandOutput>;
228
253
  listBuildBatchesForProject(args: ListBuildBatchesForProjectCommandInput, cb: (err: any, data?: ListBuildBatchesForProjectCommandOutput) => void): void;
229
254
  listBuildBatchesForProject(args: ListBuildBatchesForProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBuildBatchesForProjectCommandOutput) => void): void;
230
255
  /**
256
+ * @public
231
257
  * <p>Gets a list of build IDs, with each build ID representing a single build.</p>
232
258
  */
233
259
  listBuilds(args: ListBuildsCommandInput, options?: __HttpHandlerOptions): Promise<ListBuildsCommandOutput>;
234
260
  listBuilds(args: ListBuildsCommandInput, cb: (err: any, data?: ListBuildsCommandOutput) => void): void;
235
261
  listBuilds(args: ListBuildsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBuildsCommandOutput) => void): void;
236
262
  /**
263
+ * @public
237
264
  * <p>Gets a list of build identifiers for the specified build project, with each build
238
265
  * identifier representing a single build.</p>
239
266
  */
@@ -241,12 +268,14 @@ export declare class CodeBuild extends CodeBuildClient {
241
268
  listBuildsForProject(args: ListBuildsForProjectCommandInput, cb: (err: any, data?: ListBuildsForProjectCommandOutput) => void): void;
242
269
  listBuildsForProject(args: ListBuildsForProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBuildsForProjectCommandOutput) => void): void;
243
270
  /**
271
+ * @public
244
272
  * <p>Gets information about Docker images that are managed by CodeBuild.</p>
245
273
  */
246
274
  listCuratedEnvironmentImages(args: ListCuratedEnvironmentImagesCommandInput, options?: __HttpHandlerOptions): Promise<ListCuratedEnvironmentImagesCommandOutput>;
247
275
  listCuratedEnvironmentImages(args: ListCuratedEnvironmentImagesCommandInput, cb: (err: any, data?: ListCuratedEnvironmentImagesCommandOutput) => void): void;
248
276
  listCuratedEnvironmentImages(args: ListCuratedEnvironmentImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCuratedEnvironmentImagesCommandOutput) => void): void;
249
277
  /**
278
+ * @public
250
279
  * <p>Gets a list of build project names, with each build project name representing a single
251
280
  * build project.</p>
252
281
  */
@@ -254,6 +283,7 @@ export declare class CodeBuild extends CodeBuildClient {
254
283
  listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
255
284
  listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
256
285
  /**
286
+ * @public
257
287
  * <p>
258
288
  * Gets a list ARNs for the report groups in the current Amazon Web Services account.
259
289
  * </p>
@@ -262,6 +292,7 @@ export declare class CodeBuild extends CodeBuildClient {
262
292
  listReportGroups(args: ListReportGroupsCommandInput, cb: (err: any, data?: ListReportGroupsCommandOutput) => void): void;
263
293
  listReportGroups(args: ListReportGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportGroupsCommandOutput) => void): void;
264
294
  /**
295
+ * @public
265
296
  * <p>
266
297
  * Returns a list of ARNs for the reports in the current Amazon Web Services account.
267
298
  * </p>
@@ -270,6 +301,7 @@ export declare class CodeBuild extends CodeBuildClient {
270
301
  listReports(args: ListReportsCommandInput, cb: (err: any, data?: ListReportsCommandOutput) => void): void;
271
302
  listReports(args: ListReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportsCommandOutput) => void): void;
272
303
  /**
304
+ * @public
273
305
  * <p>
274
306
  * Returns a list of ARNs for the reports that belong to a <code>ReportGroup</code>.
275
307
  * </p>
@@ -278,12 +310,14 @@ export declare class CodeBuild extends CodeBuildClient {
278
310
  listReportsForReportGroup(args: ListReportsForReportGroupCommandInput, cb: (err: any, data?: ListReportsForReportGroupCommandOutput) => void): void;
279
311
  listReportsForReportGroup(args: ListReportsForReportGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportsForReportGroupCommandOutput) => void): void;
280
312
  /**
313
+ * @public
281
314
  * <p> Gets a list of projects that are shared with other Amazon Web Services accounts or users. </p>
282
315
  */
283
316
  listSharedProjects(args: ListSharedProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListSharedProjectsCommandOutput>;
284
317
  listSharedProjects(args: ListSharedProjectsCommandInput, cb: (err: any, data?: ListSharedProjectsCommandOutput) => void): void;
285
318
  listSharedProjects(args: ListSharedProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSharedProjectsCommandOutput) => void): void;
286
319
  /**
320
+ * @public
287
321
  * <p> Gets a list of report groups that are shared with other Amazon Web Services accounts or users.
288
322
  * </p>
289
323
  */
@@ -291,12 +325,14 @@ export declare class CodeBuild extends CodeBuildClient {
291
325
  listSharedReportGroups(args: ListSharedReportGroupsCommandInput, cb: (err: any, data?: ListSharedReportGroupsCommandOutput) => void): void;
292
326
  listSharedReportGroups(args: ListSharedReportGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSharedReportGroupsCommandOutput) => void): void;
293
327
  /**
328
+ * @public
294
329
  * <p> Returns a list of <code>SourceCredentialsInfo</code> objects. </p>
295
330
  */
296
331
  listSourceCredentials(args: ListSourceCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<ListSourceCredentialsCommandOutput>;
297
332
  listSourceCredentials(args: ListSourceCredentialsCommandInput, cb: (err: any, data?: ListSourceCredentialsCommandOutput) => void): void;
298
333
  listSourceCredentials(args: ListSourceCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSourceCredentialsCommandOutput) => void): void;
299
334
  /**
335
+ * @public
300
336
  * <p> Stores a resource policy for the ARN of a <code>Project</code> or
301
337
  * <code>ReportGroup</code> object. </p>
302
338
  */
@@ -304,48 +340,56 @@ export declare class CodeBuild extends CodeBuildClient {
304
340
  putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
305
341
  putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
306
342
  /**
343
+ * @public
307
344
  * <p>Restarts a build.</p>
308
345
  */
309
346
  retryBuild(args: RetryBuildCommandInput, options?: __HttpHandlerOptions): Promise<RetryBuildCommandOutput>;
310
347
  retryBuild(args: RetryBuildCommandInput, cb: (err: any, data?: RetryBuildCommandOutput) => void): void;
311
348
  retryBuild(args: RetryBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryBuildCommandOutput) => void): void;
312
349
  /**
350
+ * @public
313
351
  * <p>Restarts a failed batch build. Only batch builds that have failed can be retried.</p>
314
352
  */
315
353
  retryBuildBatch(args: RetryBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<RetryBuildBatchCommandOutput>;
316
354
  retryBuildBatch(args: RetryBuildBatchCommandInput, cb: (err: any, data?: RetryBuildBatchCommandOutput) => void): void;
317
355
  retryBuildBatch(args: RetryBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryBuildBatchCommandOutput) => void): void;
318
356
  /**
357
+ * @public
319
358
  * <p>Starts running a build.</p>
320
359
  */
321
360
  startBuild(args: StartBuildCommandInput, options?: __HttpHandlerOptions): Promise<StartBuildCommandOutput>;
322
361
  startBuild(args: StartBuildCommandInput, cb: (err: any, data?: StartBuildCommandOutput) => void): void;
323
362
  startBuild(args: StartBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBuildCommandOutput) => void): void;
324
363
  /**
364
+ * @public
325
365
  * <p>Starts a batch build for a project.</p>
326
366
  */
327
367
  startBuildBatch(args: StartBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<StartBuildBatchCommandOutput>;
328
368
  startBuildBatch(args: StartBuildBatchCommandInput, cb: (err: any, data?: StartBuildBatchCommandOutput) => void): void;
329
369
  startBuildBatch(args: StartBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBuildBatchCommandOutput) => void): void;
330
370
  /**
371
+ * @public
331
372
  * <p>Attempts to stop running a build.</p>
332
373
  */
333
374
  stopBuild(args: StopBuildCommandInput, options?: __HttpHandlerOptions): Promise<StopBuildCommandOutput>;
334
375
  stopBuild(args: StopBuildCommandInput, cb: (err: any, data?: StopBuildCommandOutput) => void): void;
335
376
  stopBuild(args: StopBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBuildCommandOutput) => void): void;
336
377
  /**
378
+ * @public
337
379
  * <p>Stops a running batch build.</p>
338
380
  */
339
381
  stopBuildBatch(args: StopBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<StopBuildBatchCommandOutput>;
340
382
  stopBuildBatch(args: StopBuildBatchCommandInput, cb: (err: any, data?: StopBuildBatchCommandOutput) => void): void;
341
383
  stopBuildBatch(args: StopBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBuildBatchCommandOutput) => void): void;
342
384
  /**
385
+ * @public
343
386
  * <p>Changes the settings of a build project.</p>
344
387
  */
345
388
  updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
346
389
  updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
347
390
  updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
348
391
  /**
392
+ * @public
349
393
  * <p>Changes the public visibility for a project. The project's build results, logs, and
350
394
  * artifacts are available to the general public. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/public-builds.html">Public build
351
395
  * projects</a> in the <i>CodeBuild User Guide</i>.</p>
@@ -389,6 +433,7 @@ export declare class CodeBuild extends CodeBuildClient {
389
433
  updateProjectVisibility(args: UpdateProjectVisibilityCommandInput, cb: (err: any, data?: UpdateProjectVisibilityCommandOutput) => void): void;
390
434
  updateProjectVisibility(args: UpdateProjectVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectVisibilityCommandOutput) => void): void;
391
435
  /**
436
+ * @public
392
437
  * <p>
393
438
  * Updates a report group.
394
439
  * </p>
@@ -397,6 +442,7 @@ export declare class CodeBuild extends CodeBuildClient {
397
442
  updateReportGroup(args: UpdateReportGroupCommandInput, cb: (err: any, data?: UpdateReportGroupCommandOutput) => void): void;
398
443
  updateReportGroup(args: UpdateReportGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReportGroupCommandOutput) => void): void;
399
444
  /**
445
+ * @public
400
446
  * <p> Updates the webhook associated with an CodeBuild build project. </p>
401
447
  * <note>
402
448
  * <p> If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored.
@@ -53,15 +53,24 @@ import { UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutp
53
53
  import { UpdateReportGroupCommandInput, UpdateReportGroupCommandOutput } from "./commands/UpdateReportGroupCommand";
54
54
  import { UpdateWebhookCommandInput, UpdateWebhookCommandOutput } from "./commands/UpdateWebhookCommand";
55
55
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
56
+ /**
57
+ * @public
58
+ */
56
59
  export type ServiceInputTypes = BatchDeleteBuildsCommandInput | BatchGetBuildBatchesCommandInput | BatchGetBuildsCommandInput | BatchGetProjectsCommandInput | BatchGetReportGroupsCommandInput | BatchGetReportsCommandInput | CreateProjectCommandInput | CreateReportGroupCommandInput | CreateWebhookCommandInput | DeleteBuildBatchCommandInput | DeleteProjectCommandInput | DeleteReportCommandInput | DeleteReportGroupCommandInput | DeleteResourcePolicyCommandInput | DeleteSourceCredentialsCommandInput | DeleteWebhookCommandInput | DescribeCodeCoveragesCommandInput | DescribeTestCasesCommandInput | GetReportGroupTrendCommandInput | GetResourcePolicyCommandInput | ImportSourceCredentialsCommandInput | InvalidateProjectCacheCommandInput | ListBuildBatchesCommandInput | ListBuildBatchesForProjectCommandInput | ListBuildsCommandInput | ListBuildsForProjectCommandInput | ListCuratedEnvironmentImagesCommandInput | ListProjectsCommandInput | ListReportGroupsCommandInput | ListReportsCommandInput | ListReportsForReportGroupCommandInput | ListSharedProjectsCommandInput | ListSharedReportGroupsCommandInput | ListSourceCredentialsCommandInput | PutResourcePolicyCommandInput | RetryBuildBatchCommandInput | RetryBuildCommandInput | StartBuildBatchCommandInput | StartBuildCommandInput | StopBuildBatchCommandInput | StopBuildCommandInput | UpdateProjectCommandInput | UpdateProjectVisibilityCommandInput | UpdateReportGroupCommandInput | UpdateWebhookCommandInput;
60
+ /**
61
+ * @public
62
+ */
57
63
  export type ServiceOutputTypes = BatchDeleteBuildsCommandOutput | BatchGetBuildBatchesCommandOutput | BatchGetBuildsCommandOutput | BatchGetProjectsCommandOutput | BatchGetReportGroupsCommandOutput | BatchGetReportsCommandOutput | CreateProjectCommandOutput | CreateReportGroupCommandOutput | CreateWebhookCommandOutput | DeleteBuildBatchCommandOutput | DeleteProjectCommandOutput | DeleteReportCommandOutput | DeleteReportGroupCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSourceCredentialsCommandOutput | DeleteWebhookCommandOutput | DescribeCodeCoveragesCommandOutput | DescribeTestCasesCommandOutput | GetReportGroupTrendCommandOutput | GetResourcePolicyCommandOutput | ImportSourceCredentialsCommandOutput | InvalidateProjectCacheCommandOutput | ListBuildBatchesCommandOutput | ListBuildBatchesForProjectCommandOutput | ListBuildsCommandOutput | ListBuildsForProjectCommandOutput | ListCuratedEnvironmentImagesCommandOutput | ListProjectsCommandOutput | ListReportGroupsCommandOutput | ListReportsCommandOutput | ListReportsForReportGroupCommandOutput | ListSharedProjectsCommandOutput | ListSharedReportGroupsCommandOutput | ListSourceCredentialsCommandOutput | PutResourcePolicyCommandOutput | RetryBuildBatchCommandOutput | RetryBuildCommandOutput | StartBuildBatchCommandOutput | StartBuildCommandOutput | StopBuildBatchCommandOutput | StopBuildCommandOutput | UpdateProjectCommandOutput | UpdateProjectVisibilityCommandOutput | UpdateReportGroupCommandOutput | UpdateWebhookCommandOutput;
64
+ /**
65
+ * @public
66
+ */
58
67
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
59
68
  /**
60
69
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
61
70
  */
62
71
  requestHandler?: __HttpHandler;
63
72
  /**
64
- * A constructor for a class implementing the {@link __Checksum} interface
73
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
65
74
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
66
75
  * @internal
67
76
  */
@@ -151,23 +160,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
151
160
  */
152
161
  logger?: __Logger;
153
162
  /**
154
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
163
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
155
164
  */
156
165
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
157
166
  }
167
+ /**
168
+ * @public
169
+ */
158
170
  type CodeBuildClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
159
171
  /**
160
- * The configuration interface of CodeBuildClient class constructor that set the region, credentials and other options.
172
+ * @public
173
+ *
174
+ * The configuration interface of CodeBuildClient class constructor that set the region, credentials and other options.
161
175
  */
162
176
  export interface CodeBuildClientConfig extends CodeBuildClientConfigType {
163
177
  }
178
+ /**
179
+ * @public
180
+ */
164
181
  type CodeBuildClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
165
182
  /**
166
- * The resolved configuration interface of CodeBuildClient class. This is resolved and normalized from the {@link CodeBuildClientConfig | constructor configuration interface}.
183
+ * @public
184
+ *
185
+ * The resolved configuration interface of CodeBuildClient class. This is resolved and normalized from the {@link CodeBuildClientConfig | constructor configuration interface}.
167
186
  */
168
187
  export interface CodeBuildClientResolvedConfig extends CodeBuildClientResolvedConfigType {
169
188
  }
170
189
  /**
190
+ * @public
171
191
  * <fullname>CodeBuild</fullname>
172
192
  * <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code,
173
193
  * runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { BatchDeleteBuildsInput, BatchDeleteBuildsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchDeleteBuildsCommand}.
8
10
  */
9
11
  export interface BatchDeleteBuildsCommandInput extends BatchDeleteBuildsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchDeleteBuildsCommand}.
13
17
  */
14
18
  export interface BatchDeleteBuildsCommandOutput extends BatchDeleteBuildsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes one or more builds.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchDeleteBuildsCommandOutput extends BatchDeleteBuildsOutput,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchDeleteBuildsCommandInput - {@link BatchDeleteBuildsCommandInput}
34
+ * @returns {@link BatchDeleteBuildsCommandOutput}
28
35
  * @see {@link BatchDeleteBuildsCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchDeleteBuildsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -37,11 +44,20 @@ export interface BatchDeleteBuildsCommandOutput extends BatchDeleteBuildsOutput,
37
44
  export declare class BatchDeleteBuildsCommand extends $Command<BatchDeleteBuildsCommandInput, BatchDeleteBuildsCommandOutput, CodeBuildClientResolvedConfig> {
38
45
  readonly input: BatchDeleteBuildsCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: BatchDeleteBuildsCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteBuildsCommandInput, BatchDeleteBuildsCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { BatchGetBuildBatchesInput, BatchGetBuildBatchesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetBuildBatchesCommand}.
8
10
  */
9
11
  export interface BatchGetBuildBatchesCommandInput extends BatchGetBuildBatchesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetBuildBatchesCommand}.
13
17
  */
14
18
  export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about one or more batch builds.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetBuildBatchesCommandInput - {@link BatchGetBuildBatchesCommandInput}
34
+ * @returns {@link BatchGetBuildBatchesCommandOutput}
28
35
  * @see {@link BatchGetBuildBatchesCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetBuildBatchesCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -37,11 +44,20 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
37
44
  export declare class BatchGetBuildBatchesCommand extends $Command<BatchGetBuildBatchesCommandInput, BatchGetBuildBatchesCommandOutput, CodeBuildClientResolvedConfig> {
38
45
  readonly input: BatchGetBuildBatchesCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: BatchGetBuildBatchesCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetBuildBatchesCommandInput, BatchGetBuildBatchesCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { BatchGetBuildsInput, BatchGetBuildsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetBuildsCommand}.
8
10
  */
9
11
  export interface BatchGetBuildsCommandInput extends BatchGetBuildsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetBuildsCommand}.
13
17
  */
14
18
  export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about one or more builds.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetBuildsCommandInput - {@link BatchGetBuildsCommandInput}
34
+ * @returns {@link BatchGetBuildsCommandOutput}
28
35
  * @see {@link BatchGetBuildsCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetBuildsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -37,11 +44,20 @@ export interface BatchGetBuildsCommandOutput extends BatchGetBuildsOutput, __Met
37
44
  export declare class BatchGetBuildsCommand extends $Command<BatchGetBuildsCommandInput, BatchGetBuildsCommandOutput, CodeBuildClientResolvedConfig> {
38
45
  readonly input: BatchGetBuildsCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: BatchGetBuildsCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetBuildsCommandInput, BatchGetBuildsCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { BatchGetProjectsInput, BatchGetProjectsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetProjectsCommand}.
8
10
  */
9
11
  export interface BatchGetProjectsCommandInput extends BatchGetProjectsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetProjectsCommand}.
13
17
  */
14
18
  export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about one or more build projects.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetProjectsCommandInput - {@link BatchGetProjectsCommandInput}
34
+ * @returns {@link BatchGetProjectsCommandOutput}
28
35
  * @see {@link BatchGetProjectsCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetProjectsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -37,11 +44,20 @@ export interface BatchGetProjectsCommandOutput extends BatchGetProjectsOutput, _
37
44
  export declare class BatchGetProjectsCommand extends $Command<BatchGetProjectsCommandInput, BatchGetProjectsCommandOutput, CodeBuildClientResolvedConfig> {
38
45
  readonly input: BatchGetProjectsCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: BatchGetProjectsCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetProjectsCommandInput, BatchGetProjectsCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }