@aws-sdk/client-resource-explorer-2 3.450.0 → 3.454.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/ResourceExplorer2.js +4 -0
- package/dist-cjs/commands/CreateIndexCommand.js +2 -1
- package/dist-cjs/commands/GetAccountLevelServiceConfigurationCommand.js +50 -0
- package/dist-cjs/commands/GetIndexCommand.js +2 -1
- package/dist-cjs/commands/ListIndexesForMembersCommand.js +50 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -1
- package/dist-cjs/commands/UntagResourceCommand.js +2 -1
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +32 -1
- package/dist-cjs/pagination/ListIndexesForMembersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +134 -1
- package/dist-es/ResourceExplorer2.js +4 -0
- package/dist-es/commands/CreateIndexCommand.js +2 -1
- package/dist-es/commands/GetAccountLevelServiceConfigurationCommand.js +46 -0
- package/dist-es/commands/GetIndexCommand.js +2 -1
- package/dist-es/commands/ListIndexesForMembersCommand.js +46 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-es/commands/TagResourceCommand.js +2 -1
- package/dist-es/commands/UntagResourceCommand.js +2 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +26 -0
- package/dist-es/pagination/ListIndexesForMembersPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +129 -0
- package/dist-types/ResourceExplorer2.d.ts +14 -0
- package/dist-types/ResourceExplorer2Client.d.ts +4 -2
- package/dist-types/commands/AssociateDefaultViewCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetViewCommand.d.ts +2 -2
- package/dist-types/commands/CreateIndexCommand.d.ts +7 -3
- package/dist-types/commands/CreateViewCommand.d.ts +8 -3
- package/dist-types/commands/DeleteIndexCommand.d.ts +2 -2
- package/dist-types/commands/DeleteViewCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +6 -2
- package/dist-types/commands/GetAccountLevelServiceConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +2 -2
- package/dist-types/commands/GetIndexCommand.d.ts +2 -2
- package/dist-types/commands/GetViewCommand.d.ts +2 -2
- package/dist-types/commands/ListIndexesCommand.d.ts +2 -2
- package/dist-types/commands/ListIndexesForMembersCommand.d.ts +105 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/ListViewsCommand.d.ts +2 -2
- package/dist-types/commands/SearchCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +7 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +7 -3
- package/dist-types/commands/UpdateViewCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +190 -21
- package/dist-types/pagination/ListIndexesForMembersPaginator.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 +40 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetAccountLevelServiceConfigurationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIndexesForMembersCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -0
- package/dist-types/ts3.4/pagination/ListIndexesForMembersPaginator.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 +35 -35
|
@@ -52,6 +52,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
52
52
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
53
53
|
);
|
|
54
54
|
}
|
|
55
|
+
export declare const AWSServiceAccessStatus: {
|
|
56
|
+
readonly DISABLED: "DISABLED";
|
|
57
|
+
readonly ENABLED: "ENABLED";
|
|
58
|
+
};
|
|
59
|
+
export type AWSServiceAccessStatus =
|
|
60
|
+
(typeof AWSServiceAccessStatus)[keyof typeof AWSServiceAccessStatus];
|
|
55
61
|
export interface BatchGetViewInput {
|
|
56
62
|
ViewArns?: string[];
|
|
57
63
|
}
|
|
@@ -160,6 +166,7 @@ export interface CreateViewInput {
|
|
|
160
166
|
ClientToken?: string;
|
|
161
167
|
ViewName: string | undefined;
|
|
162
168
|
IncludedProperties?: IncludedProperty[];
|
|
169
|
+
Scope?: string;
|
|
163
170
|
Filters?: SearchFilter;
|
|
164
171
|
Tags?: Record<string, string>;
|
|
165
172
|
}
|
|
@@ -195,6 +202,13 @@ export interface UpdateViewInput {
|
|
|
195
202
|
export interface UpdateViewOutput {
|
|
196
203
|
View?: View;
|
|
197
204
|
}
|
|
205
|
+
export interface OrgConfiguration {
|
|
206
|
+
AWSServiceAccessStatus: AWSServiceAccessStatus | undefined;
|
|
207
|
+
ServiceLinkedRole?: string;
|
|
208
|
+
}
|
|
209
|
+
export interface GetAccountLevelServiceConfigurationOutput {
|
|
210
|
+
OrgConfiguration?: OrgConfiguration;
|
|
211
|
+
}
|
|
198
212
|
export interface GetDefaultViewOutput {
|
|
199
213
|
ViewArn?: string;
|
|
200
214
|
}
|
|
@@ -208,6 +222,21 @@ export interface GetIndexOutput {
|
|
|
208
222
|
LastUpdatedAt?: Date;
|
|
209
223
|
Tags?: Record<string, string>;
|
|
210
224
|
}
|
|
225
|
+
export interface ListIndexesForMembersInput {
|
|
226
|
+
AccountIdList: string[] | undefined;
|
|
227
|
+
MaxResults?: number;
|
|
228
|
+
NextToken?: string;
|
|
229
|
+
}
|
|
230
|
+
export interface MemberIndex {
|
|
231
|
+
AccountId?: string;
|
|
232
|
+
Region?: string;
|
|
233
|
+
Arn?: string;
|
|
234
|
+
Type?: IndexType;
|
|
235
|
+
}
|
|
236
|
+
export interface ListIndexesForMembersOutput {
|
|
237
|
+
Indexes?: MemberIndex[];
|
|
238
|
+
NextToken?: string;
|
|
239
|
+
}
|
|
211
240
|
export interface ListSupportedResourceTypesInput {
|
|
212
241
|
NextToken?: string;
|
|
213
242
|
MaxResults?: number;
|
|
@@ -271,6 +300,9 @@ export declare const ViewFilterSensitiveLog: (obj: View) => any;
|
|
|
271
300
|
export declare const BatchGetViewOutputFilterSensitiveLog: (
|
|
272
301
|
obj: BatchGetViewOutput
|
|
273
302
|
) => any;
|
|
303
|
+
export declare const CreateIndexInputFilterSensitiveLog: (
|
|
304
|
+
obj: CreateIndexInput
|
|
305
|
+
) => any;
|
|
274
306
|
export declare const CreateViewInputFilterSensitiveLog: (
|
|
275
307
|
obj: CreateViewInput
|
|
276
308
|
) => any;
|
|
@@ -286,4 +318,16 @@ export declare const UpdateViewInputFilterSensitiveLog: (
|
|
|
286
318
|
export declare const UpdateViewOutputFilterSensitiveLog: (
|
|
287
319
|
obj: UpdateViewOutput
|
|
288
320
|
) => any;
|
|
321
|
+
export declare const GetIndexOutputFilterSensitiveLog: (
|
|
322
|
+
obj: GetIndexOutput
|
|
323
|
+
) => any;
|
|
324
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
325
|
+
obj: ListTagsForResourceOutput
|
|
326
|
+
) => any;
|
|
289
327
|
export declare const SearchInputFilterSensitiveLog: (obj: SearchInput) => any;
|
|
328
|
+
export declare const TagResourceInputFilterSensitiveLog: (
|
|
329
|
+
obj: TagResourceInput
|
|
330
|
+
) => any;
|
|
331
|
+
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
332
|
+
obj: UntagResourceInput
|
|
333
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListIndexesForMembersCommandInput,
|
|
4
|
+
ListIndexesForMembersCommandOutput,
|
|
5
|
+
} from "../commands/ListIndexesForMembersCommand";
|
|
6
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListIndexesForMembers(
|
|
8
|
+
config: ResourceExplorer2PaginationConfiguration,
|
|
9
|
+
input: ListIndexesForMembersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListIndexesForMembersCommandOutput>;
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
DisassociateDefaultViewCommandInput,
|
|
32
32
|
DisassociateDefaultViewCommandOutput,
|
|
33
33
|
} from "../commands/DisassociateDefaultViewCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetAccountLevelServiceConfigurationCommandInput,
|
|
36
|
+
GetAccountLevelServiceConfigurationCommandOutput,
|
|
37
|
+
} from "../commands/GetAccountLevelServiceConfigurationCommand";
|
|
34
38
|
import {
|
|
35
39
|
GetDefaultViewCommandInput,
|
|
36
40
|
GetDefaultViewCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
ListIndexesCommandInput,
|
|
48
52
|
ListIndexesCommandOutput,
|
|
49
53
|
} from "../commands/ListIndexesCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListIndexesForMembersCommandInput,
|
|
56
|
+
ListIndexesForMembersCommandOutput,
|
|
57
|
+
} from "../commands/ListIndexesForMembersCommand";
|
|
50
58
|
import {
|
|
51
59
|
ListSupportedResourceTypesCommandInput,
|
|
52
60
|
ListSupportedResourceTypesCommandOutput,
|
|
@@ -107,6 +115,10 @@ export declare const se_DisassociateDefaultViewCommand: (
|
|
|
107
115
|
input: DisassociateDefaultViewCommandInput,
|
|
108
116
|
context: __SerdeContext
|
|
109
117
|
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_GetAccountLevelServiceConfigurationCommand: (
|
|
119
|
+
input: GetAccountLevelServiceConfigurationCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
110
122
|
export declare const se_GetDefaultViewCommand: (
|
|
111
123
|
input: GetDefaultViewCommandInput,
|
|
112
124
|
context: __SerdeContext
|
|
@@ -123,6 +135,10 @@ export declare const se_ListIndexesCommand: (
|
|
|
123
135
|
input: ListIndexesCommandInput,
|
|
124
136
|
context: __SerdeContext
|
|
125
137
|
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_ListIndexesForMembersCommand: (
|
|
139
|
+
input: ListIndexesForMembersCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
126
142
|
export declare const se_ListSupportedResourceTypesCommand: (
|
|
127
143
|
input: ListSupportedResourceTypesCommandInput,
|
|
128
144
|
context: __SerdeContext
|
|
@@ -183,6 +199,10 @@ export declare const de_DisassociateDefaultViewCommand: (
|
|
|
183
199
|
output: __HttpResponse,
|
|
184
200
|
context: __SerdeContext
|
|
185
201
|
) => Promise<DisassociateDefaultViewCommandOutput>;
|
|
202
|
+
export declare const de_GetAccountLevelServiceConfigurationCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<GetAccountLevelServiceConfigurationCommandOutput>;
|
|
186
206
|
export declare const de_GetDefaultViewCommand: (
|
|
187
207
|
output: __HttpResponse,
|
|
188
208
|
context: __SerdeContext
|
|
@@ -199,6 +219,10 @@ export declare const de_ListIndexesCommand: (
|
|
|
199
219
|
output: __HttpResponse,
|
|
200
220
|
context: __SerdeContext
|
|
201
221
|
) => Promise<ListIndexesCommandOutput>;
|
|
222
|
+
export declare const de_ListIndexesForMembersCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<ListIndexesForMembersCommandOutput>;
|
|
202
226
|
export declare const de_ListSupportedResourceTypesCommand: (
|
|
203
227
|
output: __HttpResponse,
|
|
204
228
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-explorer-2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Explorer 2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.454.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.1.
|
|
47
|
-
"@smithy/node-http-handler": "^2.1.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.1.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
52
|
-
"@smithy/util-base64": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.454.0",
|
|
25
|
+
"@aws-sdk/core": "3.451.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.451.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.451.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.451.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.451.0",
|
|
33
|
+
"@aws-sdk/types": "3.451.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.451.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.451.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.451.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.0.18",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.2.6",
|
|
39
|
+
"@smithy/hash-node": "^2.0.15",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.15",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.20",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.13",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^2.1.9",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.9",
|
|
49
|
+
"@smithy/smithy-client": "^2.1.15",
|
|
50
|
+
"@smithy/types": "^2.5.0",
|
|
51
|
+
"@smithy/url-parser": "^2.0.13",
|
|
52
|
+
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-endpoints": "^1.0.
|
|
58
|
-
"@smithy/util-retry": "^2.0.
|
|
59
|
-
"@smithy/util-utf8": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.19",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.25",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.4",
|
|
58
|
+
"@smithy/util-retry": "^2.0.6",
|
|
59
|
+
"@smithy/util-utf8": "^2.0.2",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^8.3.2"
|
|
62
62
|
},
|