@aws-sdk/client-resource-explorer-2 3.206.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 +241 -0
- package/dist-cjs/ResourceExplorer2.js +292 -0
- package/dist-cjs/ResourceExplorer2Client.js +40 -0
- package/dist-cjs/commands/AssociateDefaultViewCommand.js +45 -0
- package/dist-cjs/commands/BatchGetViewCommand.js +45 -0
- package/dist-cjs/commands/CreateIndexCommand.js +45 -0
- package/dist-cjs/commands/CreateViewCommand.js +45 -0
- package/dist-cjs/commands/DeleteIndexCommand.js +45 -0
- package/dist-cjs/commands/DeleteViewCommand.js +45 -0
- package/dist-cjs/commands/DisassociateDefaultViewCommand.js +44 -0
- package/dist-cjs/commands/GetDefaultViewCommand.js +45 -0
- package/dist-cjs/commands/GetIndexCommand.js +45 -0
- package/dist-cjs/commands/GetViewCommand.js +45 -0
- package/dist-cjs/commands/ListIndexesCommand.js +45 -0
- package/dist-cjs/commands/ListSupportedResourceTypesCommand.js +45 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +45 -0
- package/dist-cjs/commands/ListViewsCommand.js +45 -0
- package/dist-cjs/commands/SearchCommand.js +45 -0
- package/dist-cjs/commands/TagResourceCommand.js +45 -0
- package/dist-cjs/commands/UntagResourceCommand.js +45 -0
- package/dist-cjs/commands/UpdateIndexTypeCommand.js +45 -0
- package/dist-cjs/commands/UpdateViewCommand.js +45 -0
- package/dist-cjs/commands/index.js +22 -0
- package/dist-cjs/endpoint/EndpointParameters.js +11 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +251 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/ResourceExplorer2ServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +318 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListIndexesPaginator.js +36 -0
- package/dist-cjs/pagination/ListSupportedResourceTypesPaginator.js +36 -0
- package/dist-cjs/pagination/ListViewsPaginator.js +36 -0
- package/dist-cjs/pagination/SearchPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1771 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-es/ResourceExplorer2.js +288 -0
- package/dist-es/ResourceExplorer2Client.js +36 -0
- package/dist-es/commands/AssociateDefaultViewCommand.js +41 -0
- package/dist-es/commands/BatchGetViewCommand.js +41 -0
- package/dist-es/commands/CreateIndexCommand.js +41 -0
- package/dist-es/commands/CreateViewCommand.js +41 -0
- package/dist-es/commands/DeleteIndexCommand.js +41 -0
- package/dist-es/commands/DeleteViewCommand.js +41 -0
- package/dist-es/commands/DisassociateDefaultViewCommand.js +40 -0
- package/dist-es/commands/GetDefaultViewCommand.js +41 -0
- package/dist-es/commands/GetIndexCommand.js +41 -0
- package/dist-es/commands/GetViewCommand.js +41 -0
- package/dist-es/commands/ListIndexesCommand.js +41 -0
- package/dist-es/commands/ListSupportedResourceTypesCommand.js +41 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
- package/dist-es/commands/ListViewsCommand.js +41 -0
- package/dist-es/commands/SearchCommand.js +41 -0
- package/dist-es/commands/TagResourceCommand.js +41 -0
- package/dist-es/commands/UntagResourceCommand.js +41 -0
- package/dist-es/commands/UpdateIndexTypeCommand.js +41 -0
- package/dist-es/commands/UpdateViewCommand.js +41 -0
- package/dist-es/commands/index.js +19 -0
- package/dist-es/endpoint/EndpointParameters.js +7 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +248 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/ResourceExplorer2ServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +262 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListIndexesPaginator.js +32 -0
- package/dist-es/pagination/ListSupportedResourceTypesPaginator.js +32 -0
- package/dist-es/pagination/ListViewsPaginator.js +32 -0
- package/dist-es/pagination/SearchPaginator.js +32 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +1730 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/ResourceExplorer2.d.ts +336 -0
- package/dist-types/ResourceExplorer2Client.d.ts +196 -0
- package/dist-types/commands/AssociateDefaultViewCommand.d.ts +43 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +37 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +90 -0
- package/dist-types/commands/CreateViewCommand.d.ts +44 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +42 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +40 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +41 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +38 -0
- package/dist-types/commands/GetIndexCommand.d.ts +38 -0
- package/dist-types/commands/GetViewCommand.d.ts +37 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +38 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListViewsCommand.d.ts +46 -0
- package/dist-types/commands/SearchCommand.d.ts +49 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +93 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +19 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +17 -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 +6 -0
- package/dist-types/models/ResourceExplorer2ServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1080 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListIndexesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSupportedResourceTypesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListViewsPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +59 -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 +17 -0
- package/dist-types/ts3.4/ResourceExplorer2.d.ts +327 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +226 -0
- package/dist-types/ts3.4/commands/AssociateDefaultViewCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/BatchGetViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DisassociateDefaultViewCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetDefaultViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetViewCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSupportedResourceTypesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateIndexTypeCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateViewCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -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/ResourceExplorer2ServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +384 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListIndexesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSupportedResourceTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListViewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/package.json +105 -0
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
|
+
import { ResourceExplorer2ServiceException as __BaseException } from "./ResourceExplorer2ServiceException";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export interface AssociateDefaultViewInput {
|
|
13
|
+
ViewArn: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface AssociateDefaultViewOutput {
|
|
16
|
+
ViewArn?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare class InternalServerException extends __BaseException {
|
|
19
|
+
readonly name: "InternalServerException";
|
|
20
|
+
readonly $fault: "server";
|
|
21
|
+
Message?: string;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "ResourceNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
Message?: string;
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ThrottlingException extends __BaseException {
|
|
35
|
+
readonly name: "ThrottlingException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
Message?: string;
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export interface ValidationExceptionField {
|
|
43
|
+
Name: string | undefined;
|
|
44
|
+
ValidationIssue: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
export declare class ValidationException extends __BaseException {
|
|
47
|
+
readonly name: "ValidationException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message: string | undefined;
|
|
50
|
+
FieldList?: ValidationExceptionField[];
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export interface BatchGetViewInput {
|
|
56
|
+
ViewArns?: string[];
|
|
57
|
+
}
|
|
58
|
+
export interface BatchGetViewError {
|
|
59
|
+
ViewArn: string | undefined;
|
|
60
|
+
ErrorMessage: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface SearchFilter {
|
|
63
|
+
FilterString: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
export interface IncludedProperty {
|
|
66
|
+
Name: string | undefined;
|
|
67
|
+
}
|
|
68
|
+
export interface View {
|
|
69
|
+
ViewArn?: string;
|
|
70
|
+
Owner?: string;
|
|
71
|
+
LastUpdatedAt?: Date;
|
|
72
|
+
Scope?: string;
|
|
73
|
+
IncludedProperties?: IncludedProperty[];
|
|
74
|
+
Filters?: SearchFilter;
|
|
75
|
+
}
|
|
76
|
+
export interface BatchGetViewOutput {
|
|
77
|
+
Views?: View[];
|
|
78
|
+
Errors?: BatchGetViewError[];
|
|
79
|
+
}
|
|
80
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
81
|
+
readonly name: "UnauthorizedException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
Message?: string;
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class ConflictException extends __BaseException {
|
|
89
|
+
readonly name: "ConflictException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
Message: string | undefined;
|
|
92
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
export interface CreateIndexInput {
|
|
95
|
+
ClientToken?: string;
|
|
96
|
+
Tags?: Record<string, string>;
|
|
97
|
+
}
|
|
98
|
+
export declare enum IndexState {
|
|
99
|
+
ACTIVE = "ACTIVE",
|
|
100
|
+
CREATING = "CREATING",
|
|
101
|
+
DELETED = "DELETED",
|
|
102
|
+
DELETING = "DELETING",
|
|
103
|
+
UPDATING = "UPDATING",
|
|
104
|
+
}
|
|
105
|
+
export interface CreateIndexOutput {
|
|
106
|
+
Arn?: string;
|
|
107
|
+
State?: IndexState | string;
|
|
108
|
+
CreatedAt?: Date;
|
|
109
|
+
}
|
|
110
|
+
export interface DeleteIndexInput {
|
|
111
|
+
Arn: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface DeleteIndexOutput {
|
|
114
|
+
Arn?: string;
|
|
115
|
+
State?: IndexState | string;
|
|
116
|
+
LastUpdatedAt?: Date;
|
|
117
|
+
}
|
|
118
|
+
export declare enum IndexType {
|
|
119
|
+
AGGREGATOR = "AGGREGATOR",
|
|
120
|
+
LOCAL = "LOCAL",
|
|
121
|
+
}
|
|
122
|
+
export interface ListIndexesInput {
|
|
123
|
+
Type?: IndexType | string;
|
|
124
|
+
Regions?: string[];
|
|
125
|
+
MaxResults?: number;
|
|
126
|
+
NextToken?: string;
|
|
127
|
+
}
|
|
128
|
+
export interface Index {
|
|
129
|
+
Region?: string;
|
|
130
|
+
Arn?: string;
|
|
131
|
+
Type?: IndexType | string;
|
|
132
|
+
}
|
|
133
|
+
export interface ListIndexesOutput {
|
|
134
|
+
Indexes?: Index[];
|
|
135
|
+
NextToken?: string;
|
|
136
|
+
}
|
|
137
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
138
|
+
readonly name: "ServiceQuotaExceededException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
Message: string | undefined;
|
|
141
|
+
Name: string | undefined;
|
|
142
|
+
Value: string | undefined;
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
export interface UpdateIndexTypeInput {
|
|
148
|
+
Arn: string | undefined;
|
|
149
|
+
Type: IndexType | string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface UpdateIndexTypeOutput {
|
|
152
|
+
Arn?: string;
|
|
153
|
+
Type?: IndexType | string;
|
|
154
|
+
State?: IndexState | string;
|
|
155
|
+
LastUpdatedAt?: Date;
|
|
156
|
+
}
|
|
157
|
+
export interface CreateViewInput {
|
|
158
|
+
ClientToken?: string;
|
|
159
|
+
ViewName: string | undefined;
|
|
160
|
+
IncludedProperties?: IncludedProperty[];
|
|
161
|
+
Filters?: SearchFilter;
|
|
162
|
+
Tags?: Record<string, string>;
|
|
163
|
+
}
|
|
164
|
+
export interface CreateViewOutput {
|
|
165
|
+
View?: View;
|
|
166
|
+
}
|
|
167
|
+
export interface DeleteViewInput {
|
|
168
|
+
ViewArn: string | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface DeleteViewOutput {
|
|
171
|
+
ViewArn?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface GetViewInput {
|
|
174
|
+
ViewArn: string | undefined;
|
|
175
|
+
}
|
|
176
|
+
export interface GetViewOutput {
|
|
177
|
+
View?: View;
|
|
178
|
+
Tags?: Record<string, string>;
|
|
179
|
+
}
|
|
180
|
+
export interface ListViewsInput {
|
|
181
|
+
NextToken?: string;
|
|
182
|
+
MaxResults?: number;
|
|
183
|
+
}
|
|
184
|
+
export interface ListViewsOutput {
|
|
185
|
+
Views?: string[];
|
|
186
|
+
NextToken?: string;
|
|
187
|
+
}
|
|
188
|
+
export interface UpdateViewInput {
|
|
189
|
+
ViewArn: string | undefined;
|
|
190
|
+
IncludedProperties?: IncludedProperty[];
|
|
191
|
+
Filters?: SearchFilter;
|
|
192
|
+
}
|
|
193
|
+
export interface UpdateViewOutput {
|
|
194
|
+
View?: View;
|
|
195
|
+
}
|
|
196
|
+
export interface GetDefaultViewOutput {
|
|
197
|
+
ViewArn?: string;
|
|
198
|
+
}
|
|
199
|
+
export interface GetIndexOutput {
|
|
200
|
+
Arn?: string;
|
|
201
|
+
Type?: IndexType | string;
|
|
202
|
+
State?: IndexState | string;
|
|
203
|
+
ReplicatingFrom?: string[];
|
|
204
|
+
ReplicatingTo?: string[];
|
|
205
|
+
CreatedAt?: Date;
|
|
206
|
+
LastUpdatedAt?: Date;
|
|
207
|
+
Tags?: Record<string, string>;
|
|
208
|
+
}
|
|
209
|
+
export interface ListSupportedResourceTypesInput {
|
|
210
|
+
NextToken?: string;
|
|
211
|
+
MaxResults?: number;
|
|
212
|
+
}
|
|
213
|
+
export interface SupportedResourceType {
|
|
214
|
+
Service?: string;
|
|
215
|
+
ResourceType?: string;
|
|
216
|
+
}
|
|
217
|
+
export interface ListSupportedResourceTypesOutput {
|
|
218
|
+
ResourceTypes?: SupportedResourceType[];
|
|
219
|
+
NextToken?: string;
|
|
220
|
+
}
|
|
221
|
+
export interface ListTagsForResourceInput {
|
|
222
|
+
resourceArn: string | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface ListTagsForResourceOutput {
|
|
225
|
+
Tags?: Record<string, string>;
|
|
226
|
+
}
|
|
227
|
+
export interface ResourceProperty {
|
|
228
|
+
Name?: string;
|
|
229
|
+
LastReportedAt?: Date;
|
|
230
|
+
Data?: __DocumentType;
|
|
231
|
+
}
|
|
232
|
+
export interface Resource {
|
|
233
|
+
Arn?: string;
|
|
234
|
+
OwningAccountId?: string;
|
|
235
|
+
Region?: string;
|
|
236
|
+
ResourceType?: string;
|
|
237
|
+
Service?: string;
|
|
238
|
+
LastReportedAt?: Date;
|
|
239
|
+
Properties?: ResourceProperty[];
|
|
240
|
+
}
|
|
241
|
+
export interface ResourceCount {
|
|
242
|
+
TotalResources?: number;
|
|
243
|
+
Complete?: boolean;
|
|
244
|
+
}
|
|
245
|
+
export interface SearchInput {
|
|
246
|
+
QueryString: string | undefined;
|
|
247
|
+
MaxResults?: number;
|
|
248
|
+
ViewArn?: string;
|
|
249
|
+
NextToken?: string;
|
|
250
|
+
}
|
|
251
|
+
export interface SearchOutput {
|
|
252
|
+
Resources?: Resource[];
|
|
253
|
+
NextToken?: string;
|
|
254
|
+
ViewArn?: string;
|
|
255
|
+
Count?: ResourceCount;
|
|
256
|
+
}
|
|
257
|
+
export interface TagResourceInput {
|
|
258
|
+
resourceArn: string | undefined;
|
|
259
|
+
Tags?: Record<string, string>;
|
|
260
|
+
}
|
|
261
|
+
export interface TagResourceOutput {}
|
|
262
|
+
export interface UntagResourceInput {
|
|
263
|
+
resourceArn: string | undefined;
|
|
264
|
+
tagKeys: string[] | undefined;
|
|
265
|
+
}
|
|
266
|
+
export interface UntagResourceOutput {}
|
|
267
|
+
export declare const AssociateDefaultViewInputFilterSensitiveLog: (
|
|
268
|
+
obj: AssociateDefaultViewInput
|
|
269
|
+
) => any;
|
|
270
|
+
export declare const AssociateDefaultViewOutputFilterSensitiveLog: (
|
|
271
|
+
obj: AssociateDefaultViewOutput
|
|
272
|
+
) => any;
|
|
273
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
274
|
+
obj: ValidationExceptionField
|
|
275
|
+
) => any;
|
|
276
|
+
export declare const BatchGetViewInputFilterSensitiveLog: (
|
|
277
|
+
obj: BatchGetViewInput
|
|
278
|
+
) => any;
|
|
279
|
+
export declare const BatchGetViewErrorFilterSensitiveLog: (
|
|
280
|
+
obj: BatchGetViewError
|
|
281
|
+
) => any;
|
|
282
|
+
export declare const SearchFilterFilterSensitiveLog: (obj: SearchFilter) => any;
|
|
283
|
+
export declare const IncludedPropertyFilterSensitiveLog: (
|
|
284
|
+
obj: IncludedProperty
|
|
285
|
+
) => any;
|
|
286
|
+
export declare const ViewFilterSensitiveLog: (obj: View) => any;
|
|
287
|
+
export declare const BatchGetViewOutputFilterSensitiveLog: (
|
|
288
|
+
obj: BatchGetViewOutput
|
|
289
|
+
) => any;
|
|
290
|
+
export declare const CreateIndexInputFilterSensitiveLog: (
|
|
291
|
+
obj: CreateIndexInput
|
|
292
|
+
) => any;
|
|
293
|
+
export declare const CreateIndexOutputFilterSensitiveLog: (
|
|
294
|
+
obj: CreateIndexOutput
|
|
295
|
+
) => any;
|
|
296
|
+
export declare const DeleteIndexInputFilterSensitiveLog: (
|
|
297
|
+
obj: DeleteIndexInput
|
|
298
|
+
) => any;
|
|
299
|
+
export declare const DeleteIndexOutputFilterSensitiveLog: (
|
|
300
|
+
obj: DeleteIndexOutput
|
|
301
|
+
) => any;
|
|
302
|
+
export declare const ListIndexesInputFilterSensitiveLog: (
|
|
303
|
+
obj: ListIndexesInput
|
|
304
|
+
) => any;
|
|
305
|
+
export declare const IndexFilterSensitiveLog: (obj: Index) => any;
|
|
306
|
+
export declare const ListIndexesOutputFilterSensitiveLog: (
|
|
307
|
+
obj: ListIndexesOutput
|
|
308
|
+
) => any;
|
|
309
|
+
export declare const UpdateIndexTypeInputFilterSensitiveLog: (
|
|
310
|
+
obj: UpdateIndexTypeInput
|
|
311
|
+
) => any;
|
|
312
|
+
export declare const UpdateIndexTypeOutputFilterSensitiveLog: (
|
|
313
|
+
obj: UpdateIndexTypeOutput
|
|
314
|
+
) => any;
|
|
315
|
+
export declare const CreateViewInputFilterSensitiveLog: (
|
|
316
|
+
obj: CreateViewInput
|
|
317
|
+
) => any;
|
|
318
|
+
export declare const CreateViewOutputFilterSensitiveLog: (
|
|
319
|
+
obj: CreateViewOutput
|
|
320
|
+
) => any;
|
|
321
|
+
export declare const DeleteViewInputFilterSensitiveLog: (
|
|
322
|
+
obj: DeleteViewInput
|
|
323
|
+
) => any;
|
|
324
|
+
export declare const DeleteViewOutputFilterSensitiveLog: (
|
|
325
|
+
obj: DeleteViewOutput
|
|
326
|
+
) => any;
|
|
327
|
+
export declare const GetViewInputFilterSensitiveLog: (obj: GetViewInput) => any;
|
|
328
|
+
export declare const GetViewOutputFilterSensitiveLog: (
|
|
329
|
+
obj: GetViewOutput
|
|
330
|
+
) => any;
|
|
331
|
+
export declare const ListViewsInputFilterSensitiveLog: (
|
|
332
|
+
obj: ListViewsInput
|
|
333
|
+
) => any;
|
|
334
|
+
export declare const ListViewsOutputFilterSensitiveLog: (
|
|
335
|
+
obj: ListViewsOutput
|
|
336
|
+
) => any;
|
|
337
|
+
export declare const UpdateViewInputFilterSensitiveLog: (
|
|
338
|
+
obj: UpdateViewInput
|
|
339
|
+
) => any;
|
|
340
|
+
export declare const UpdateViewOutputFilterSensitiveLog: (
|
|
341
|
+
obj: UpdateViewOutput
|
|
342
|
+
) => any;
|
|
343
|
+
export declare const GetDefaultViewOutputFilterSensitiveLog: (
|
|
344
|
+
obj: GetDefaultViewOutput
|
|
345
|
+
) => any;
|
|
346
|
+
export declare const GetIndexOutputFilterSensitiveLog: (
|
|
347
|
+
obj: GetIndexOutput
|
|
348
|
+
) => any;
|
|
349
|
+
export declare const ListSupportedResourceTypesInputFilterSensitiveLog: (
|
|
350
|
+
obj: ListSupportedResourceTypesInput
|
|
351
|
+
) => any;
|
|
352
|
+
export declare const SupportedResourceTypeFilterSensitiveLog: (
|
|
353
|
+
obj: SupportedResourceType
|
|
354
|
+
) => any;
|
|
355
|
+
export declare const ListSupportedResourceTypesOutputFilterSensitiveLog: (
|
|
356
|
+
obj: ListSupportedResourceTypesOutput
|
|
357
|
+
) => any;
|
|
358
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
359
|
+
obj: ListTagsForResourceInput
|
|
360
|
+
) => any;
|
|
361
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
362
|
+
obj: ListTagsForResourceOutput
|
|
363
|
+
) => any;
|
|
364
|
+
export declare const ResourcePropertyFilterSensitiveLog: (
|
|
365
|
+
obj: ResourceProperty
|
|
366
|
+
) => any;
|
|
367
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
368
|
+
export declare const ResourceCountFilterSensitiveLog: (
|
|
369
|
+
obj: ResourceCount
|
|
370
|
+
) => any;
|
|
371
|
+
export declare const SearchInputFilterSensitiveLog: (obj: SearchInput) => any;
|
|
372
|
+
export declare const SearchOutputFilterSensitiveLog: (obj: SearchOutput) => any;
|
|
373
|
+
export declare const TagResourceInputFilterSensitiveLog: (
|
|
374
|
+
obj: TagResourceInput
|
|
375
|
+
) => any;
|
|
376
|
+
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
377
|
+
obj: TagResourceOutput
|
|
378
|
+
) => any;
|
|
379
|
+
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
380
|
+
obj: UntagResourceInput
|
|
381
|
+
) => any;
|
|
382
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
383
|
+
obj: UntagResourceOutput
|
|
384
|
+
) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ResourceExplorer2 } from "../ResourceExplorer2";
|
|
3
|
+
import { ResourceExplorer2Client } from "../ResourceExplorer2Client";
|
|
4
|
+
export interface ResourceExplorer2PaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ResourceExplorer2 | ResourceExplorer2Client;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListIndexesCommandInput,
|
|
4
|
+
ListIndexesCommandOutput,
|
|
5
|
+
} from "../commands/ListIndexesCommand";
|
|
6
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListIndexes(
|
|
8
|
+
config: ResourceExplorer2PaginationConfiguration,
|
|
9
|
+
input: ListIndexesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListIndexesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSupportedResourceTypesCommandInput,
|
|
4
|
+
ListSupportedResourceTypesCommandOutput,
|
|
5
|
+
} from "../commands/ListSupportedResourceTypesCommand";
|
|
6
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSupportedResourceTypes(
|
|
8
|
+
config: ResourceExplorer2PaginationConfiguration,
|
|
9
|
+
input: ListSupportedResourceTypesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSupportedResourceTypesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListViewsCommandInput,
|
|
4
|
+
ListViewsCommandOutput,
|
|
5
|
+
} from "../commands/ListViewsCommand";
|
|
6
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListViews(
|
|
8
|
+
config: ResourceExplorer2PaginationConfiguration,
|
|
9
|
+
input: ListViewsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListViewsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchCommandInput,
|
|
4
|
+
SearchCommandOutput,
|
|
5
|
+
} from "../commands/SearchCommand";
|
|
6
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearch(
|
|
8
|
+
config: ResourceExplorer2PaginationConfiguration,
|
|
9
|
+
input: SearchCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchCommandOutput>;
|
|
@@ -0,0 +1,233 @@
|
|
|
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
|
+
AssociateDefaultViewCommandInput,
|
|
8
|
+
AssociateDefaultViewCommandOutput,
|
|
9
|
+
} from "../commands/AssociateDefaultViewCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchGetViewCommandInput,
|
|
12
|
+
BatchGetViewCommandOutput,
|
|
13
|
+
} from "../commands/BatchGetViewCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateIndexCommandInput,
|
|
16
|
+
CreateIndexCommandOutput,
|
|
17
|
+
} from "../commands/CreateIndexCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateViewCommandInput,
|
|
20
|
+
CreateViewCommandOutput,
|
|
21
|
+
} from "../commands/CreateViewCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteIndexCommandInput,
|
|
24
|
+
DeleteIndexCommandOutput,
|
|
25
|
+
} from "../commands/DeleteIndexCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteViewCommandInput,
|
|
28
|
+
DeleteViewCommandOutput,
|
|
29
|
+
} from "../commands/DeleteViewCommand";
|
|
30
|
+
import {
|
|
31
|
+
DisassociateDefaultViewCommandInput,
|
|
32
|
+
DisassociateDefaultViewCommandOutput,
|
|
33
|
+
} from "../commands/DisassociateDefaultViewCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetDefaultViewCommandInput,
|
|
36
|
+
GetDefaultViewCommandOutput,
|
|
37
|
+
} from "../commands/GetDefaultViewCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetIndexCommandInput,
|
|
40
|
+
GetIndexCommandOutput,
|
|
41
|
+
} from "../commands/GetIndexCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetViewCommandInput,
|
|
44
|
+
GetViewCommandOutput,
|
|
45
|
+
} from "../commands/GetViewCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListIndexesCommandInput,
|
|
48
|
+
ListIndexesCommandOutput,
|
|
49
|
+
} from "../commands/ListIndexesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListSupportedResourceTypesCommandInput,
|
|
52
|
+
ListSupportedResourceTypesCommandOutput,
|
|
53
|
+
} from "../commands/ListSupportedResourceTypesCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListTagsForResourceCommandInput,
|
|
56
|
+
ListTagsForResourceCommandOutput,
|
|
57
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListViewsCommandInput,
|
|
60
|
+
ListViewsCommandOutput,
|
|
61
|
+
} from "../commands/ListViewsCommand";
|
|
62
|
+
import {
|
|
63
|
+
SearchCommandInput,
|
|
64
|
+
SearchCommandOutput,
|
|
65
|
+
} from "../commands/SearchCommand";
|
|
66
|
+
import {
|
|
67
|
+
TagResourceCommandInput,
|
|
68
|
+
TagResourceCommandOutput,
|
|
69
|
+
} from "../commands/TagResourceCommand";
|
|
70
|
+
import {
|
|
71
|
+
UntagResourceCommandInput,
|
|
72
|
+
UntagResourceCommandOutput,
|
|
73
|
+
} from "../commands/UntagResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateIndexTypeCommandInput,
|
|
76
|
+
UpdateIndexTypeCommandOutput,
|
|
77
|
+
} from "../commands/UpdateIndexTypeCommand";
|
|
78
|
+
import {
|
|
79
|
+
UpdateViewCommandInput,
|
|
80
|
+
UpdateViewCommandOutput,
|
|
81
|
+
} from "../commands/UpdateViewCommand";
|
|
82
|
+
export declare const serializeAws_restJson1AssociateDefaultViewCommand: (
|
|
83
|
+
input: AssociateDefaultViewCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1BatchGetViewCommand: (
|
|
87
|
+
input: BatchGetViewCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1CreateIndexCommand: (
|
|
91
|
+
input: CreateIndexCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1CreateViewCommand: (
|
|
95
|
+
input: CreateViewCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1DeleteIndexCommand: (
|
|
99
|
+
input: DeleteIndexCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1DeleteViewCommand: (
|
|
103
|
+
input: DeleteViewCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1DisassociateDefaultViewCommand: (
|
|
107
|
+
input: DisassociateDefaultViewCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1GetDefaultViewCommand: (
|
|
111
|
+
input: GetDefaultViewCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1GetIndexCommand: (
|
|
115
|
+
input: GetIndexCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1GetViewCommand: (
|
|
119
|
+
input: GetViewCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1ListIndexesCommand: (
|
|
123
|
+
input: ListIndexesCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1ListSupportedResourceTypesCommand: (
|
|
127
|
+
input: ListSupportedResourceTypesCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
131
|
+
input: ListTagsForResourceCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1ListViewsCommand: (
|
|
135
|
+
input: ListViewsCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1SearchCommand: (
|
|
139
|
+
input: SearchCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
143
|
+
input: TagResourceCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
147
|
+
input: UntagResourceCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1UpdateIndexTypeCommand: (
|
|
151
|
+
input: UpdateIndexTypeCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1UpdateViewCommand: (
|
|
155
|
+
input: UpdateViewCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const deserializeAws_restJson1AssociateDefaultViewCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<AssociateDefaultViewCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1BatchGetViewCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<BatchGetViewCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1CreateIndexCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<CreateIndexCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1CreateViewCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<CreateViewCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_restJson1DeleteIndexCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<DeleteIndexCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_restJson1DeleteViewCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<DeleteViewCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_restJson1DisassociateDefaultViewCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<DisassociateDefaultViewCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_restJson1GetDefaultViewCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<GetDefaultViewCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_restJson1GetIndexCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<GetIndexCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_restJson1GetViewCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<GetViewCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_restJson1ListIndexesCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<ListIndexesCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_restJson1ListSupportedResourceTypesCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<ListSupportedResourceTypesCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_restJson1ListViewsCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<ListViewsCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_restJson1SearchCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<SearchCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<TagResourceCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1UpdateIndexTypeCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<UpdateIndexTypeCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1UpdateViewCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<UpdateViewCommandOutput>;
|