@aws-sdk/client-codeguru-security 3.352.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/LICENSE +201 -0
- package/README.md +316 -0
- package/dist-cjs/CodeGuruSecurity.js +37 -0
- package/dist-cjs/CodeGuruSecurityClient.js +41 -0
- package/dist-cjs/commands/BatchGetFindingsCommand.js +46 -0
- package/dist-cjs/commands/CreateScanCommand.js +46 -0
- package/dist-cjs/commands/CreateUploadUrlCommand.js +47 -0
- package/dist-cjs/commands/GetAccountConfigurationCommand.js +46 -0
- package/dist-cjs/commands/GetFindingsCommand.js +46 -0
- package/dist-cjs/commands/GetMetricsSummaryCommand.js +46 -0
- package/dist-cjs/commands/GetScanCommand.js +46 -0
- package/dist-cjs/commands/ListFindingsMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListScansCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccountConfigurationCommand.js +46 -0
- package/dist-cjs/commands/index.js +16 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/CodeGuruSecurityServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +156 -0
- package/dist-cjs/pagination/GetFindingsPaginator.js +29 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListFindingsMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListScansPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1131 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/CodeGuruSecurity.js +33 -0
- package/dist-es/CodeGuruSecurityClient.js +37 -0
- package/dist-es/commands/BatchGetFindingsCommand.js +42 -0
- package/dist-es/commands/CreateScanCommand.js +42 -0
- package/dist-es/commands/CreateUploadUrlCommand.js +43 -0
- package/dist-es/commands/GetAccountConfigurationCommand.js +42 -0
- package/dist-es/commands/GetFindingsCommand.js +42 -0
- package/dist-es/commands/GetMetricsSummaryCommand.js +42 -0
- package/dist-es/commands/GetScanCommand.js +42 -0
- package/dist-es/commands/ListFindingsMetricsCommand.js +42 -0
- package/dist-es/commands/ListScansCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateAccountConfigurationCommand.js +42 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/CodeGuruSecurityServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +146 -0
- package/dist-es/pagination/GetFindingsPaginator.js +25 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListFindingsMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListScansPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1102 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/CodeGuruSecurity.d.ts +108 -0
- package/dist-types/CodeGuruSecurityClient.d.ts +182 -0
- package/dist-types/commands/BatchGetFindingsCommand.d.ts +154 -0
- package/dist-types/commands/CreateScanCommand.d.ts +108 -0
- package/dist-types/commands/CreateUploadUrlCommand.d.ts +91 -0
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +153 -0
- package/dist-types/commands/GetMetricsSummaryCommand.d.ts +114 -0
- package/dist-types/commands/GetScanCommand.d.ts +93 -0
- package/dist-types/commands/ListFindingsMetricsCommand.d.ts +121 -0
- package/dist-types/commands/ListScansCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
- package/dist-types/commands/TagResourceCommand.d.ts +94 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +94 -0
- package/dist-types/commands/UpdateAccountConfigurationCommand.d.ts +92 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/CodeGuruSecurityServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1114 -0
- package/dist-types/pagination/GetFindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListFindingsMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListScansPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +119 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/CodeGuruSecurity.d.ts +228 -0
- package/dist-types/ts3.4/CodeGuruSecurityClient.d.ts +193 -0
- package/dist-types/ts3.4/commands/BatchGetFindingsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateScanCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateUploadUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetFindingsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMetricsSummaryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetScanCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFindingsMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListScansCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/CodeGuruSecurityServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +340 -0
- package/dist-types/ts3.4/pagination/GetFindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFindingsMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListScansPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
- package/package.json +101 -0
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import {
|
|
26
|
+
Client as __Client,
|
|
27
|
+
DefaultsMode as __DefaultsMode,
|
|
28
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
29
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
30
|
+
} from "@aws-sdk/smithy-client";
|
|
31
|
+
import {
|
|
32
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
33
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider,
|
|
39
|
+
UrlParser as __UrlParser,
|
|
40
|
+
UserAgent as __UserAgent,
|
|
41
|
+
} from "@aws-sdk/types";
|
|
42
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
43
|
+
import {
|
|
44
|
+
Decoder as __Decoder,
|
|
45
|
+
Encoder as __Encoder,
|
|
46
|
+
Provider as __Provider,
|
|
47
|
+
StreamCollector as __StreamCollector,
|
|
48
|
+
} from "@smithy/types";
|
|
49
|
+
import {
|
|
50
|
+
BatchGetFindingsCommandInput,
|
|
51
|
+
BatchGetFindingsCommandOutput,
|
|
52
|
+
} from "./commands/BatchGetFindingsCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateScanCommandInput,
|
|
55
|
+
CreateScanCommandOutput,
|
|
56
|
+
} from "./commands/CreateScanCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateUploadUrlCommandInput,
|
|
59
|
+
CreateUploadUrlCommandOutput,
|
|
60
|
+
} from "./commands/CreateUploadUrlCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetAccountConfigurationCommandInput,
|
|
63
|
+
GetAccountConfigurationCommandOutput,
|
|
64
|
+
} from "./commands/GetAccountConfigurationCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetFindingsCommandInput,
|
|
67
|
+
GetFindingsCommandOutput,
|
|
68
|
+
} from "./commands/GetFindingsCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetMetricsSummaryCommandInput,
|
|
71
|
+
GetMetricsSummaryCommandOutput,
|
|
72
|
+
} from "./commands/GetMetricsSummaryCommand";
|
|
73
|
+
import {
|
|
74
|
+
GetScanCommandInput,
|
|
75
|
+
GetScanCommandOutput,
|
|
76
|
+
} from "./commands/GetScanCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListFindingsMetricsCommandInput,
|
|
79
|
+
ListFindingsMetricsCommandOutput,
|
|
80
|
+
} from "./commands/ListFindingsMetricsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListScansCommandInput,
|
|
83
|
+
ListScansCommandOutput,
|
|
84
|
+
} from "./commands/ListScansCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListTagsForResourceCommandInput,
|
|
87
|
+
ListTagsForResourceCommandOutput,
|
|
88
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
TagResourceCommandInput,
|
|
91
|
+
TagResourceCommandOutput,
|
|
92
|
+
} from "./commands/TagResourceCommand";
|
|
93
|
+
import {
|
|
94
|
+
UntagResourceCommandInput,
|
|
95
|
+
UntagResourceCommandOutput,
|
|
96
|
+
} from "./commands/UntagResourceCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateAccountConfigurationCommandInput,
|
|
99
|
+
UpdateAccountConfigurationCommandOutput,
|
|
100
|
+
} from "./commands/UpdateAccountConfigurationCommand";
|
|
101
|
+
import {
|
|
102
|
+
ClientInputEndpointParameters,
|
|
103
|
+
ClientResolvedEndpointParameters,
|
|
104
|
+
EndpointParameters,
|
|
105
|
+
} from "./endpoint/EndpointParameters";
|
|
106
|
+
export { __Client };
|
|
107
|
+
export type ServiceInputTypes =
|
|
108
|
+
| BatchGetFindingsCommandInput
|
|
109
|
+
| CreateScanCommandInput
|
|
110
|
+
| CreateUploadUrlCommandInput
|
|
111
|
+
| GetAccountConfigurationCommandInput
|
|
112
|
+
| GetFindingsCommandInput
|
|
113
|
+
| GetMetricsSummaryCommandInput
|
|
114
|
+
| GetScanCommandInput
|
|
115
|
+
| ListFindingsMetricsCommandInput
|
|
116
|
+
| ListScansCommandInput
|
|
117
|
+
| ListTagsForResourceCommandInput
|
|
118
|
+
| TagResourceCommandInput
|
|
119
|
+
| UntagResourceCommandInput
|
|
120
|
+
| UpdateAccountConfigurationCommandInput;
|
|
121
|
+
export type ServiceOutputTypes =
|
|
122
|
+
| BatchGetFindingsCommandOutput
|
|
123
|
+
| CreateScanCommandOutput
|
|
124
|
+
| CreateUploadUrlCommandOutput
|
|
125
|
+
| GetAccountConfigurationCommandOutput
|
|
126
|
+
| GetFindingsCommandOutput
|
|
127
|
+
| GetMetricsSummaryCommandOutput
|
|
128
|
+
| GetScanCommandOutput
|
|
129
|
+
| ListFindingsMetricsCommandOutput
|
|
130
|
+
| ListScansCommandOutput
|
|
131
|
+
| ListTagsForResourceCommandOutput
|
|
132
|
+
| TagResourceCommandOutput
|
|
133
|
+
| UntagResourceCommandOutput
|
|
134
|
+
| UpdateAccountConfigurationCommandOutput;
|
|
135
|
+
export interface ClientDefaults
|
|
136
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
137
|
+
requestHandler?: __HttpHandler;
|
|
138
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
139
|
+
urlParser?: __UrlParser;
|
|
140
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
base64Decoder?: __Decoder;
|
|
143
|
+
base64Encoder?: __Encoder;
|
|
144
|
+
utf8Decoder?: __Decoder;
|
|
145
|
+
utf8Encoder?: __Encoder;
|
|
146
|
+
runtime?: string;
|
|
147
|
+
disableHostPrefix?: boolean;
|
|
148
|
+
serviceId?: string;
|
|
149
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
150
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
151
|
+
region?: string | __Provider<string>;
|
|
152
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
153
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
154
|
+
maxAttempts?: number | __Provider<number>;
|
|
155
|
+
retryMode?: string | __Provider<string>;
|
|
156
|
+
logger?: __Logger;
|
|
157
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
158
|
+
}
|
|
159
|
+
export type CodeGuruSecurityClientConfigType = Partial<
|
|
160
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
161
|
+
> &
|
|
162
|
+
ClientDefaults &
|
|
163
|
+
RegionInputConfig &
|
|
164
|
+
EndpointInputConfig<EndpointParameters> &
|
|
165
|
+
RetryInputConfig &
|
|
166
|
+
HostHeaderInputConfig &
|
|
167
|
+
AwsAuthInputConfig &
|
|
168
|
+
UserAgentInputConfig &
|
|
169
|
+
ClientInputEndpointParameters;
|
|
170
|
+
export interface CodeGuruSecurityClientConfig
|
|
171
|
+
extends CodeGuruSecurityClientConfigType {}
|
|
172
|
+
export type CodeGuruSecurityClientResolvedConfigType =
|
|
173
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
174
|
+
Required<ClientDefaults> &
|
|
175
|
+
RegionResolvedConfig &
|
|
176
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
177
|
+
RetryResolvedConfig &
|
|
178
|
+
HostHeaderResolvedConfig &
|
|
179
|
+
AwsAuthResolvedConfig &
|
|
180
|
+
UserAgentResolvedConfig &
|
|
181
|
+
ClientResolvedEndpointParameters;
|
|
182
|
+
export interface CodeGuruSecurityClientResolvedConfig
|
|
183
|
+
extends CodeGuruSecurityClientResolvedConfigType {}
|
|
184
|
+
export declare class CodeGuruSecurityClient extends __Client<
|
|
185
|
+
__HttpHandlerOptions,
|
|
186
|
+
ServiceInputTypes,
|
|
187
|
+
ServiceOutputTypes,
|
|
188
|
+
CodeGuruSecurityClientResolvedConfig
|
|
189
|
+
> {
|
|
190
|
+
readonly config: CodeGuruSecurityClientResolvedConfig;
|
|
191
|
+
constructor(configuration: CodeGuruSecurityClientConfig);
|
|
192
|
+
destroy(): void;
|
|
193
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
BatchGetFindingsRequest,
|
|
16
|
+
BatchGetFindingsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface BatchGetFindingsCommandInput extends BatchGetFindingsRequest {}
|
|
20
|
+
export interface BatchGetFindingsCommandOutput
|
|
21
|
+
extends BatchGetFindingsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class BatchGetFindingsCommand extends $Command<
|
|
24
|
+
BatchGetFindingsCommandInput,
|
|
25
|
+
BatchGetFindingsCommandOutput,
|
|
26
|
+
CodeGuruSecurityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchGetFindingsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: BatchGetFindingsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchGetFindingsCommandInput, BatchGetFindingsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import { CreateScanRequest, CreateScanResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateScanCommandInput extends CreateScanRequest {}
|
|
17
|
+
export interface CreateScanCommandOutput
|
|
18
|
+
extends CreateScanResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateScanCommand extends $Command<
|
|
21
|
+
CreateScanCommandInput,
|
|
22
|
+
CreateScanCommandOutput,
|
|
23
|
+
CodeGuruSecurityClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateScanCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateScanCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateScanCommandInput, CreateScanCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateUploadUrlRequest,
|
|
16
|
+
CreateUploadUrlResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateUploadUrlCommandInput extends CreateUploadUrlRequest {}
|
|
20
|
+
export interface CreateUploadUrlCommandOutput
|
|
21
|
+
extends CreateUploadUrlResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateUploadUrlCommand extends $Command<
|
|
24
|
+
CreateUploadUrlCommandInput,
|
|
25
|
+
CreateUploadUrlCommandOutput,
|
|
26
|
+
CodeGuruSecurityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateUploadUrlCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateUploadUrlCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateUploadUrlCommandInput, CreateUploadUrlCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
GetAccountConfigurationRequest,
|
|
16
|
+
GetAccountConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetAccountConfigurationCommandInput
|
|
20
|
+
extends GetAccountConfigurationRequest {}
|
|
21
|
+
export interface GetAccountConfigurationCommandOutput
|
|
22
|
+
extends GetAccountConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetAccountConfigurationCommand extends $Command<
|
|
25
|
+
GetAccountConfigurationCommandInput,
|
|
26
|
+
GetAccountConfigurationCommandOutput,
|
|
27
|
+
CodeGuruSecurityClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetAccountConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetAccountConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetAccountConfigurationCommandInput,
|
|
38
|
+
GetAccountConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import { GetFindingsRequest, GetFindingsResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetFindingsCommandInput extends GetFindingsRequest {}
|
|
17
|
+
export interface GetFindingsCommandOutput
|
|
18
|
+
extends GetFindingsResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetFindingsCommand extends $Command<
|
|
21
|
+
GetFindingsCommandInput,
|
|
22
|
+
GetFindingsCommandOutput,
|
|
23
|
+
CodeGuruSecurityClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetFindingsCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetFindingsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetFindingsCommandInput, GetFindingsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
GetMetricsSummaryRequest,
|
|
16
|
+
GetMetricsSummaryResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetMetricsSummaryCommandInput
|
|
20
|
+
extends GetMetricsSummaryRequest {}
|
|
21
|
+
export interface GetMetricsSummaryCommandOutput
|
|
22
|
+
extends GetMetricsSummaryResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetMetricsSummaryCommand extends $Command<
|
|
25
|
+
GetMetricsSummaryCommandInput,
|
|
26
|
+
GetMetricsSummaryCommandOutput,
|
|
27
|
+
CodeGuruSecurityClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetMetricsSummaryCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetMetricsSummaryCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<GetMetricsSummaryCommandInput, GetMetricsSummaryCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import { GetScanRequest, GetScanResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetScanCommandInput extends GetScanRequest {}
|
|
17
|
+
export interface GetScanCommandOutput
|
|
18
|
+
extends GetScanResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetScanCommand extends $Command<
|
|
21
|
+
GetScanCommandInput,
|
|
22
|
+
GetScanCommandOutput,
|
|
23
|
+
CodeGuruSecurityClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetScanCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetScanCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetScanCommandInput, GetScanCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
ListFindingsMetricsRequest,
|
|
16
|
+
ListFindingsMetricsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListFindingsMetricsCommandInput
|
|
20
|
+
extends ListFindingsMetricsRequest {}
|
|
21
|
+
export interface ListFindingsMetricsCommandOutput
|
|
22
|
+
extends ListFindingsMetricsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListFindingsMetricsCommand extends $Command<
|
|
25
|
+
ListFindingsMetricsCommandInput,
|
|
26
|
+
ListFindingsMetricsCommandOutput,
|
|
27
|
+
CodeGuruSecurityClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListFindingsMetricsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListFindingsMetricsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListFindingsMetricsCommandInput, ListFindingsMetricsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import { ListScansRequest, ListScansResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListScansCommandInput extends ListScansRequest {}
|
|
17
|
+
export interface ListScansCommandOutput
|
|
18
|
+
extends ListScansResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListScansCommand extends $Command<
|
|
21
|
+
ListScansCommandInput,
|
|
22
|
+
ListScansCommandOutput,
|
|
23
|
+
CodeGuruSecurityClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListScansCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListScansCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListScansCommandInput, ListScansCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
ListTagsForResourceRequest,
|
|
16
|
+
ListTagsForResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceRequest {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
CodeGuruSecurityClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
17
|
+
export interface TagResourceCommandOutput
|
|
18
|
+
extends TagResourceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class TagResourceCommand extends $Command<
|
|
21
|
+
TagResourceCommandInput,
|
|
22
|
+
TagResourceCommandOutput,
|
|
23
|
+
CodeGuruSecurityClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: TagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: TagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeGuruSecurityClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeGuruSecurityClient";
|
|
14
|
+
import {
|
|
15
|
+
UntagResourceRequest,
|
|
16
|
+
UntagResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
20
|
+
export interface UntagResourceCommandOutput
|
|
21
|
+
extends UntagResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UntagResourceCommand extends $Command<
|
|
24
|
+
UntagResourceCommandInput,
|
|
25
|
+
UntagResourceCommandOutput,
|
|
26
|
+
CodeGuruSecurityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UntagResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeGuruSecurityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|