@aws-sdk/client-codeguru-reviewer 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/CodeGuruReviewer.d.ts +242 -75
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +189 -87
- package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +550 -716
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCodeReviewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationFeedbackPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRepositoryAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
AssociateRepositoryRequest,
|
|
15
|
+
AssociateRepositoryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface AssociateRepositoryCommandInput
|
|
18
|
+
extends AssociateRepositoryRequest {}
|
|
19
|
+
export interface AssociateRepositoryCommandOutput
|
|
20
|
+
extends AssociateRepositoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class AssociateRepositoryCommand extends $Command<
|
|
23
|
+
AssociateRepositoryCommandInput,
|
|
24
|
+
AssociateRepositoryCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: AssociateRepositoryCommandInput;
|
|
28
|
+
constructor(input: AssociateRepositoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateCodeReviewRequest,
|
|
15
|
+
CreateCodeReviewResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateCodeReviewCommandInput extends CreateCodeReviewRequest {}
|
|
18
|
+
export interface CreateCodeReviewCommandOutput
|
|
19
|
+
extends CreateCodeReviewResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreateCodeReviewCommand extends $Command<
|
|
22
|
+
CreateCodeReviewCommandInput,
|
|
23
|
+
CreateCodeReviewCommandOutput,
|
|
24
|
+
CodeGuruReviewerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreateCodeReviewCommandInput;
|
|
27
|
+
constructor(input: CreateCodeReviewCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeCodeReviewRequest,
|
|
15
|
+
DescribeCodeReviewResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeCodeReviewCommandInput
|
|
18
|
+
extends DescribeCodeReviewRequest {}
|
|
19
|
+
export interface DescribeCodeReviewCommandOutput
|
|
20
|
+
extends DescribeCodeReviewResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeCodeReviewCommand extends $Command<
|
|
23
|
+
DescribeCodeReviewCommandInput,
|
|
24
|
+
DescribeCodeReviewCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeCodeReviewCommandInput;
|
|
28
|
+
constructor(input: DescribeCodeReviewCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeRecommendationFeedbackRequest,
|
|
15
|
+
DescribeRecommendationFeedbackResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeRecommendationFeedbackCommandInput
|
|
18
|
+
extends DescribeRecommendationFeedbackRequest {}
|
|
19
|
+
export interface DescribeRecommendationFeedbackCommandOutput
|
|
20
|
+
extends DescribeRecommendationFeedbackResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeRecommendationFeedbackCommand extends $Command<
|
|
23
|
+
DescribeRecommendationFeedbackCommandInput,
|
|
24
|
+
DescribeRecommendationFeedbackCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeRecommendationFeedbackCommandInput;
|
|
28
|
+
constructor(input: DescribeRecommendationFeedbackCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeRecommendationFeedbackCommandInput,
|
|
35
|
+
DescribeRecommendationFeedbackCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeRepositoryAssociationRequest,
|
|
15
|
+
DescribeRepositoryAssociationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeRepositoryAssociationCommandInput
|
|
18
|
+
extends DescribeRepositoryAssociationRequest {}
|
|
19
|
+
export interface DescribeRepositoryAssociationCommandOutput
|
|
20
|
+
extends DescribeRepositoryAssociationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeRepositoryAssociationCommand extends $Command<
|
|
23
|
+
DescribeRepositoryAssociationCommandInput,
|
|
24
|
+
DescribeRepositoryAssociationCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeRepositoryAssociationCommandInput;
|
|
28
|
+
constructor(input: DescribeRepositoryAssociationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeRepositoryAssociationCommandInput,
|
|
35
|
+
DescribeRepositoryAssociationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
DisassociateRepositoryRequest,
|
|
15
|
+
DisassociateRepositoryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateRepositoryCommandInput
|
|
18
|
+
extends DisassociateRepositoryRequest {}
|
|
19
|
+
export interface DisassociateRepositoryCommandOutput
|
|
20
|
+
extends DisassociateRepositoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateRepositoryCommand extends $Command<
|
|
23
|
+
DisassociateRepositoryCommandInput,
|
|
24
|
+
DisassociateRepositoryCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateRepositoryCommandInput;
|
|
28
|
+
constructor(input: DisassociateRepositoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateRepositoryCommandInput,
|
|
35
|
+
DisassociateRepositoryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListCodeReviewsRequest,
|
|
15
|
+
ListCodeReviewsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListCodeReviewsCommandInput extends ListCodeReviewsRequest {}
|
|
18
|
+
export interface ListCodeReviewsCommandOutput
|
|
19
|
+
extends ListCodeReviewsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListCodeReviewsCommand extends $Command<
|
|
22
|
+
ListCodeReviewsCommandInput,
|
|
23
|
+
ListCodeReviewsCommandOutput,
|
|
24
|
+
CodeGuruReviewerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListCodeReviewsCommandInput;
|
|
27
|
+
constructor(input: ListCodeReviewsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListRecommendationFeedbackRequest,
|
|
15
|
+
ListRecommendationFeedbackResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListRecommendationFeedbackCommandInput
|
|
18
|
+
extends ListRecommendationFeedbackRequest {}
|
|
19
|
+
export interface ListRecommendationFeedbackCommandOutput
|
|
20
|
+
extends ListRecommendationFeedbackResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListRecommendationFeedbackCommand extends $Command<
|
|
23
|
+
ListRecommendationFeedbackCommandInput,
|
|
24
|
+
ListRecommendationFeedbackCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListRecommendationFeedbackCommandInput;
|
|
28
|
+
constructor(input: ListRecommendationFeedbackCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListRecommendationFeedbackCommandInput,
|
|
35
|
+
ListRecommendationFeedbackCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListRecommendationsRequest,
|
|
15
|
+
ListRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListRecommendationsCommandInput
|
|
18
|
+
extends ListRecommendationsRequest {}
|
|
19
|
+
export interface ListRecommendationsCommandOutput
|
|
20
|
+
extends ListRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListRecommendationsCommand extends $Command<
|
|
23
|
+
ListRecommendationsCommandInput,
|
|
24
|
+
ListRecommendationsCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListRecommendationsCommandInput;
|
|
28
|
+
constructor(input: ListRecommendationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListRepositoryAssociationsRequest,
|
|
15
|
+
ListRepositoryAssociationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListRepositoryAssociationsCommandInput
|
|
18
|
+
extends ListRepositoryAssociationsRequest {}
|
|
19
|
+
export interface ListRepositoryAssociationsCommandOutput
|
|
20
|
+
extends ListRepositoryAssociationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListRepositoryAssociationsCommand extends $Command<
|
|
23
|
+
ListRepositoryAssociationsCommandInput,
|
|
24
|
+
ListRepositoryAssociationsCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListRepositoryAssociationsCommandInput;
|
|
28
|
+
constructor(input: ListRepositoryAssociationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListRepositoryAssociationsCommandInput,
|
|
35
|
+
ListRepositoryAssociationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodeGuruReviewerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
CodeGuruReviewerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruReviewerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|