|
1 | 1 | import {
|
2 |
| - CreateAnalyzerRequest, |
3 |
| - CreateAnalyzerResponse, |
4 |
| - CreateArchiveRuleRequest, |
5 |
| - DeleteAnalyzerRequest, |
6 |
| - DeleteArchiveRuleRequest, |
7 |
| - GetAnalyzedResourceRequest, |
8 |
| - GetAnalyzedResourceResponse, |
9 |
| - GetAnalyzerRequest, |
10 |
| - GetAnalyzerResponse, |
11 |
| - GetArchiveRuleRequest, |
12 |
| - GetArchiveRuleResponse, |
13 |
| - GetFindingRequest, |
14 |
| - GetFindingResponse, |
15 |
| - ListAnalyzedResourcesRequest, |
16 |
| - ListAnalyzedResourcesResponse, |
17 |
| - ListAnalyzersRequest, |
18 |
| - ListAnalyzersResponse, |
19 |
| - ListArchiveRulesRequest, |
20 |
| - ListArchiveRulesResponse, |
21 |
| - ListFindingsRequest, |
22 |
| - ListFindingsResponse, |
23 |
| - ListTagsForResourceRequest, |
24 |
| - ListTagsForResourceResponse, |
25 |
| - StartResourceScanRequest, |
26 |
| - TagResourceRequest, |
27 |
| - TagResourceResponse, |
28 |
| - UntagResourceRequest, |
29 |
| - UntagResourceResponse, |
30 |
| - UpdateArchiveRuleRequest, |
31 |
| - UpdateFindingsRequest |
32 |
| -} from "./models/index"; |
| 2 | + CreateAnalyzerCommandInput, |
| 3 | + CreateAnalyzerCommandOutput |
| 4 | +} from "./commands/CreateAnalyzerCommand"; |
| 5 | +import { |
| 6 | + CreateArchiveRuleCommandInput, |
| 7 | + CreateArchiveRuleCommandOutput |
| 8 | +} from "./commands/CreateArchiveRuleCommand"; |
| 9 | +import { |
| 10 | + DeleteAnalyzerCommandInput, |
| 11 | + DeleteAnalyzerCommandOutput |
| 12 | +} from "./commands/DeleteAnalyzerCommand"; |
| 13 | +import { |
| 14 | + DeleteArchiveRuleCommandInput, |
| 15 | + DeleteArchiveRuleCommandOutput |
| 16 | +} from "./commands/DeleteArchiveRuleCommand"; |
| 17 | +import { |
| 18 | + GetAnalyzedResourceCommandInput, |
| 19 | + GetAnalyzedResourceCommandOutput |
| 20 | +} from "./commands/GetAnalyzedResourceCommand"; |
| 21 | +import { |
| 22 | + GetAnalyzerCommandInput, |
| 23 | + GetAnalyzerCommandOutput |
| 24 | +} from "./commands/GetAnalyzerCommand"; |
| 25 | +import { |
| 26 | + GetArchiveRuleCommandInput, |
| 27 | + GetArchiveRuleCommandOutput |
| 28 | +} from "./commands/GetArchiveRuleCommand"; |
| 29 | +import { |
| 30 | + GetFindingCommandInput, |
| 31 | + GetFindingCommandOutput |
| 32 | +} from "./commands/GetFindingCommand"; |
| 33 | +import { |
| 34 | + ListAnalyzedResourcesCommandInput, |
| 35 | + ListAnalyzedResourcesCommandOutput |
| 36 | +} from "./commands/ListAnalyzedResourcesCommand"; |
| 37 | +import { |
| 38 | + ListAnalyzersCommandInput, |
| 39 | + ListAnalyzersCommandOutput |
| 40 | +} from "./commands/ListAnalyzersCommand"; |
| 41 | +import { |
| 42 | + ListArchiveRulesCommandInput, |
| 43 | + ListArchiveRulesCommandOutput |
| 44 | +} from "./commands/ListArchiveRulesCommand"; |
| 45 | +import { |
| 46 | + ListFindingsCommandInput, |
| 47 | + ListFindingsCommandOutput |
| 48 | +} from "./commands/ListFindingsCommand"; |
| 49 | +import { |
| 50 | + ListTagsForResourceCommandInput, |
| 51 | + ListTagsForResourceCommandOutput |
| 52 | +} from "./commands/ListTagsForResourceCommand"; |
| 53 | +import { |
| 54 | + StartResourceScanCommandInput, |
| 55 | + StartResourceScanCommandOutput |
| 56 | +} from "./commands/StartResourceScanCommand"; |
| 57 | +import { |
| 58 | + TagResourceCommandInput, |
| 59 | + TagResourceCommandOutput |
| 60 | +} from "./commands/TagResourceCommand"; |
| 61 | +import { |
| 62 | + UntagResourceCommandInput, |
| 63 | + UntagResourceCommandOutput |
| 64 | +} from "./commands/UntagResourceCommand"; |
| 65 | +import { |
| 66 | + UpdateArchiveRuleCommandInput, |
| 67 | + UpdateArchiveRuleCommandOutput |
| 68 | +} from "./commands/UpdateArchiveRuleCommand"; |
| 69 | +import { |
| 70 | + UpdateFindingsCommandInput, |
| 71 | + UpdateFindingsCommandOutput |
| 72 | +} from "./commands/UpdateFindingsCommand"; |
33 | 73 | import { ClientDefaultValues as __ClientDefaultValues } from "./runtimeConfig";
|
34 | 74 | import {
|
35 | 75 | EndpointsInputConfig,
|
@@ -77,46 +117,50 @@ import {
|
77 | 117 | Encoder as __Encoder,
|
78 | 118 | HashConstructor as __HashConstructor,
|
79 | 119 | HttpHandlerOptions as __HttpHandlerOptions,
|
80 |
| - MetadataBearer as __MetadataBearer, |
81 | 120 | Provider as __Provider,
|
82 | 121 | StreamCollector as __StreamCollector,
|
83 | 122 | UrlParser as __UrlParser
|
84 | 123 | } from "@aws-sdk/types";
|
85 | 124 |
|
86 | 125 | export type ServiceInputTypes =
|
87 |
| - | CreateAnalyzerRequest |
88 |
| - | CreateArchiveRuleRequest |
89 |
| - | DeleteAnalyzerRequest |
90 |
| - | DeleteArchiveRuleRequest |
91 |
| - | GetAnalyzedResourceRequest |
92 |
| - | GetAnalyzerRequest |
93 |
| - | GetArchiveRuleRequest |
94 |
| - | GetFindingRequest |
95 |
| - | ListAnalyzedResourcesRequest |
96 |
| - | ListAnalyzersRequest |
97 |
| - | ListArchiveRulesRequest |
98 |
| - | ListFindingsRequest |
99 |
| - | ListTagsForResourceRequest |
100 |
| - | StartResourceScanRequest |
101 |
| - | TagResourceRequest |
102 |
| - | UntagResourceRequest |
103 |
| - | UpdateArchiveRuleRequest |
104 |
| - | UpdateFindingsRequest; |
| 126 | + | CreateAnalyzerCommandInput |
| 127 | + | CreateArchiveRuleCommandInput |
| 128 | + | DeleteAnalyzerCommandInput |
| 129 | + | DeleteArchiveRuleCommandInput |
| 130 | + | GetAnalyzedResourceCommandInput |
| 131 | + | GetAnalyzerCommandInput |
| 132 | + | GetArchiveRuleCommandInput |
| 133 | + | GetFindingCommandInput |
| 134 | + | ListAnalyzedResourcesCommandInput |
| 135 | + | ListAnalyzersCommandInput |
| 136 | + | ListArchiveRulesCommandInput |
| 137 | + | ListFindingsCommandInput |
| 138 | + | ListTagsForResourceCommandInput |
| 139 | + | StartResourceScanCommandInput |
| 140 | + | TagResourceCommandInput |
| 141 | + | UntagResourceCommandInput |
| 142 | + | UpdateArchiveRuleCommandInput |
| 143 | + | UpdateFindingsCommandInput; |
105 | 144 |
|
106 | 145 | export type ServiceOutputTypes =
|
107 |
| - | __MetadataBearer |
108 |
| - | CreateAnalyzerResponse |
109 |
| - | GetAnalyzedResourceResponse |
110 |
| - | GetAnalyzerResponse |
111 |
| - | GetArchiveRuleResponse |
112 |
| - | GetFindingResponse |
113 |
| - | ListAnalyzedResourcesResponse |
114 |
| - | ListAnalyzersResponse |
115 |
| - | ListArchiveRulesResponse |
116 |
| - | ListFindingsResponse |
117 |
| - | ListTagsForResourceResponse |
118 |
| - | TagResourceResponse |
119 |
| - | UntagResourceResponse; |
| 146 | + | CreateAnalyzerCommandOutput |
| 147 | + | CreateArchiveRuleCommandOutput |
| 148 | + | DeleteAnalyzerCommandOutput |
| 149 | + | DeleteArchiveRuleCommandOutput |
| 150 | + | GetAnalyzedResourceCommandOutput |
| 151 | + | GetAnalyzerCommandOutput |
| 152 | + | GetArchiveRuleCommandOutput |
| 153 | + | GetFindingCommandOutput |
| 154 | + | ListAnalyzedResourcesCommandOutput |
| 155 | + | ListAnalyzersCommandOutput |
| 156 | + | ListArchiveRulesCommandOutput |
| 157 | + | ListFindingsCommandOutput |
| 158 | + | ListTagsForResourceCommandOutput |
| 159 | + | StartResourceScanCommandOutput |
| 160 | + | TagResourceCommandOutput |
| 161 | + | UntagResourceCommandOutput |
| 162 | + | UpdateArchiveRuleCommandOutput |
| 163 | + | UpdateFindingsCommandOutput; |
120 | 164 |
|
121 | 165 | export interface ClientDefaults
|
122 | 166 | extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
0 commit comments