@aws-sdk/client-codeguru-reviewer 3.296.0 → 3.298.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 (55) hide show
  1. package/dist-cjs/commands/AssociateRepositoryCommand.js +2 -3
  2. package/dist-cjs/commands/CreateCodeReviewCommand.js +2 -3
  3. package/dist-cjs/commands/DescribeCodeReviewCommand.js +2 -3
  4. package/dist-cjs/commands/DescribeRecommendationFeedbackCommand.js +2 -3
  5. package/dist-cjs/commands/DescribeRepositoryAssociationCommand.js +2 -3
  6. package/dist-cjs/commands/DisassociateRepositoryCommand.js +2 -3
  7. package/dist-cjs/commands/ListCodeReviewsCommand.js +2 -3
  8. package/dist-cjs/commands/ListRecommendationFeedbackCommand.js +2 -3
  9. package/dist-cjs/commands/ListRecommendationsCommand.js +2 -3
  10. package/dist-cjs/commands/ListRepositoryAssociationsCommand.js +2 -3
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  12. package/dist-cjs/commands/PutRecommendationFeedbackCommand.js +2 -3
  13. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  14. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  15. package/dist-cjs/models/models_0.js +1 -218
  16. package/dist-es/commands/AssociateRepositoryCommand.js +2 -3
  17. package/dist-es/commands/CreateCodeReviewCommand.js +2 -3
  18. package/dist-es/commands/DescribeCodeReviewCommand.js +2 -3
  19. package/dist-es/commands/DescribeRecommendationFeedbackCommand.js +2 -3
  20. package/dist-es/commands/DescribeRepositoryAssociationCommand.js +2 -3
  21. package/dist-es/commands/DisassociateRepositoryCommand.js +2 -3
  22. package/dist-es/commands/ListCodeReviewsCommand.js +2 -3
  23. package/dist-es/commands/ListRecommendationFeedbackCommand.js +2 -3
  24. package/dist-es/commands/ListRecommendationsCommand.js +2 -3
  25. package/dist-es/commands/ListRepositoryAssociationsCommand.js +2 -3
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  27. package/dist-es/commands/PutRecommendationFeedbackCommand.js +2 -3
  28. package/dist-es/commands/TagResourceCommand.js +2 -3
  29. package/dist-es/commands/UntagResourceCommand.js +2 -3
  30. package/dist-es/models/models_0.js +0 -162
  31. package/dist-types/CodeGuruReviewer.d.ts +15 -0
  32. package/dist-types/CodeGuruReviewerClient.d.ts +24 -4
  33. package/dist-types/commands/AssociateRepositoryCommand.d.ts +16 -0
  34. package/dist-types/commands/CreateCodeReviewCommand.d.ts +16 -0
  35. package/dist-types/commands/DescribeCodeReviewCommand.d.ts +16 -0
  36. package/dist-types/commands/DescribeRecommendationFeedbackCommand.d.ts +16 -0
  37. package/dist-types/commands/DescribeRepositoryAssociationCommand.d.ts +16 -0
  38. package/dist-types/commands/DisassociateRepositoryCommand.d.ts +16 -0
  39. package/dist-types/commands/ListCodeReviewsCommand.d.ts +16 -0
  40. package/dist-types/commands/ListRecommendationFeedbackCommand.d.ts +16 -0
  41. package/dist-types/commands/ListRecommendationsCommand.d.ts +16 -0
  42. package/dist-types/commands/ListRepositoryAssociationsCommand.d.ts +16 -0
  43. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  44. package/dist-types/commands/PutRecommendationFeedbackCommand.d.ts +16 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  47. package/dist-types/models/CodeGuruReviewerServiceException.d.ts +2 -0
  48. package/dist-types/models/models_0.d.ts +150 -216
  49. package/dist-types/pagination/Interfaces.d.ts +3 -0
  50. package/dist-types/pagination/ListCodeReviewsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListRecommendationFeedbackPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListRepositoryAssociationsPaginator.d.ts +3 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +0 -150
  55. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeCodeReviewCommand}.
8
10
  */
9
11
  export interface DescribeCodeReviewCommandInput extends DescribeCodeReviewRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeCodeReviewCommand}.
13
17
  */
14
18
  export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the metadata associated with the code review along with its status.</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 DescribeCodeReviewCommandOutput extends DescribeCodeReviewRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeCodeReviewCommandInput - {@link DescribeCodeReviewCommandInput}
34
+ * @returns {@link DescribeCodeReviewCommandOutput}
28
35
  * @see {@link DescribeCodeReviewCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeCodeReviewCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewRespo
49
56
  export declare class DescribeCodeReviewCommand extends $Command<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput, CodeGuruReviewerClientResolvedConfig> {
50
57
  readonly input: DescribeCodeReviewCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DescribeCodeReviewCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRecommendationFeedbackCommand}.
8
10
  */
9
11
  export interface DescribeRecommendationFeedbackCommandInput extends DescribeRecommendationFeedbackRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRecommendationFeedbackCommand}.
13
17
  */
14
18
  export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRecommendationFeedbackResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes the customer feedback for a CodeGuru Reviewer recommendation.</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 DescribeRecommendationFeedbackCommandOutput extends DescribeRec
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeRecommendationFeedbackCommandInput - {@link DescribeRecommendationFeedbackCommandInput}
34
+ * @returns {@link DescribeRecommendationFeedbackCommandOutput}
28
35
  * @see {@link DescribeRecommendationFeedbackCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeRecommendationFeedbackCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRec
49
56
  export declare class DescribeRecommendationFeedbackCommand extends $Command<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
50
57
  readonly input: DescribeRecommendationFeedbackCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DescribeRecommendationFeedbackCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { DescribeRepositoryAssociationRequest, DescribeRepositoryAssociationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRepositoryAssociationCommand}.
8
10
  */
9
11
  export interface DescribeRepositoryAssociationCommandInput extends DescribeRepositoryAssociationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRepositoryAssociationCommand}.
13
17
  */
14
18
  export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepositoryAssociationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociation.html">RepositoryAssociation</a> object that contains information about the requested
18
23
  * repository association.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepo
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DescribeRepositoryAssociationCommandInput - {@link DescribeRepositoryAssociationCommandInput}
35
+ * @returns {@link DescribeRepositoryAssociationCommandOutput}
29
36
  * @see {@link DescribeRepositoryAssociationCommandInput} for command's `input` shape.
30
37
  * @see {@link DescribeRepositoryAssociationCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepo
50
57
  export declare class DescribeRepositoryAssociationCommand extends $Command<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput, CodeGuruReviewerClientResolvedConfig> {
51
58
  readonly input: DescribeRepositoryAssociationCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DescribeRepositoryAssociationCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { DisassociateRepositoryRequest, DisassociateRepositoryResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateRepositoryCommand}.
8
10
  */
9
11
  export interface DisassociateRepositoryCommandInput extends DisassociateRepositoryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateRepositoryCommand}.
13
17
  */
14
18
  export interface DisassociateRepositoryCommandOutput extends DisassociateRepositoryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes the association between Amazon CodeGuru Reviewer and a repository.</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 DisassociateRepositoryCommandOutput extends DisassociateReposit
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DisassociateRepositoryCommandInput - {@link DisassociateRepositoryCommandInput}
34
+ * @returns {@link DisassociateRepositoryCommandOutput}
28
35
  * @see {@link DisassociateRepositoryCommandInput} for command's `input` shape.
29
36
  * @see {@link DisassociateRepositoryCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -54,11 +61,20 @@ export interface DisassociateRepositoryCommandOutput extends DisassociateReposit
54
61
  export declare class DisassociateRepositoryCommand extends $Command<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput, CodeGuruReviewerClientResolvedConfig> {
55
62
  readonly input: DisassociateRepositoryCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: DisassociateRepositoryCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { ListCodeReviewsRequest, ListCodeReviewsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListCodeReviewsCommand}.
8
10
  */
9
11
  export interface ListCodeReviewsCommandInput extends ListCodeReviewsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListCodeReviewsCommand}.
13
17
  */
14
18
  export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the code reviews that the customer has created in the past 90 days.</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 ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListCodeReviewsCommandInput - {@link ListCodeReviewsCommandInput}
34
+ * @returns {@link ListCodeReviewsCommandOutput}
28
35
  * @see {@link ListCodeReviewsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListCodeReviewsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, _
46
53
  export declare class ListCodeReviewsCommand extends $Command<ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput, CodeGuruReviewerClientResolvedConfig> {
47
54
  readonly input: ListCodeReviewsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListCodeReviewsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { ListRecommendationFeedbackRequest, ListRecommendationFeedbackResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRecommendationFeedbackCommand}.
8
10
  */
9
11
  export interface ListRecommendationFeedbackCommandInput extends ListRecommendationFeedbackRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRecommendationFeedbackCommand}.
13
17
  */
14
18
  export interface ListRecommendationFeedbackCommandOutput extends ListRecommendationFeedbackResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RecommendationFeedbackSummary.html">RecommendationFeedbackSummary</a> objects that contain customer recommendation
18
23
  * feedback for all CodeGuru Reviewer users.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListRecommendationFeedbackCommandOutput extends ListRecommendat
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListRecommendationFeedbackCommandInput - {@link ListRecommendationFeedbackCommandInput}
35
+ * @returns {@link ListRecommendationFeedbackCommandOutput}
29
36
  * @see {@link ListRecommendationFeedbackCommandInput} for command's `input` shape.
30
37
  * @see {@link ListRecommendationFeedbackCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListRecommendationFeedbackCommandOutput extends ListRecommendat
50
57
  export declare class ListRecommendationFeedbackCommand extends $Command<ListRecommendationFeedbackCommandInput, ListRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
51
58
  readonly input: ListRecommendationFeedbackCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListRecommendationFeedbackCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationFeedbackCommandInput, ListRecommendationFeedbackCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRecommendationsCommand}.
8
10
  */
9
11
  export interface ListRecommendationsCommandInput extends ListRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRecommendationsCommand}.
13
17
  */
14
18
  export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the list of all recommendations for a completed code review.</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 ListRecommendationsCommandOutput extends ListRecommendationsRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListRecommendationsCommandInput - {@link ListRecommendationsCommandInput}
34
+ * @returns {@link ListRecommendationsCommandOutput}
28
35
  * @see {@link ListRecommendationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListRecommendationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
49
56
  export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CodeGuruReviewerClientResolvedConfig> {
50
57
  readonly input: ListRecommendationsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListRecommendationsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { ListRepositoryAssociationsRequest, ListRepositoryAssociationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRepositoryAssociationsCommand}.
8
10
  */
9
11
  export interface ListRepositoryAssociationsCommandInput extends ListRepositoryAssociationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRepositoryAssociationsCommand}.
13
17
  */
14
18
  export interface ListRepositoryAssociationsCommandOutput extends ListRepositoryAssociationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html">RepositoryAssociationSummary</a> objects that contain summary information about a
18
23
  * repository association. You can filter the returned list by <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-ProviderType">ProviderType</a>, <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-Name">Name</a>, <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-State">State</a>, and <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-Owner">Owner</a>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListRepositoryAssociationsCommandOutput extends ListRepositoryA
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListRepositoryAssociationsCommandInput - {@link ListRepositoryAssociationsCommandInput}
35
+ * @returns {@link ListRepositoryAssociationsCommandOutput}
29
36
  * @see {@link ListRepositoryAssociationsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListRepositoryAssociationsCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListRepositoryAssociationsCommandOutput extends ListRepositoryA
44
51
  export declare class ListRepositoryAssociationsCommand extends $Command<ListRepositoryAssociationsCommandInput, ListRepositoryAssociationsCommandOutput, CodeGuruReviewerClientResolvedConfig> {
45
52
  readonly input: ListRepositoryAssociationsCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListRepositoryAssociationsCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRepositoryAssociationsCommandInput, ListRepositoryAssociationsCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the list of tags associated with an associated repository resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
43
50
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeGuruReviewerClientResolvedConfig> {
44
51
  readonly input: ListTagsForResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListTagsForResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { PutRecommendationFeedbackRequest, PutRecommendationFeedbackResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutRecommendationFeedbackCommand}.
8
10
  */
9
11
  export interface PutRecommendationFeedbackCommandInput extends PutRecommendationFeedbackRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutRecommendationFeedbackCommand}.
13
17
  */
14
18
  export interface PutRecommendationFeedbackCommandOutput extends PutRecommendationFeedbackResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with
18
23
  * different reactions the previous feedback is overwritten.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutRecommendationFeedbackCommandOutput extends PutRecommendatio
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutRecommendationFeedbackCommandInput - {@link PutRecommendationFeedbackCommandInput}
35
+ * @returns {@link PutRecommendationFeedbackCommandOutput}
29
36
  * @see {@link PutRecommendationFeedbackCommandInput} for command's `input` shape.
30
37
  * @see {@link PutRecommendationFeedbackCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface PutRecommendationFeedbackCommandOutput extends PutRecommendatio
50
57
  export declare class PutRecommendationFeedbackCommand extends $Command<PutRecommendationFeedbackCommandInput, PutRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
51
58
  readonly input: PutRecommendationFeedbackCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: PutRecommendationFeedbackCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecommendationFeedbackCommandInput, PutRecommendationFeedbackCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tags to an associated repository.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeGuruReviewerClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes a tag from an associated repository.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
43
50
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeGuruReviewerClientResolvedConfig> {
44
51
  readonly input: UntagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UntagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -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 CodeGuruReviewer service.
4
6
  */
5
7
  export declare class CodeGuruReviewerServiceException extends __ServiceException {