@aws-sdk/client-codeguru-reviewer 3.168.0 → 3.170.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 +256 -75
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +768 -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 +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { CodeGuruReviewer } from "../CodeGuruReviewer";
|
|
3
|
-
import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient";
|
|
4
|
-
export interface CodeGuruReviewerPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CodeGuruReviewer } from "../CodeGuruReviewer";
|
|
3
|
+
import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient";
|
|
4
|
+
export interface CodeGuruReviewerPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: CodeGuruReviewer | CodeGuruReviewerClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCodeReviewsCommandInput,
|
|
4
|
+
ListCodeReviewsCommandOutput,
|
|
5
|
+
} from "../commands/ListCodeReviewsCommand";
|
|
6
|
+
import { CodeGuruReviewerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCodeReviews(
|
|
8
|
+
config: CodeGuruReviewerPaginationConfiguration,
|
|
9
|
+
input: ListCodeReviewsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCodeReviewsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecommendationFeedbackCommandInput,
|
|
4
|
+
ListRecommendationFeedbackCommandOutput,
|
|
5
|
+
} from "../commands/ListRecommendationFeedbackCommand";
|
|
6
|
+
import { CodeGuruReviewerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRecommendationFeedback(
|
|
8
|
+
config: CodeGuruReviewerPaginationConfiguration,
|
|
9
|
+
input: ListRecommendationFeedbackCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRecommendationFeedbackCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecommendationsCommandInput,
|
|
4
|
+
ListRecommendationsCommandOutput,
|
|
5
|
+
} from "../commands/ListRecommendationsCommand";
|
|
6
|
+
import { CodeGuruReviewerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRecommendations(
|
|
8
|
+
config: CodeGuruReviewerPaginationConfiguration,
|
|
9
|
+
input: ListRecommendationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRecommendationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRepositoryAssociationsCommandInput,
|
|
4
|
+
ListRepositoryAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListRepositoryAssociationsCommand";
|
|
6
|
+
import { CodeGuruReviewerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRepositoryAssociations(
|
|
8
|
+
config: CodeGuruReviewerPaginationConfiguration,
|
|
9
|
+
input: ListRepositoryAssociationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRepositoryAssociationsCommandOutput>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListCodeReviewsPaginator";
|
|
3
|
-
export * from "./ListRecommendationFeedbackPaginator";
|
|
4
|
-
export * from "./ListRecommendationsPaginator";
|
|
5
|
-
export * from "./ListRepositoryAssociationsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCodeReviewsPaginator";
|
|
3
|
+
export * from "./ListRecommendationFeedbackPaginator";
|
|
4
|
+
export * from "./ListRecommendationsPaginator";
|
|
5
|
+
export * from "./ListRepositoryAssociationsPaginator";
|
|
@@ -1,44 +1,173 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateRepositoryCommandInput,
|
|
8
|
+
AssociateRepositoryCommandOutput,
|
|
9
|
+
} from "../commands/AssociateRepositoryCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateCodeReviewCommandInput,
|
|
12
|
+
CreateCodeReviewCommandOutput,
|
|
13
|
+
} from "../commands/CreateCodeReviewCommand";
|
|
14
|
+
import {
|
|
15
|
+
DescribeCodeReviewCommandInput,
|
|
16
|
+
DescribeCodeReviewCommandOutput,
|
|
17
|
+
} from "../commands/DescribeCodeReviewCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeRecommendationFeedbackCommandInput,
|
|
20
|
+
DescribeRecommendationFeedbackCommandOutput,
|
|
21
|
+
} from "../commands/DescribeRecommendationFeedbackCommand";
|
|
22
|
+
import {
|
|
23
|
+
DescribeRepositoryAssociationCommandInput,
|
|
24
|
+
DescribeRepositoryAssociationCommandOutput,
|
|
25
|
+
} from "../commands/DescribeRepositoryAssociationCommand";
|
|
26
|
+
import {
|
|
27
|
+
DisassociateRepositoryCommandInput,
|
|
28
|
+
DisassociateRepositoryCommandOutput,
|
|
29
|
+
} from "../commands/DisassociateRepositoryCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListCodeReviewsCommandInput,
|
|
32
|
+
ListCodeReviewsCommandOutput,
|
|
33
|
+
} from "../commands/ListCodeReviewsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListRecommendationFeedbackCommandInput,
|
|
36
|
+
ListRecommendationFeedbackCommandOutput,
|
|
37
|
+
} from "../commands/ListRecommendationFeedbackCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListRecommendationsCommandInput,
|
|
40
|
+
ListRecommendationsCommandOutput,
|
|
41
|
+
} from "../commands/ListRecommendationsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListRepositoryAssociationsCommandInput,
|
|
44
|
+
ListRepositoryAssociationsCommandOutput,
|
|
45
|
+
} from "../commands/ListRepositoryAssociationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
PutRecommendationFeedbackCommandInput,
|
|
52
|
+
PutRecommendationFeedbackCommandOutput,
|
|
53
|
+
} from "../commands/PutRecommendationFeedbackCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "../commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UntagResourceCommandInput,
|
|
60
|
+
UntagResourceCommandOutput,
|
|
61
|
+
} from "../commands/UntagResourceCommand";
|
|
62
|
+
export declare const serializeAws_restJson1AssociateRepositoryCommand: (
|
|
63
|
+
input: AssociateRepositoryCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1CreateCodeReviewCommand: (
|
|
67
|
+
input: CreateCodeReviewCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1DescribeCodeReviewCommand: (
|
|
71
|
+
input: DescribeCodeReviewCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1DescribeRecommendationFeedbackCommand: (
|
|
75
|
+
input: DescribeRecommendationFeedbackCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1DescribeRepositoryAssociationCommand: (
|
|
79
|
+
input: DescribeRepositoryAssociationCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1DisassociateRepositoryCommand: (
|
|
83
|
+
input: DisassociateRepositoryCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1ListCodeReviewsCommand: (
|
|
87
|
+
input: ListCodeReviewsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1ListRecommendationFeedbackCommand: (
|
|
91
|
+
input: ListRecommendationFeedbackCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1ListRecommendationsCommand: (
|
|
95
|
+
input: ListRecommendationsCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1ListRepositoryAssociationsCommand: (
|
|
99
|
+
input: ListRepositoryAssociationsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
103
|
+
input: ListTagsForResourceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1PutRecommendationFeedbackCommand: (
|
|
107
|
+
input: PutRecommendationFeedbackCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
111
|
+
input: TagResourceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
115
|
+
input: UntagResourceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const deserializeAws_restJson1AssociateRepositoryCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<AssociateRepositoryCommandOutput>;
|
|
122
|
+
export declare const deserializeAws_restJson1CreateCodeReviewCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<CreateCodeReviewCommandOutput>;
|
|
126
|
+
export declare const deserializeAws_restJson1DescribeCodeReviewCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<DescribeCodeReviewCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1DescribeRecommendationFeedbackCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<DescribeRecommendationFeedbackCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1DescribeRepositoryAssociationCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DescribeRepositoryAssociationCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_restJson1DisassociateRepositoryCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DisassociateRepositoryCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1ListCodeReviewsCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<ListCodeReviewsCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_restJson1ListRecommendationFeedbackCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<ListRecommendationFeedbackCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_restJson1ListRecommendationsCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ListRecommendationsCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_restJson1ListRepositoryAssociationsCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListRepositoryAssociationsCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1PutRecommendationFeedbackCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<PutRecommendationFeedbackCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<TagResourceCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: CodeGuruReviewerClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: CodeGuruReviewerClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|