@aws-sdk/client-codebuild 3.39.0 → 3.43.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/CHANGELOG.md +38 -0
- package/dist-cjs/endpoints.js +140 -23
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/endpoints.js +140 -23
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/CodeBuildClient.d.ts +8 -0
- package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetReportsCommand.d.ts +1 -1
- package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
- package/dist-types/commands/CreateReportGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateWebhookCommand.d.ts +1 -1
- 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 +1 -1
- 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 +1 -1
- package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +1 -1
- package/dist-types/commands/ListBuildsCommand.d.ts +1 -1
- package/dist-types/commands/ListBuildsForProjectCommand.d.ts +1 -1
- package/dist-types/commands/ListCuratedEnvironmentImagesCommand.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 +1 -1
- package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListSharedProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListSourceCredentialsCommand.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 +1 -1
- package/dist-types/commands/StartBuildCommand.d.ts +1 -1
- 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 +1 -1
- package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateReportGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWebhookCommand.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -30,7 +30,7 @@ export interface CreateWebhookCommandOutput extends CreateWebhookOutput, __Metad
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link CreateWebhookCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link CreateWebhookCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class CreateWebhookCommand extends $Command<CreateWebhookCommandInput, CreateWebhookCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteBuildBatchCommandOutput extends DeleteBuildBatchOutput, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteBuildBatchCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteBuildBatchCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteBuildBatchCommand extends $Command<DeleteBuildBatchCommandInput, DeleteBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectOutput, __Metad
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteProjectCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteProjectCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class DeleteProjectCommand extends $Command<DeleteProjectCommandInput, DeleteProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DeleteReportCommandOutput extends DeleteReportOutput, __Metadat
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DeleteReportCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DeleteReportCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DeleteReportCommand extends $Command<DeleteReportCommandInput, DeleteReportCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteReportGroupCommandOutput extends DeleteReportGroupOutput,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteReportGroupCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteReportGroupCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteReportGroupCommand extends $Command<DeleteReportGroupCommandInput, DeleteReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteSourceCredentialsCommandOutput extends DeleteSourceCreden
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteSourceCredentialsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteSourceCredentialsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteSourceCredentialsCommand extends $Command<DeleteSourceCredentialsCommandInput, DeleteSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DeleteWebhookCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DeleteWebhookCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeCodeCoveragesCommandOutput extends DescribeCodeCoverage
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeCodeCoveragesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeCodeCoveragesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeCodeCoveragesCommand extends $Command<DescribeCodeCoveragesCommandInput, DescribeCodeCoveragesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DescribeTestCasesCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DescribeTestCasesCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DescribeTestCasesCommand extends $Command<DescribeTestCasesCommandInput, DescribeTestCasesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetReportGroupTrendCommandOutput extends GetReportGroupTrendOut
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetReportGroupTrendCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetReportGroupTrendCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetReportGroupTrendCommand extends $Command<GetReportGroupTrendCommandInput, GetReportGroupTrendCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetResourcePolicyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetResourcePolicyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ImportSourceCredentialsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ImportSourceCredentialsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ImportSourceCredentialsCommand extends $Command<ImportSourceCredentialsCommandInput, ImportSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface InvalidateProjectCacheCommandOutput extends InvalidateProjectCa
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link InvalidateProjectCacheCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link InvalidateProjectCacheCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class InvalidateProjectCacheCommand extends $Command<InvalidateProjectCacheCommandInput, InvalidateProjectCacheCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListBuildBatchesCommandOutput extends ListBuildBatchesOutput, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListBuildBatchesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListBuildBatchesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListBuildBatchesCommand extends $Command<ListBuildBatchesCommandInput, ListBuildBatchesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListBuildBatchesForProjectCommandOutput extends ListBuildBatche
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListBuildBatchesForProjectCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListBuildBatchesForProjectCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListBuildBatchesForProjectCommand extends $Command<ListBuildBatchesForProjectCommandInput, ListBuildBatchesForProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListBuildsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListBuildsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListBuildsCommand extends $Command<ListBuildsCommandInput, ListBuildsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListBuildsForProjectCommandOutput extends ListBuildsForProjectO
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListBuildsForProjectCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListBuildsForProjectCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListBuildsForProjectCommand extends $Command<ListBuildsForProjectCommandInput, ListBuildsForProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListCuratedEnvironmentImagesCommandOutput extends ListCuratedEn
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListCuratedEnvironmentImagesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListCuratedEnvironmentImagesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListCuratedEnvironmentImagesCommand extends $Command<ListCuratedEnvironmentImagesCommandInput, ListCuratedEnvironmentImagesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListProjectsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListProjectsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface ListReportGroupsCommandOutput extends ListReportGroupsOutput, _
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link ListReportGroupsCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link ListReportGroupsCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class ListReportGroupsCommand extends $Command<ListReportGroupsCommandInput, ListReportGroupsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface ListReportsCommandOutput extends ListReportsOutput, __MetadataB
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link ListReportsCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link ListReportsCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class ListReportsCommand extends $Command<ListReportsCommandInput, ListReportsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link ListReportsForReportGroupCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link ListReportsForReportGroupCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class ListReportsForReportGroupCommand extends $Command<ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListSharedProjectsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListSharedProjectsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListSharedProjectsCommand extends $Command<ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListSharedReportGroupsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListSharedReportGroupsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListSharedReportGroupsCommand extends $Command<ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListSourceCredentialsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListSourceCredentialsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListSourceCredentialsCommand extends $Command<ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link PutResourcePolicyCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RetryBuildBatchCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RetryBuildBatchCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RetryBuildBatchCommand extends $Command<RetryBuildBatchCommandInput, RetryBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RetryBuildCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RetryBuildCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RetryBuildCommand extends $Command<RetryBuildCommandInput, RetryBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartBuildBatchCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartBuildBatchCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartBuildBatchCommand extends $Command<StartBuildBatchCommandInput, StartBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartBuildCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartBuildCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartBuildCommand extends $Command<StartBuildCommandInput, StartBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StopBuildBatchCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StopBuildBatchCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StopBuildBatchCommand extends $Command<StopBuildBatchCommandInput, StopBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StopBuildCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StopBuildCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StopBuildCommand extends $Command<StopBuildCommandInput, StopBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateProjectCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateProjectCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -57,7 +57,7 @@ export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisib
|
|
|
57
57
|
*
|
|
58
58
|
* @see {@link UpdateProjectVisibilityCommandInput} for command's `input` shape.
|
|
59
59
|
* @see {@link UpdateProjectVisibilityCommandOutput} for command's `response` shape.
|
|
60
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
60
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
export declare class UpdateProjectVisibilityCommand extends $Command<UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput,
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link UpdateReportGroupCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link UpdateReportGroupCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class UpdateReportGroupCommand extends $Command<UpdateReportGroupCommandInput, UpdateReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __Metad
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link UpdateWebhookCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link UpdateWebhookCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link CodeBuildClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class UpdateWebhookCommand extends $Command<UpdateWebhookCommandInput, UpdateWebhookCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
18
18
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
20
|
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
23
|
serviceId: string;
|
|
22
24
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
@@ -83,6 +83,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
83
83
|
|
|
84
84
|
logger?: __Logger;
|
|
85
85
|
|
|
86
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
87
|
+
|
|
88
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
89
|
+
|
|
86
90
|
serviceId?: string;
|
|
87
91
|
|
|
88
92
|
region?: string | __Provider<string>;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: CodeBuildClientConfig) => {
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
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.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,32 +21,32 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|