@aws-sdk/client-resource-groups 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ResourceGroups.d.ts +286 -85
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +220 -89
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +16 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +531 -492
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +194 -50
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GroupResourcesInput, GroupResourcesOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsClient";
|
|
14
|
+
export interface GroupResourcesCommandInput extends GroupResourcesInput {}
|
|
15
|
+
export interface GroupResourcesCommandOutput
|
|
16
|
+
extends GroupResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GroupResourcesCommand extends $Command<
|
|
20
|
+
GroupResourcesCommandInput,
|
|
21
|
+
GroupResourcesCommandOutput,
|
|
22
|
+
ResourceGroupsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GroupResourcesCommandInput;
|
|
25
|
+
constructor(input: GroupResourcesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GroupResourcesCommandInput, GroupResourcesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListGroupResourcesInput,
|
|
10
|
+
ListGroupResourcesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsClient";
|
|
17
|
+
export interface ListGroupResourcesCommandInput
|
|
18
|
+
extends ListGroupResourcesInput {}
|
|
19
|
+
export interface ListGroupResourcesCommandOutput
|
|
20
|
+
extends ListGroupResourcesOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListGroupResourcesCommand extends $Command<
|
|
24
|
+
ListGroupResourcesCommandInput,
|
|
25
|
+
ListGroupResourcesCommandOutput,
|
|
26
|
+
ResourceGroupsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListGroupResourcesCommandInput;
|
|
29
|
+
constructor(input: ListGroupResourcesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListGroupsInput, ListGroupsOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsClient";
|
|
14
|
+
export interface ListGroupsCommandInput extends ListGroupsInput {}
|
|
15
|
+
export interface ListGroupsCommandOutput
|
|
16
|
+
extends ListGroupsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListGroupsCommand extends $Command<
|
|
20
|
+
ListGroupsCommandInput,
|
|
21
|
+
ListGroupsCommandOutput,
|
|
22
|
+
ResourceGroupsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListGroupsCommandInput;
|
|
25
|
+
constructor(input: ListGroupsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
PutGroupConfigurationInput,
|
|
10
|
+
PutGroupConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsClient";
|
|
17
|
+
export interface PutGroupConfigurationCommandInput
|
|
18
|
+
extends PutGroupConfigurationInput {}
|
|
19
|
+
export interface PutGroupConfigurationCommandOutput
|
|
20
|
+
extends PutGroupConfigurationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutGroupConfigurationCommand extends $Command<
|
|
24
|
+
PutGroupConfigurationCommandInput,
|
|
25
|
+
PutGroupConfigurationCommandOutput,
|
|
26
|
+
ResourceGroupsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutGroupConfigurationCommandInput;
|
|
29
|
+
constructor(input: PutGroupConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutGroupConfigurationCommandInput,
|
|
37
|
+
PutGroupConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
SearchResourcesInput,
|
|
10
|
+
SearchResourcesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsClient";
|
|
17
|
+
export interface SearchResourcesCommandInput extends SearchResourcesInput {}
|
|
18
|
+
export interface SearchResourcesCommandOutput
|
|
19
|
+
extends SearchResourcesOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class SearchResourcesCommand extends $Command<
|
|
23
|
+
SearchResourcesCommandInput,
|
|
24
|
+
SearchResourcesCommandOutput,
|
|
25
|
+
ResourceGroupsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SearchResourcesCommandInput;
|
|
28
|
+
constructor(input: SearchResourcesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<SearchResourcesCommandInput, SearchResourcesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { TagInput, TagOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsClient";
|
|
14
|
+
export interface TagCommandInput extends TagInput {}
|
|
15
|
+
export interface TagCommandOutput extends TagOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class TagCommand extends $Command<
|
|
18
|
+
TagCommandInput,
|
|
19
|
+
TagCommandOutput,
|
|
20
|
+
ResourceGroupsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: TagCommandInput;
|
|
23
|
+
constructor(input: TagCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagCommandInput, TagCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UngroupResourcesInput,
|
|
10
|
+
UngroupResourcesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsClient";
|
|
17
|
+
export interface UngroupResourcesCommandInput extends UngroupResourcesInput {}
|
|
18
|
+
export interface UngroupResourcesCommandOutput
|
|
19
|
+
extends UngroupResourcesOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UngroupResourcesCommand extends $Command<
|
|
23
|
+
UngroupResourcesCommandInput,
|
|
24
|
+
UngroupResourcesCommandOutput,
|
|
25
|
+
ResourceGroupsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UngroupResourcesCommandInput;
|
|
28
|
+
constructor(input: UngroupResourcesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UngroupResourcesCommandInput, UngroupResourcesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UntagInput, UntagOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsClient";
|
|
14
|
+
export interface UntagCommandInput extends UntagInput {}
|
|
15
|
+
export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class UntagCommand extends $Command<
|
|
18
|
+
UntagCommandInput,
|
|
19
|
+
UntagCommandOutput,
|
|
20
|
+
ResourceGroupsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UntagCommandInput;
|
|
23
|
+
constructor(input: UntagCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagCommandInput, UntagCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateGroupInput, UpdateGroupOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsClient";
|
|
14
|
+
export interface UpdateGroupCommandInput extends UpdateGroupInput {}
|
|
15
|
+
export interface UpdateGroupCommandOutput
|
|
16
|
+
extends UpdateGroupOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateGroupCommand extends $Command<
|
|
20
|
+
UpdateGroupCommandInput,
|
|
21
|
+
UpdateGroupCommandOutput,
|
|
22
|
+
ResourceGroupsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateGroupCommandInput;
|
|
25
|
+
constructor(input: UpdateGroupCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateGroupQueryInput,
|
|
10
|
+
UpdateGroupQueryOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsClient";
|
|
17
|
+
export interface UpdateGroupQueryCommandInput extends UpdateGroupQueryInput {}
|
|
18
|
+
export interface UpdateGroupQueryCommandOutput
|
|
19
|
+
extends UpdateGroupQueryOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateGroupQueryCommand extends $Command<
|
|
23
|
+
UpdateGroupQueryCommandInput,
|
|
24
|
+
UpdateGroupQueryCommandOutput,
|
|
25
|
+
ResourceGroupsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateGroupQueryCommandInput;
|
|
28
|
+
constructor(input: UpdateGroupQueryCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ResourceGroupsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from "./CreateGroupCommand";
|
|
2
|
-
export * from "./DeleteGroupCommand";
|
|
3
|
-
export * from "./GetGroupCommand";
|
|
4
|
-
export * from "./GetGroupConfigurationCommand";
|
|
5
|
-
export * from "./GetGroupQueryCommand";
|
|
6
|
-
export * from "./GetTagsCommand";
|
|
7
|
-
export * from "./GroupResourcesCommand";
|
|
8
|
-
export * from "./ListGroupResourcesCommand";
|
|
9
|
-
export * from "./ListGroupsCommand";
|
|
10
|
-
export * from "./PutGroupConfigurationCommand";
|
|
11
|
-
export * from "./SearchResourcesCommand";
|
|
12
|
-
export * from "./TagCommand";
|
|
13
|
-
export * from "./UngroupResourcesCommand";
|
|
14
|
-
export * from "./UntagCommand";
|
|
15
|
-
export * from "./UpdateGroupCommand";
|
|
16
|
-
export * from "./UpdateGroupQueryCommand";
|
|
1
|
+
export * from "./CreateGroupCommand";
|
|
2
|
+
export * from "./DeleteGroupCommand";
|
|
3
|
+
export * from "./GetGroupCommand";
|
|
4
|
+
export * from "./GetGroupConfigurationCommand";
|
|
5
|
+
export * from "./GetGroupQueryCommand";
|
|
6
|
+
export * from "./GetTagsCommand";
|
|
7
|
+
export * from "./GroupResourcesCommand";
|
|
8
|
+
export * from "./ListGroupResourcesCommand";
|
|
9
|
+
export * from "./ListGroupsCommand";
|
|
10
|
+
export * from "./PutGroupConfigurationCommand";
|
|
11
|
+
export * from "./SearchResourcesCommand";
|
|
12
|
+
export * from "./TagCommand";
|
|
13
|
+
export * from "./UngroupResourcesCommand";
|
|
14
|
+
export * from "./UntagCommand";
|
|
15
|
+
export * from "./UpdateGroupCommand";
|
|
16
|
+
export * from "./UpdateGroupQueryCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ResourceGroups";
|
|
2
|
-
export * from "./ResourceGroupsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ResourceGroupsServiceException } from "./models/ResourceGroupsServiceException";
|
|
1
|
+
export * from "./ResourceGroups";
|
|
2
|
+
export * from "./ResourceGroupsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ResourceGroupsServiceException } from "./models/ResourceGroupsServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ResourceGroupsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|