@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
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { UpdateReportGroupInput, UpdateReportGroupOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateReportGroupCommand}.
8
10
  */
9
11
  export interface UpdateReportGroupCommandInput extends UpdateReportGroupInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateReportGroupCommand}.
13
17
  */
14
18
  export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Updates a report group.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateReportGroupCommandInput - {@link UpdateReportGroupCommandInput}
36
+ * @returns {@link UpdateReportGroupCommandOutput}
30
37
  * @see {@link UpdateReportGroupCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateReportGroupCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -42,11 +49,20 @@ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput,
42
49
  export declare class UpdateReportGroupCommand extends $Command<UpdateReportGroupCommandInput, UpdateReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
43
50
  readonly input: UpdateReportGroupCommandInput;
44
51
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ /**
53
+ * @public
54
+ */
45
55
  constructor(input: UpdateReportGroupCommandInput);
46
56
  /**
47
57
  * @internal
48
58
  */
49
59
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReportGroupCommandInput, UpdateReportGroupCommandOutput>;
60
+ /**
61
+ * @internal
62
+ */
50
63
  private serialize;
64
+ /**
65
+ * @internal
66
+ */
51
67
  private deserialize;
52
68
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
5
5
  import { UpdateWebhookInput, UpdateWebhookOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateWebhookCommand}.
8
10
  */
9
11
  export interface UpdateWebhookCommandInput extends UpdateWebhookInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateWebhookCommand}.
13
17
  */
14
18
  export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Updates the webhook associated with an CodeBuild build project. </p>
18
23
  * <note>
19
24
  * <p> If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored.
@@ -29,6 +34,8 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __Metad
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param UpdateWebhookCommandInput - {@link UpdateWebhookCommandInput}
38
+ * @returns {@link UpdateWebhookCommandOutput}
32
39
  * @see {@link UpdateWebhookCommandInput} for command's `input` shape.
33
40
  * @see {@link UpdateWebhookCommandOutput} for command's `response` shape.
34
41
  * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
@@ -47,11 +54,20 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookOutput, __Metad
47
54
  export declare class UpdateWebhookCommand extends $Command<UpdateWebhookCommandInput, UpdateWebhookCommandOutput, CodeBuildClientResolvedConfig> {
48
55
  readonly input: UpdateWebhookCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: UpdateWebhookCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWebhookCommandInput, UpdateWebhookCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from CodeBuild service.
4
6
  */
5
7
  export declare class CodeBuildServiceException extends __ServiceException {