@aws-sdk/client-resource-groups 3.296.0 → 3.298.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/dist-cjs/commands/CreateGroupCommand.js +2 -3
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -3
- package/dist-cjs/commands/GetAccountSettingsCommand.js +2 -3
- package/dist-cjs/commands/GetGroupCommand.js +2 -3
- package/dist-cjs/commands/GetGroupConfigurationCommand.js +2 -3
- package/dist-cjs/commands/GetGroupQueryCommand.js +2 -3
- package/dist-cjs/commands/GetTagsCommand.js +2 -3
- package/dist-cjs/commands/GroupResourcesCommand.js +2 -3
- package/dist-cjs/commands/ListGroupResourcesCommand.js +2 -3
- package/dist-cjs/commands/ListGroupsCommand.js +2 -3
- package/dist-cjs/commands/PutGroupConfigurationCommand.js +2 -3
- package/dist-cjs/commands/SearchResourcesCommand.js +2 -3
- package/dist-cjs/commands/TagCommand.js +2 -3
- package/dist-cjs/commands/UngroupResourcesCommand.js +2 -3
- package/dist-cjs/commands/UntagCommand.js +2 -3
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +2 -3
- package/dist-cjs/commands/UpdateGroupCommand.js +2 -3
- package/dist-cjs/commands/UpdateGroupQueryCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -206
- package/dist-es/commands/CreateGroupCommand.js +2 -3
- package/dist-es/commands/DeleteGroupCommand.js +2 -3
- package/dist-es/commands/GetAccountSettingsCommand.js +2 -3
- package/dist-es/commands/GetGroupCommand.js +2 -3
- package/dist-es/commands/GetGroupConfigurationCommand.js +2 -3
- package/dist-es/commands/GetGroupQueryCommand.js +2 -3
- package/dist-es/commands/GetTagsCommand.js +2 -3
- package/dist-es/commands/GroupResourcesCommand.js +2 -3
- package/dist-es/commands/ListGroupResourcesCommand.js +2 -3
- package/dist-es/commands/ListGroupsCommand.js +2 -3
- package/dist-es/commands/PutGroupConfigurationCommand.js +2 -3
- package/dist-es/commands/SearchResourcesCommand.js +2 -3
- package/dist-es/commands/TagCommand.js +2 -3
- package/dist-es/commands/UngroupResourcesCommand.js +2 -3
- package/dist-es/commands/UntagCommand.js +2 -3
- package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -3
- package/dist-es/commands/UpdateGroupCommand.js +2 -3
- package/dist-es/commands/UpdateGroupQueryCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -153
- package/dist-types/ResourceGroups.d.ts +19 -0
- package/dist-types/ResourceGroupsClient.d.ts +24 -4
- package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupQueryCommand.d.ts +16 -0
- package/dist-types/commands/GetTagsCommand.d.ts +16 -0
- package/dist-types/commands/GroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutGroupConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SearchResourcesCommand.d.ts +16 -0
- package/dist-types/commands/TagCommand.d.ts +16 -0
- package/dist-types/commands/UngroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/UntagCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupQueryCommand.d.ts +16 -0
- package/dist-types/models/ResourceGroupsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +163 -215
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListGroupResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchResourcesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -135
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { ResourceGroupsClient } from "../ResourceGroupsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface ResourceGroupsPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: ResourceGroupsClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput } from "../commands/ListGroupResourcesCommand";
|
|
3
3
|
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListGroupResources(config: ResourceGroupsPaginationConfiguration, input: ListGroupResourcesCommandInput, ...additionalArguments: any): Paginator<ListGroupResourcesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
3
3
|
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListGroups(config: ResourceGroupsPaginationConfiguration, input: ListGroupsCommandInput, ...additionalArguments: any): Paginator<ListGroupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { SearchResourcesCommandInput, SearchResourcesCommandOutput } from "../commands/SearchResourcesCommand";
|
|
3
3
|
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateSearchResources(config: ResourceGroupsPaginationConfiguration, input: SearchResourcesCommandInput, ...additionalArguments: any): Paginator<SearchResourcesCommandOutput>;
|
|
@@ -301,138 +301,3 @@ export interface UpdateGroupQueryInput {
|
|
|
301
301
|
export interface UpdateGroupQueryOutput {
|
|
302
302
|
GroupQuery?: GroupQuery;
|
|
303
303
|
}
|
|
304
|
-
export declare const AccountSettingsFilterSensitiveLog: (
|
|
305
|
-
obj: AccountSettings
|
|
306
|
-
) => any;
|
|
307
|
-
export declare const GroupConfigurationParameterFilterSensitiveLog: (
|
|
308
|
-
obj: GroupConfigurationParameter
|
|
309
|
-
) => any;
|
|
310
|
-
export declare const GroupConfigurationItemFilterSensitiveLog: (
|
|
311
|
-
obj: GroupConfigurationItem
|
|
312
|
-
) => any;
|
|
313
|
-
export declare const ResourceQueryFilterSensitiveLog: (
|
|
314
|
-
obj: ResourceQuery
|
|
315
|
-
) => any;
|
|
316
|
-
export declare const CreateGroupInputFilterSensitiveLog: (
|
|
317
|
-
obj: CreateGroupInput
|
|
318
|
-
) => any;
|
|
319
|
-
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
320
|
-
export declare const GroupConfigurationFilterSensitiveLog: (
|
|
321
|
-
obj: GroupConfiguration
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const CreateGroupOutputFilterSensitiveLog: (
|
|
324
|
-
obj: CreateGroupOutput
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const DeleteGroupInputFilterSensitiveLog: (
|
|
327
|
-
obj: DeleteGroupInput
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const DeleteGroupOutputFilterSensitiveLog: (
|
|
330
|
-
obj: DeleteGroupOutput
|
|
331
|
-
) => any;
|
|
332
|
-
export declare const GetAccountSettingsOutputFilterSensitiveLog: (
|
|
333
|
-
obj: GetAccountSettingsOutput
|
|
334
|
-
) => any;
|
|
335
|
-
export declare const GetGroupInputFilterSensitiveLog: (
|
|
336
|
-
obj: GetGroupInput
|
|
337
|
-
) => any;
|
|
338
|
-
export declare const GetGroupOutputFilterSensitiveLog: (
|
|
339
|
-
obj: GetGroupOutput
|
|
340
|
-
) => any;
|
|
341
|
-
export declare const GetGroupConfigurationInputFilterSensitiveLog: (
|
|
342
|
-
obj: GetGroupConfigurationInput
|
|
343
|
-
) => any;
|
|
344
|
-
export declare const GetGroupConfigurationOutputFilterSensitiveLog: (
|
|
345
|
-
obj: GetGroupConfigurationOutput
|
|
346
|
-
) => any;
|
|
347
|
-
export declare const GetGroupQueryInputFilterSensitiveLog: (
|
|
348
|
-
obj: GetGroupQueryInput
|
|
349
|
-
) => any;
|
|
350
|
-
export declare const GroupQueryFilterSensitiveLog: (obj: GroupQuery) => any;
|
|
351
|
-
export declare const GetGroupQueryOutputFilterSensitiveLog: (
|
|
352
|
-
obj: GetGroupQueryOutput
|
|
353
|
-
) => any;
|
|
354
|
-
export declare const GetTagsInputFilterSensitiveLog: (obj: GetTagsInput) => any;
|
|
355
|
-
export declare const GetTagsOutputFilterSensitiveLog: (
|
|
356
|
-
obj: GetTagsOutput
|
|
357
|
-
) => any;
|
|
358
|
-
export declare const GroupResourcesInputFilterSensitiveLog: (
|
|
359
|
-
obj: GroupResourcesInput
|
|
360
|
-
) => any;
|
|
361
|
-
export declare const FailedResourceFilterSensitiveLog: (
|
|
362
|
-
obj: FailedResource
|
|
363
|
-
) => any;
|
|
364
|
-
export declare const PendingResourceFilterSensitiveLog: (
|
|
365
|
-
obj: PendingResource
|
|
366
|
-
) => any;
|
|
367
|
-
export declare const GroupResourcesOutputFilterSensitiveLog: (
|
|
368
|
-
obj: GroupResourcesOutput
|
|
369
|
-
) => any;
|
|
370
|
-
export declare const ResourceFilterFilterSensitiveLog: (
|
|
371
|
-
obj: ResourceFilter
|
|
372
|
-
) => any;
|
|
373
|
-
export declare const ListGroupResourcesInputFilterSensitiveLog: (
|
|
374
|
-
obj: ListGroupResourcesInput
|
|
375
|
-
) => any;
|
|
376
|
-
export declare const QueryErrorFilterSensitiveLog: (obj: QueryError) => any;
|
|
377
|
-
export declare const ResourceIdentifierFilterSensitiveLog: (
|
|
378
|
-
obj: ResourceIdentifier
|
|
379
|
-
) => any;
|
|
380
|
-
export declare const ResourceStatusFilterSensitiveLog: (
|
|
381
|
-
obj: ResourceStatus
|
|
382
|
-
) => any;
|
|
383
|
-
export declare const ListGroupResourcesItemFilterSensitiveLog: (
|
|
384
|
-
obj: ListGroupResourcesItem
|
|
385
|
-
) => any;
|
|
386
|
-
export declare const ListGroupResourcesOutputFilterSensitiveLog: (
|
|
387
|
-
obj: ListGroupResourcesOutput
|
|
388
|
-
) => any;
|
|
389
|
-
export declare const GroupFilterFilterSensitiveLog: (obj: GroupFilter) => any;
|
|
390
|
-
export declare const ListGroupsInputFilterSensitiveLog: (
|
|
391
|
-
obj: ListGroupsInput
|
|
392
|
-
) => any;
|
|
393
|
-
export declare const GroupIdentifierFilterSensitiveLog: (
|
|
394
|
-
obj: GroupIdentifier
|
|
395
|
-
) => any;
|
|
396
|
-
export declare const ListGroupsOutputFilterSensitiveLog: (
|
|
397
|
-
obj: ListGroupsOutput
|
|
398
|
-
) => any;
|
|
399
|
-
export declare const PutGroupConfigurationInputFilterSensitiveLog: (
|
|
400
|
-
obj: PutGroupConfigurationInput
|
|
401
|
-
) => any;
|
|
402
|
-
export declare const PutGroupConfigurationOutputFilterSensitiveLog: (
|
|
403
|
-
obj: PutGroupConfigurationOutput
|
|
404
|
-
) => any;
|
|
405
|
-
export declare const SearchResourcesInputFilterSensitiveLog: (
|
|
406
|
-
obj: SearchResourcesInput
|
|
407
|
-
) => any;
|
|
408
|
-
export declare const SearchResourcesOutputFilterSensitiveLog: (
|
|
409
|
-
obj: SearchResourcesOutput
|
|
410
|
-
) => any;
|
|
411
|
-
export declare const TagInputFilterSensitiveLog: (obj: TagInput) => any;
|
|
412
|
-
export declare const TagOutputFilterSensitiveLog: (obj: TagOutput) => any;
|
|
413
|
-
export declare const UngroupResourcesInputFilterSensitiveLog: (
|
|
414
|
-
obj: UngroupResourcesInput
|
|
415
|
-
) => any;
|
|
416
|
-
export declare const UngroupResourcesOutputFilterSensitiveLog: (
|
|
417
|
-
obj: UngroupResourcesOutput
|
|
418
|
-
) => any;
|
|
419
|
-
export declare const UntagInputFilterSensitiveLog: (obj: UntagInput) => any;
|
|
420
|
-
export declare const UntagOutputFilterSensitiveLog: (obj: UntagOutput) => any;
|
|
421
|
-
export declare const UpdateAccountSettingsInputFilterSensitiveLog: (
|
|
422
|
-
obj: UpdateAccountSettingsInput
|
|
423
|
-
) => any;
|
|
424
|
-
export declare const UpdateAccountSettingsOutputFilterSensitiveLog: (
|
|
425
|
-
obj: UpdateAccountSettingsOutput
|
|
426
|
-
) => any;
|
|
427
|
-
export declare const UpdateGroupInputFilterSensitiveLog: (
|
|
428
|
-
obj: UpdateGroupInput
|
|
429
|
-
) => any;
|
|
430
|
-
export declare const UpdateGroupOutputFilterSensitiveLog: (
|
|
431
|
-
obj: UpdateGroupOutput
|
|
432
|
-
) => any;
|
|
433
|
-
export declare const UpdateGroupQueryInputFilterSensitiveLog: (
|
|
434
|
-
obj: UpdateGroupQueryInput
|
|
435
|
-
) => any;
|
|
436
|
-
export declare const UpdateGroupQueryOutputFilterSensitiveLog: (
|
|
437
|
-
obj: UpdateGroupQueryOutput
|
|
438
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.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",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo resource-groups"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|