@aws-sdk/client-resource-explorer-2 3.686.0 → 3.691.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/README.md +16 -0
- package/dist-cjs/index.js +127 -0
- package/dist-es/ResourceExplorer2.js +4 -0
- package/dist-es/commands/GetManagedViewCommand.js +23 -0
- package/dist-es/commands/ListManagedViewsCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/pagination/ListManagedViewsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +71 -0
- package/dist-types/ResourceExplorer2.d.ts +15 -0
- package/dist-types/ResourceExplorer2Client.d.ts +4 -2
- package/dist-types/commands/GetManagedViewCommand.d.ts +112 -0
- package/dist-types/commands/ListManagedViewsCommand.d.ts +98 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -108
- package/dist-types/pagination/ListManagedViewsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/ResourceExplorer2.d.ts +35 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetManagedViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListManagedViewsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +137 -106
- package/dist-types/ts3.4/pagination/ListManagedViewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +7 -7
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListManagedViewsCommandInput, ListManagedViewsCommandOutput } from "../commands/ListManagedViewsCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListManagedViews: (config: ResourceExplorer2PaginationConfiguration, input: ListManagedViewsCommandInput, ...rest: any[]) => Paginator<ListManagedViewsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListIndexesForMembersPaginator";
|
|
3
3
|
export * from "./ListIndexesPaginator";
|
|
4
|
+
export * from "./ListManagedViewsPaginator";
|
|
4
5
|
export * from "./ListResourcesPaginator";
|
|
5
6
|
export * from "./ListSupportedResourceTypesPaginator";
|
|
6
7
|
export * from "./ListViewsPaginator";
|
|
@@ -10,9 +10,11 @@ import { DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutp
|
|
|
10
10
|
import { GetAccountLevelServiceConfigurationCommandInput, GetAccountLevelServiceConfigurationCommandOutput } from "../commands/GetAccountLevelServiceConfigurationCommand";
|
|
11
11
|
import { GetDefaultViewCommandInput, GetDefaultViewCommandOutput } from "../commands/GetDefaultViewCommand";
|
|
12
12
|
import { GetIndexCommandInput, GetIndexCommandOutput } from "../commands/GetIndexCommand";
|
|
13
|
+
import { GetManagedViewCommandInput, GetManagedViewCommandOutput } from "../commands/GetManagedViewCommand";
|
|
13
14
|
import { GetViewCommandInput, GetViewCommandOutput } from "../commands/GetViewCommand";
|
|
14
15
|
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
15
16
|
import { ListIndexesForMembersCommandInput, ListIndexesForMembersCommandOutput } from "../commands/ListIndexesForMembersCommand";
|
|
17
|
+
import { ListManagedViewsCommandInput, ListManagedViewsCommandOutput } from "../commands/ListManagedViewsCommand";
|
|
16
18
|
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
17
19
|
import { ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput } from "../commands/ListSupportedResourceTypesCommand";
|
|
18
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -62,6 +64,10 @@ export declare const se_GetDefaultViewCommand: (input: GetDefaultViewCommandInpu
|
|
|
62
64
|
* serializeAws_restJson1GetIndexCommand
|
|
63
65
|
*/
|
|
64
66
|
export declare const se_GetIndexCommand: (input: GetIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
/**
|
|
68
|
+
* serializeAws_restJson1GetManagedViewCommand
|
|
69
|
+
*/
|
|
70
|
+
export declare const se_GetManagedViewCommand: (input: GetManagedViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
71
|
/**
|
|
66
72
|
* serializeAws_restJson1GetViewCommand
|
|
67
73
|
*/
|
|
@@ -74,6 +80,10 @@ export declare const se_ListIndexesCommand: (input: ListIndexesCommandInput, con
|
|
|
74
80
|
* serializeAws_restJson1ListIndexesForMembersCommand
|
|
75
81
|
*/
|
|
76
82
|
export declare const se_ListIndexesForMembersCommand: (input: ListIndexesForMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* serializeAws_restJson1ListManagedViewsCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const se_ListManagedViewsCommand: (input: ListManagedViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
87
|
/**
|
|
78
88
|
* serializeAws_restJson1ListResourcesCommand
|
|
79
89
|
*/
|
|
@@ -150,6 +160,10 @@ export declare const de_GetDefaultViewCommand: (output: __HttpResponse, context:
|
|
|
150
160
|
* deserializeAws_restJson1GetIndexCommand
|
|
151
161
|
*/
|
|
152
162
|
export declare const de_GetIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIndexCommandOutput>;
|
|
163
|
+
/**
|
|
164
|
+
* deserializeAws_restJson1GetManagedViewCommand
|
|
165
|
+
*/
|
|
166
|
+
export declare const de_GetManagedViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetManagedViewCommandOutput>;
|
|
153
167
|
/**
|
|
154
168
|
* deserializeAws_restJson1GetViewCommand
|
|
155
169
|
*/
|
|
@@ -162,6 +176,10 @@ export declare const de_ListIndexesCommand: (output: __HttpResponse, context: __
|
|
|
162
176
|
* deserializeAws_restJson1ListIndexesForMembersCommand
|
|
163
177
|
*/
|
|
164
178
|
export declare const de_ListIndexesForMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexesForMembersCommandOutput>;
|
|
179
|
+
/**
|
|
180
|
+
* deserializeAws_restJson1ListManagedViewsCommand
|
|
181
|
+
*/
|
|
182
|
+
export declare const de_ListManagedViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedViewsCommandOutput>;
|
|
165
183
|
/**
|
|
166
184
|
* deserializeAws_restJson1ListResourcesCommand
|
|
167
185
|
*/
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
GetIndexCommandInput,
|
|
40
40
|
GetIndexCommandOutput,
|
|
41
41
|
} from "./commands/GetIndexCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetManagedViewCommandInput,
|
|
44
|
+
GetManagedViewCommandOutput,
|
|
45
|
+
} from "./commands/GetManagedViewCommand";
|
|
42
46
|
import {
|
|
43
47
|
GetViewCommandInput,
|
|
44
48
|
GetViewCommandOutput,
|
|
@@ -51,6 +55,10 @@ import {
|
|
|
51
55
|
ListIndexesForMembersCommandInput,
|
|
52
56
|
ListIndexesForMembersCommandOutput,
|
|
53
57
|
} from "./commands/ListIndexesForMembersCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListManagedViewsCommandInput,
|
|
60
|
+
ListManagedViewsCommandOutput,
|
|
61
|
+
} from "./commands/ListManagedViewsCommand";
|
|
54
62
|
import {
|
|
55
63
|
ListResourcesCommandInput,
|
|
56
64
|
ListResourcesCommandOutput,
|
|
@@ -231,6 +239,19 @@ export interface ResourceExplorer2 {
|
|
|
231
239
|
options: __HttpHandlerOptions,
|
|
232
240
|
cb: (err: any, data?: GetIndexCommandOutput) => void
|
|
233
241
|
): void;
|
|
242
|
+
getManagedView(
|
|
243
|
+
args: GetManagedViewCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions
|
|
245
|
+
): Promise<GetManagedViewCommandOutput>;
|
|
246
|
+
getManagedView(
|
|
247
|
+
args: GetManagedViewCommandInput,
|
|
248
|
+
cb: (err: any, data?: GetManagedViewCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
getManagedView(
|
|
251
|
+
args: GetManagedViewCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: GetManagedViewCommandOutput) => void
|
|
254
|
+
): void;
|
|
234
255
|
getView(
|
|
235
256
|
args: GetViewCommandInput,
|
|
236
257
|
options?: __HttpHandlerOptions
|
|
@@ -271,6 +292,20 @@ export interface ResourceExplorer2 {
|
|
|
271
292
|
options: __HttpHandlerOptions,
|
|
272
293
|
cb: (err: any, data?: ListIndexesForMembersCommandOutput) => void
|
|
273
294
|
): void;
|
|
295
|
+
listManagedViews(): Promise<ListManagedViewsCommandOutput>;
|
|
296
|
+
listManagedViews(
|
|
297
|
+
args: ListManagedViewsCommandInput,
|
|
298
|
+
options?: __HttpHandlerOptions
|
|
299
|
+
): Promise<ListManagedViewsCommandOutput>;
|
|
300
|
+
listManagedViews(
|
|
301
|
+
args: ListManagedViewsCommandInput,
|
|
302
|
+
cb: (err: any, data?: ListManagedViewsCommandOutput) => void
|
|
303
|
+
): void;
|
|
304
|
+
listManagedViews(
|
|
305
|
+
args: ListManagedViewsCommandInput,
|
|
306
|
+
options: __HttpHandlerOptions,
|
|
307
|
+
cb: (err: any, data?: ListManagedViewsCommandOutput) => void
|
|
308
|
+
): void;
|
|
274
309
|
listResources(): Promise<ListResourcesCommandOutput>;
|
|
275
310
|
listResources(
|
|
276
311
|
args: ListResourcesCommandInput,
|
|
@@ -85,6 +85,10 @@ import {
|
|
|
85
85
|
GetIndexCommandInput,
|
|
86
86
|
GetIndexCommandOutput,
|
|
87
87
|
} from "./commands/GetIndexCommand";
|
|
88
|
+
import {
|
|
89
|
+
GetManagedViewCommandInput,
|
|
90
|
+
GetManagedViewCommandOutput,
|
|
91
|
+
} from "./commands/GetManagedViewCommand";
|
|
88
92
|
import {
|
|
89
93
|
GetViewCommandInput,
|
|
90
94
|
GetViewCommandOutput,
|
|
@@ -97,6 +101,10 @@ import {
|
|
|
97
101
|
ListIndexesForMembersCommandInput,
|
|
98
102
|
ListIndexesForMembersCommandOutput,
|
|
99
103
|
} from "./commands/ListIndexesForMembersCommand";
|
|
104
|
+
import {
|
|
105
|
+
ListManagedViewsCommandInput,
|
|
106
|
+
ListManagedViewsCommandOutput,
|
|
107
|
+
} from "./commands/ListManagedViewsCommand";
|
|
100
108
|
import {
|
|
101
109
|
ListResourcesCommandInput,
|
|
102
110
|
ListResourcesCommandOutput,
|
|
@@ -151,9 +159,11 @@ export type ServiceInputTypes =
|
|
|
151
159
|
| GetAccountLevelServiceConfigurationCommandInput
|
|
152
160
|
| GetDefaultViewCommandInput
|
|
153
161
|
| GetIndexCommandInput
|
|
162
|
+
| GetManagedViewCommandInput
|
|
154
163
|
| GetViewCommandInput
|
|
155
164
|
| ListIndexesCommandInput
|
|
156
165
|
| ListIndexesForMembersCommandInput
|
|
166
|
+
| ListManagedViewsCommandInput
|
|
157
167
|
| ListResourcesCommandInput
|
|
158
168
|
| ListSupportedResourceTypesCommandInput
|
|
159
169
|
| ListTagsForResourceCommandInput
|
|
@@ -174,9 +184,11 @@ export type ServiceOutputTypes =
|
|
|
174
184
|
| GetAccountLevelServiceConfigurationCommandOutput
|
|
175
185
|
| GetDefaultViewCommandOutput
|
|
176
186
|
| GetIndexCommandOutput
|
|
187
|
+
| GetManagedViewCommandOutput
|
|
177
188
|
| GetViewCommandOutput
|
|
178
189
|
| ListIndexesCommandOutput
|
|
179
190
|
| ListIndexesForMembersCommandOutput
|
|
191
|
+
| ListManagedViewsCommandOutput
|
|
180
192
|
| ListResourcesCommandOutput
|
|
181
193
|
| ListSupportedResourceTypesCommandOutput
|
|
182
194
|
| ListTagsForResourceCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetManagedViewInput, GetManagedViewOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ResourceExplorer2Client";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetManagedViewCommandInput extends GetManagedViewInput {}
|
|
12
|
+
export interface GetManagedViewCommandOutput
|
|
13
|
+
extends GetManagedViewOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetManagedViewCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetManagedViewCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetManagedViewCommandInput,
|
|
20
|
+
GetManagedViewCommandOutput,
|
|
21
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetManagedViewCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetManagedViewCommandInput,
|
|
29
|
+
GetManagedViewCommandOutput,
|
|
30
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetManagedViewCommand extends GetManagedViewCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetManagedViewInput;
|
|
40
|
+
output: GetManagedViewOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetManagedViewCommandInput;
|
|
44
|
+
output: GetManagedViewCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListManagedViewsInput,
|
|
5
|
+
ListManagedViewsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../ResourceExplorer2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListManagedViewsCommandInput extends ListManagedViewsInput {}
|
|
15
|
+
export interface ListManagedViewsCommandOutput
|
|
16
|
+
extends ListManagedViewsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListManagedViewsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListManagedViewsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListManagedViewsCommandInput,
|
|
23
|
+
ListManagedViewsCommandOutput,
|
|
24
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListManagedViewsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListManagedViewsCommandInput,
|
|
32
|
+
ListManagedViewsCommandOutput,
|
|
33
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListManagedViewsCommand extends ListManagedViewsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListManagedViewsInput;
|
|
43
|
+
output: ListManagedViewsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListManagedViewsCommandInput;
|
|
47
|
+
output: ListManagedViewsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -8,9 +8,11 @@ export * from "./DisassociateDefaultViewCommand";
|
|
|
8
8
|
export * from "./GetAccountLevelServiceConfigurationCommand";
|
|
9
9
|
export * from "./GetDefaultViewCommand";
|
|
10
10
|
export * from "./GetIndexCommand";
|
|
11
|
+
export * from "./GetManagedViewCommand";
|
|
11
12
|
export * from "./GetViewCommand";
|
|
12
13
|
export * from "./ListIndexesCommand";
|
|
13
14
|
export * from "./ListIndexesForMembersCommand";
|
|
15
|
+
export * from "./ListManagedViewsCommand";
|
|
14
16
|
export * from "./ListResourcesCommand";
|
|
15
17
|
export * from "./ListSupportedResourceTypesCommand";
|
|
16
18
|
export * from "./ListTagsForResourceCommand";
|