@aws-sdk/client-codeguru-reviewer 3.952.0 → 3.954.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/dist-cjs/index.js +253 -172
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateRepositoryCommand.js +2 -2
- package/dist-es/commands/CreateCodeReviewCommand.js +2 -2
- package/dist-es/commands/DescribeCodeReviewCommand.js +2 -2
- package/dist-es/commands/DescribeRecommendationFeedbackCommand.js +2 -2
- package/dist-es/commands/DescribeRepositoryAssociationCommand.js +2 -2
- package/dist-es/commands/DisassociateRepositoryCommand.js +2 -2
- package/dist-es/commands/ListCodeReviewsCommand.js +2 -2
- package/dist-es/commands/ListRecommendationFeedbackCommand.js +2 -2
- package/dist-es/commands/ListRecommendationsCommand.js +2 -2
- package/dist-es/commands/ListRepositoryAssociationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutRecommendationFeedbackCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +155 -150
- package/dist-types/CodeGuruReviewerClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +77 -94
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -94
- package/package.json +35 -35
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeGuruReviewerHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,94 +1,77 @@
|
|
|
1
|
-
import type { StaticErrorSchema,
|
|
2
|
-
export declare var AccessDeniedException
|
|
3
|
-
export declare var AssociateRepositoryRequest
|
|
4
|
-
export declare var AssociateRepositoryResponse
|
|
5
|
-
export declare var BranchDiffSourceCodeType
|
|
6
|
-
export declare var CodeArtifacts
|
|
7
|
-
export declare var CodeCommitRepository
|
|
8
|
-
export declare var CodeReview
|
|
9
|
-
export declare var CodeReviewSummary
|
|
10
|
-
export declare var CodeReviewType
|
|
11
|
-
export declare var CommitDiffSourceCodeType
|
|
12
|
-
export declare var ConflictException
|
|
13
|
-
export declare var CreateCodeReviewRequest
|
|
14
|
-
export declare var CreateCodeReviewResponse
|
|
15
|
-
export declare var DescribeCodeReviewRequest
|
|
16
|
-
export declare var DescribeCodeReviewResponse
|
|
17
|
-
export declare var DescribeRecommendationFeedbackRequest
|
|
18
|
-
export declare var DescribeRecommendationFeedbackResponse
|
|
19
|
-
export declare var DescribeRepositoryAssociationRequest
|
|
20
|
-
export declare var DescribeRepositoryAssociationResponse
|
|
21
|
-
export declare var DisassociateRepositoryRequest
|
|
22
|
-
export declare var DisassociateRepositoryResponse
|
|
23
|
-
export declare var EventInfo
|
|
24
|
-
export declare var InternalServerException
|
|
25
|
-
export declare var KMSKeyDetails
|
|
26
|
-
export declare var ListCodeReviewsRequest
|
|
27
|
-
export declare var ListCodeReviewsResponse
|
|
28
|
-
export declare var ListRecommendationFeedbackRequest
|
|
29
|
-
export declare var ListRecommendationFeedbackResponse
|
|
30
|
-
export declare var ListRecommendationsRequest
|
|
31
|
-
export declare var ListRecommendationsResponse
|
|
32
|
-
export declare var ListRepositoryAssociationsRequest
|
|
33
|
-
export declare var ListRepositoryAssociationsResponse
|
|
34
|
-
export declare var ListTagsForResourceRequest
|
|
35
|
-
export declare var ListTagsForResourceResponse
|
|
36
|
-
export declare var Metrics
|
|
37
|
-
export declare var MetricsSummary
|
|
38
|
-
export declare var NotFoundException
|
|
39
|
-
export declare var PutRecommendationFeedbackRequest
|
|
40
|
-
export declare var PutRecommendationFeedbackResponse
|
|
41
|
-
export declare var RecommendationFeedback
|
|
42
|
-
export declare var RecommendationFeedbackSummary
|
|
43
|
-
export declare var RecommendationSummary
|
|
44
|
-
export declare var Repository
|
|
45
|
-
export declare var RepositoryAnalysis
|
|
46
|
-
export declare var RepositoryAssociation
|
|
47
|
-
export declare var RepositoryAssociationSummary
|
|
48
|
-
export declare var RepositoryHeadSourceCodeType
|
|
49
|
-
export declare var RequestMetadata
|
|
50
|
-
export declare var ResourceNotFoundException
|
|
51
|
-
export declare var RuleMetadata
|
|
52
|
-
export declare var S3BucketRepository
|
|
53
|
-
export declare var S3Repository
|
|
54
|
-
export declare var S3RepositoryDetails
|
|
55
|
-
export declare var SourceCodeType
|
|
56
|
-
export declare var TagResourceRequest
|
|
57
|
-
export declare var TagResourceResponse
|
|
58
|
-
export declare var ThirdPartySourceRepository
|
|
59
|
-
export declare var ThrottlingException
|
|
60
|
-
export declare var UntagResourceRequest
|
|
61
|
-
export declare var UntagResourceResponse
|
|
62
|
-
export declare var ValidationException
|
|
63
|
-
export declare var CodeGuruReviewerServiceException
|
|
64
|
-
export declare var
|
|
65
|
-
export declare var
|
|
66
|
-
export declare var
|
|
67
|
-
export declare var
|
|
68
|
-
export declare var
|
|
69
|
-
export declare var
|
|
70
|
-
export declare var
|
|
71
|
-
export declare var
|
|
72
|
-
export declare var
|
|
73
|
-
export declare var
|
|
74
|
-
export declare var
|
|
75
|
-
export declare var
|
|
76
|
-
export declare var
|
|
77
|
-
export declare var
|
|
78
|
-
export declare var TagKeyList: number;
|
|
79
|
-
export declare var UserIds: number;
|
|
80
|
-
export declare var TagMap: number;
|
|
81
|
-
export declare var AssociateRepository: StaticOperationSchema;
|
|
82
|
-
export declare var CreateCodeReview: StaticOperationSchema;
|
|
83
|
-
export declare var DescribeCodeReview: StaticOperationSchema;
|
|
84
|
-
export declare var DescribeRecommendationFeedback: StaticOperationSchema;
|
|
85
|
-
export declare var DescribeRepositoryAssociation: StaticOperationSchema;
|
|
86
|
-
export declare var DisassociateRepository: StaticOperationSchema;
|
|
87
|
-
export declare var ListCodeReviews: StaticOperationSchema;
|
|
88
|
-
export declare var ListRecommendationFeedback: StaticOperationSchema;
|
|
89
|
-
export declare var ListRecommendations: StaticOperationSchema;
|
|
90
|
-
export declare var ListRepositoryAssociations: StaticOperationSchema;
|
|
91
|
-
export declare var ListTagsForResource: StaticOperationSchema;
|
|
92
|
-
export declare var PutRecommendationFeedback: StaticOperationSchema;
|
|
93
|
-
export declare var TagResource: StaticOperationSchema;
|
|
94
|
-
export declare var UntagResource: StaticOperationSchema;
|
|
1
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
|
+
export declare var AssociateRepositoryRequest$: StaticStructureSchema;
|
|
4
|
+
export declare var AssociateRepositoryResponse$: StaticStructureSchema;
|
|
5
|
+
export declare var BranchDiffSourceCodeType$: StaticStructureSchema;
|
|
6
|
+
export declare var CodeArtifacts$: StaticStructureSchema;
|
|
7
|
+
export declare var CodeCommitRepository$: StaticStructureSchema;
|
|
8
|
+
export declare var CodeReview$: StaticStructureSchema;
|
|
9
|
+
export declare var CodeReviewSummary$: StaticStructureSchema;
|
|
10
|
+
export declare var CodeReviewType$: StaticStructureSchema;
|
|
11
|
+
export declare var CommitDiffSourceCodeType$: StaticStructureSchema;
|
|
12
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
13
|
+
export declare var CreateCodeReviewRequest$: StaticStructureSchema;
|
|
14
|
+
export declare var CreateCodeReviewResponse$: StaticStructureSchema;
|
|
15
|
+
export declare var DescribeCodeReviewRequest$: StaticStructureSchema;
|
|
16
|
+
export declare var DescribeCodeReviewResponse$: StaticStructureSchema;
|
|
17
|
+
export declare var DescribeRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var DescribeRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var DescribeRepositoryAssociationRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeRepositoryAssociationResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var DisassociateRepositoryRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var DisassociateRepositoryResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var EventInfo$: StaticStructureSchema;
|
|
24
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
25
|
+
export declare var KMSKeyDetails$: StaticStructureSchema;
|
|
26
|
+
export declare var ListCodeReviewsRequest$: StaticStructureSchema;
|
|
27
|
+
export declare var ListCodeReviewsResponse$: StaticStructureSchema;
|
|
28
|
+
export declare var ListRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
29
|
+
export declare var ListRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
30
|
+
export declare var ListRecommendationsRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var ListRecommendationsResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var ListRepositoryAssociationsRequest$: StaticStructureSchema;
|
|
33
|
+
export declare var ListRepositoryAssociationsResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
35
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
36
|
+
export declare var Metrics$: StaticStructureSchema;
|
|
37
|
+
export declare var MetricsSummary$: StaticStructureSchema;
|
|
38
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
39
|
+
export declare var PutRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var PutRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
41
|
+
export declare var RecommendationFeedback$: StaticStructureSchema;
|
|
42
|
+
export declare var RecommendationFeedbackSummary$: StaticStructureSchema;
|
|
43
|
+
export declare var RecommendationSummary$: StaticStructureSchema;
|
|
44
|
+
export declare var Repository$: StaticStructureSchema;
|
|
45
|
+
export declare var RepositoryAnalysis$: StaticStructureSchema;
|
|
46
|
+
export declare var RepositoryAssociation$: StaticStructureSchema;
|
|
47
|
+
export declare var RepositoryAssociationSummary$: StaticStructureSchema;
|
|
48
|
+
export declare var RepositoryHeadSourceCodeType$: StaticStructureSchema;
|
|
49
|
+
export declare var RequestMetadata$: StaticStructureSchema;
|
|
50
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
51
|
+
export declare var RuleMetadata$: StaticStructureSchema;
|
|
52
|
+
export declare var S3BucketRepository$: StaticStructureSchema;
|
|
53
|
+
export declare var S3Repository$: StaticStructureSchema;
|
|
54
|
+
export declare var S3RepositoryDetails$: StaticStructureSchema;
|
|
55
|
+
export declare var SourceCodeType$: StaticStructureSchema;
|
|
56
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var ThirdPartySourceRepository$: StaticStructureSchema;
|
|
59
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
60
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
61
|
+
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
62
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
63
|
+
export declare var CodeGuruReviewerServiceException$: StaticErrorSchema;
|
|
64
|
+
export declare var AssociateRepository$: StaticOperationSchema;
|
|
65
|
+
export declare var CreateCodeReview$: StaticOperationSchema;
|
|
66
|
+
export declare var DescribeCodeReview$: StaticOperationSchema;
|
|
67
|
+
export declare var DescribeRecommendationFeedback$: StaticOperationSchema;
|
|
68
|
+
export declare var DescribeRepositoryAssociation$: StaticOperationSchema;
|
|
69
|
+
export declare var DisassociateRepository$: StaticOperationSchema;
|
|
70
|
+
export declare var ListCodeReviews$: StaticOperationSchema;
|
|
71
|
+
export declare var ListRecommendationFeedback$: StaticOperationSchema;
|
|
72
|
+
export declare var ListRecommendations$: StaticOperationSchema;
|
|
73
|
+
export declare var ListRepositoryAssociations$: StaticOperationSchema;
|
|
74
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
75
|
+
export declare var PutRecommendationFeedback$: StaticOperationSchema;
|
|
76
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
77
|
+
export declare var UntagResource$: StaticOperationSchema;
|
|
@@ -29,13 +29,10 @@ import {
|
|
|
29
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
-
ClientProtocol,
|
|
33
32
|
Decoder as __Decoder,
|
|
34
33
|
Encoder as __Encoder,
|
|
35
34
|
HashConstructor as __HashConstructor,
|
|
36
35
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
-
HttpRequest,
|
|
38
|
-
HttpResponse,
|
|
39
36
|
Logger as __Logger,
|
|
40
37
|
Provider as __Provider,
|
|
41
38
|
StreamCollector as __StreamCollector,
|
|
@@ -165,7 +162,6 @@ export interface ClientDefaults
|
|
|
165
162
|
retryMode?: string | __Provider<string>;
|
|
166
163
|
logger?: __Logger;
|
|
167
164
|
extensions?: RuntimeExtension[];
|
|
168
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
169
165
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
170
166
|
}
|
|
171
167
|
export type CodeGuruReviewerClientConfigType = Partial<
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { CodeGuruReviewerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
7
8
|
export * from "./pagination";
|
|
8
9
|
export * from "./waiters";
|
|
9
10
|
export * from "./models/enums";
|
|
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (
|
|
|
28
28
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
29
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
30
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
31
|
-
apiVersion: string;
|
|
32
31
|
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
33
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
34
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
35
43
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (
|
|
|
40
48
|
profile?: string;
|
|
41
49
|
logger: import("@smithy/types").Logger;
|
|
42
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
-
import("@smithy/types").HttpRequest,
|
|
45
|
-
import("@smithy/types").HttpResponse
|
|
46
|
-
>;
|
|
47
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
52
|
userAgentAppId?:
|
|
49
53
|
| string
|
|
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (
|
|
|
28
28
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
-
apiVersion: string;
|
|
32
31
|
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
33
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
34
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
35
43
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (
|
|
|
40
48
|
profile?: string;
|
|
41
49
|
logger: import("@smithy/types").Logger;
|
|
42
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
-
import("@smithy/types").HttpRequest,
|
|
45
|
-
import("@smithy/types").HttpResponse
|
|
46
|
-
>;
|
|
47
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
52
|
retryStrategy?:
|
|
49
53
|
| import("@smithy/types").RetryStrategy
|
|
@@ -10,8 +10,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
10
|
| Record<string, unknown>
|
|
11
11
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
-
apiVersion: string;
|
|
14
13
|
cacheMiddleware?: boolean;
|
|
14
|
+
protocol:
|
|
15
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
apiVersion: string;
|
|
15
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
16
24
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
17
25
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -39,10 +47,6 @@ export declare const getRuntimeConfig: (
|
|
|
39
47
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
48
|
logger: import("@smithy/types").Logger;
|
|
41
49
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
-
import("@smithy/types").HttpRequest,
|
|
44
|
-
import("@smithy/types").HttpResponse
|
|
45
|
-
>;
|
|
46
50
|
defaultsMode:
|
|
47
51
|
| import("@smithy/smithy-client").DefaultsMode
|
|
48
52
|
| import("@smithy/types").Provider<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient";
|
|
2
3
|
export declare const getRuntimeConfig: (
|
|
3
4
|
config: CodeGuruReviewerClientConfig
|
|
@@ -16,10 +17,14 @@ export declare const getRuntimeConfig: (
|
|
|
16
17
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeGuruReviewerHttpAuthSchemeProvider;
|
|
17
18
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
19
|
logger: import("@smithy/types").Logger;
|
|
19
|
-
protocol:
|
|
20
|
-
import("@smithy/types").
|
|
21
|
-
import("@smithy/types").
|
|
22
|
-
|
|
20
|
+
protocol:
|
|
21
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
22
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
23
|
+
| typeof AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
[setting: string]: unknown;
|
|
26
|
+
defaultNamespace?: string;
|
|
27
|
+
};
|
|
23
28
|
serviceId: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,99 +1,81 @@
|
|
|
1
1
|
import {
|
|
2
2
|
StaticErrorSchema,
|
|
3
|
-
StaticListSchema,
|
|
4
3
|
StaticOperationSchema,
|
|
5
4
|
StaticStructureSchema,
|
|
6
5
|
} from "@smithy/types";
|
|
7
|
-
export declare var AccessDeniedException
|
|
8
|
-
export declare var AssociateRepositoryRequest
|
|
9
|
-
export declare var AssociateRepositoryResponse
|
|
10
|
-
export declare var BranchDiffSourceCodeType
|
|
11
|
-
export declare var CodeArtifacts
|
|
12
|
-
export declare var CodeCommitRepository
|
|
13
|
-
export declare var CodeReview
|
|
14
|
-
export declare var CodeReviewSummary
|
|
15
|
-
export declare var CodeReviewType
|
|
16
|
-
export declare var CommitDiffSourceCodeType
|
|
17
|
-
export declare var ConflictException
|
|
18
|
-
export declare var CreateCodeReviewRequest
|
|
19
|
-
export declare var CreateCodeReviewResponse
|
|
20
|
-
export declare var DescribeCodeReviewRequest
|
|
21
|
-
export declare var DescribeCodeReviewResponse
|
|
22
|
-
export declare var DescribeRecommendationFeedbackRequest
|
|
23
|
-
export declare var DescribeRecommendationFeedbackResponse
|
|
24
|
-
export declare var DescribeRepositoryAssociationRequest
|
|
25
|
-
export declare var DescribeRepositoryAssociationResponse
|
|
26
|
-
export declare var DisassociateRepositoryRequest
|
|
27
|
-
export declare var DisassociateRepositoryResponse
|
|
28
|
-
export declare var EventInfo
|
|
29
|
-
export declare var InternalServerException
|
|
30
|
-
export declare var KMSKeyDetails
|
|
31
|
-
export declare var ListCodeReviewsRequest
|
|
32
|
-
export declare var ListCodeReviewsResponse
|
|
33
|
-
export declare var ListRecommendationFeedbackRequest
|
|
34
|
-
export declare var ListRecommendationFeedbackResponse
|
|
35
|
-
export declare var ListRecommendationsRequest
|
|
36
|
-
export declare var ListRecommendationsResponse
|
|
37
|
-
export declare var ListRepositoryAssociationsRequest
|
|
38
|
-
export declare var ListRepositoryAssociationsResponse
|
|
39
|
-
export declare var ListTagsForResourceRequest
|
|
40
|
-
export declare var ListTagsForResourceResponse
|
|
41
|
-
export declare var Metrics
|
|
42
|
-
export declare var MetricsSummary
|
|
43
|
-
export declare var NotFoundException
|
|
44
|
-
export declare var PutRecommendationFeedbackRequest
|
|
45
|
-
export declare var PutRecommendationFeedbackResponse
|
|
46
|
-
export declare var RecommendationFeedback
|
|
47
|
-
export declare var RecommendationFeedbackSummary
|
|
48
|
-
export declare var RecommendationSummary
|
|
49
|
-
export declare var Repository
|
|
50
|
-
export declare var RepositoryAnalysis
|
|
51
|
-
export declare var RepositoryAssociation
|
|
52
|
-
export declare var RepositoryAssociationSummary
|
|
53
|
-
export declare var RepositoryHeadSourceCodeType
|
|
54
|
-
export declare var RequestMetadata
|
|
55
|
-
export declare var ResourceNotFoundException
|
|
56
|
-
export declare var RuleMetadata
|
|
57
|
-
export declare var S3BucketRepository
|
|
58
|
-
export declare var S3Repository
|
|
59
|
-
export declare var S3RepositoryDetails
|
|
60
|
-
export declare var SourceCodeType
|
|
61
|
-
export declare var TagResourceRequest
|
|
62
|
-
export declare var TagResourceResponse
|
|
63
|
-
export declare var ThirdPartySourceRepository
|
|
64
|
-
export declare var ThrottlingException
|
|
65
|
-
export declare var UntagResourceRequest
|
|
66
|
-
export declare var UntagResourceResponse
|
|
67
|
-
export declare var ValidationException
|
|
68
|
-
export declare var CodeGuruReviewerServiceException
|
|
69
|
-
export declare var
|
|
70
|
-
export declare var
|
|
71
|
-
export declare var
|
|
72
|
-
export declare var
|
|
73
|
-
export declare var
|
|
74
|
-
export declare var
|
|
75
|
-
export declare var
|
|
76
|
-
export declare var
|
|
77
|
-
export declare var
|
|
78
|
-
export declare var
|
|
79
|
-
export declare var
|
|
80
|
-
export declare var
|
|
81
|
-
export declare var
|
|
82
|
-
export declare var
|
|
83
|
-
export declare var TagKeyList: number;
|
|
84
|
-
export declare var UserIds: number;
|
|
85
|
-
export declare var TagMap: number;
|
|
86
|
-
export declare var AssociateRepository: StaticOperationSchema;
|
|
87
|
-
export declare var CreateCodeReview: StaticOperationSchema;
|
|
88
|
-
export declare var DescribeCodeReview: StaticOperationSchema;
|
|
89
|
-
export declare var DescribeRecommendationFeedback: StaticOperationSchema;
|
|
90
|
-
export declare var DescribeRepositoryAssociation: StaticOperationSchema;
|
|
91
|
-
export declare var DisassociateRepository: StaticOperationSchema;
|
|
92
|
-
export declare var ListCodeReviews: StaticOperationSchema;
|
|
93
|
-
export declare var ListRecommendationFeedback: StaticOperationSchema;
|
|
94
|
-
export declare var ListRecommendations: StaticOperationSchema;
|
|
95
|
-
export declare var ListRepositoryAssociations: StaticOperationSchema;
|
|
96
|
-
export declare var ListTagsForResource: StaticOperationSchema;
|
|
97
|
-
export declare var PutRecommendationFeedback: StaticOperationSchema;
|
|
98
|
-
export declare var TagResource: StaticOperationSchema;
|
|
99
|
-
export declare var UntagResource: StaticOperationSchema;
|
|
6
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
7
|
+
export declare var AssociateRepositoryRequest$: StaticStructureSchema;
|
|
8
|
+
export declare var AssociateRepositoryResponse$: StaticStructureSchema;
|
|
9
|
+
export declare var BranchDiffSourceCodeType$: StaticStructureSchema;
|
|
10
|
+
export declare var CodeArtifacts$: StaticStructureSchema;
|
|
11
|
+
export declare var CodeCommitRepository$: StaticStructureSchema;
|
|
12
|
+
export declare var CodeReview$: StaticStructureSchema;
|
|
13
|
+
export declare var CodeReviewSummary$: StaticStructureSchema;
|
|
14
|
+
export declare var CodeReviewType$: StaticStructureSchema;
|
|
15
|
+
export declare var CommitDiffSourceCodeType$: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
17
|
+
export declare var CreateCodeReviewRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var CreateCodeReviewResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var DescribeCodeReviewRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeCodeReviewResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var DescribeRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var DescribeRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var DescribeRepositoryAssociationRequest$: StaticStructureSchema;
|
|
24
|
+
export declare var DescribeRepositoryAssociationResponse$: StaticStructureSchema;
|
|
25
|
+
export declare var DisassociateRepositoryRequest$: StaticStructureSchema;
|
|
26
|
+
export declare var DisassociateRepositoryResponse$: StaticStructureSchema;
|
|
27
|
+
export declare var EventInfo$: StaticStructureSchema;
|
|
28
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
29
|
+
export declare var KMSKeyDetails$: StaticStructureSchema;
|
|
30
|
+
export declare var ListCodeReviewsRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var ListCodeReviewsResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var ListRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
33
|
+
export declare var ListRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var ListRecommendationsRequest$: StaticStructureSchema;
|
|
35
|
+
export declare var ListRecommendationsResponse$: StaticStructureSchema;
|
|
36
|
+
export declare var ListRepositoryAssociationsRequest$: StaticStructureSchema;
|
|
37
|
+
export declare var ListRepositoryAssociationsResponse$: StaticStructureSchema;
|
|
38
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
39
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
40
|
+
export declare var Metrics$: StaticStructureSchema;
|
|
41
|
+
export declare var MetricsSummary$: StaticStructureSchema;
|
|
42
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
43
|
+
export declare var PutRecommendationFeedbackRequest$: StaticStructureSchema;
|
|
44
|
+
export declare var PutRecommendationFeedbackResponse$: StaticStructureSchema;
|
|
45
|
+
export declare var RecommendationFeedback$: StaticStructureSchema;
|
|
46
|
+
export declare var RecommendationFeedbackSummary$: StaticStructureSchema;
|
|
47
|
+
export declare var RecommendationSummary$: StaticStructureSchema;
|
|
48
|
+
export declare var Repository$: StaticStructureSchema;
|
|
49
|
+
export declare var RepositoryAnalysis$: StaticStructureSchema;
|
|
50
|
+
export declare var RepositoryAssociation$: StaticStructureSchema;
|
|
51
|
+
export declare var RepositoryAssociationSummary$: StaticStructureSchema;
|
|
52
|
+
export declare var RepositoryHeadSourceCodeType$: StaticStructureSchema;
|
|
53
|
+
export declare var RequestMetadata$: StaticStructureSchema;
|
|
54
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
55
|
+
export declare var RuleMetadata$: StaticStructureSchema;
|
|
56
|
+
export declare var S3BucketRepository$: StaticStructureSchema;
|
|
57
|
+
export declare var S3Repository$: StaticStructureSchema;
|
|
58
|
+
export declare var S3RepositoryDetails$: StaticStructureSchema;
|
|
59
|
+
export declare var SourceCodeType$: StaticStructureSchema;
|
|
60
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
61
|
+
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
62
|
+
export declare var ThirdPartySourceRepository$: StaticStructureSchema;
|
|
63
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
64
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
66
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
67
|
+
export declare var CodeGuruReviewerServiceException$: StaticErrorSchema;
|
|
68
|
+
export declare var AssociateRepository$: StaticOperationSchema;
|
|
69
|
+
export declare var CreateCodeReview$: StaticOperationSchema;
|
|
70
|
+
export declare var DescribeCodeReview$: StaticOperationSchema;
|
|
71
|
+
export declare var DescribeRecommendationFeedback$: StaticOperationSchema;
|
|
72
|
+
export declare var DescribeRepositoryAssociation$: StaticOperationSchema;
|
|
73
|
+
export declare var DisassociateRepository$: StaticOperationSchema;
|
|
74
|
+
export declare var ListCodeReviews$: StaticOperationSchema;
|
|
75
|
+
export declare var ListRecommendationFeedback$: StaticOperationSchema;
|
|
76
|
+
export declare var ListRecommendations$: StaticOperationSchema;
|
|
77
|
+
export declare var ListRepositoryAssociations$: StaticOperationSchema;
|
|
78
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
79
|
+
export declare var PutRecommendationFeedback$: StaticOperationSchema;
|
|
80
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
81
|
+
export declare var UntagResource$: StaticOperationSchema;
|