@aws-sdk/client-resource-groups 3.1086.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/ResourceGroups.d.ts +81 -122
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +12 -40
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelTagSyncTaskCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTagSyncTaskCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListGroupingStatusesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagSyncTasksCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartTagSyncTaskCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ResourceGroupsClientResolvedConfig } from "../ResourceGroupsClient";
|
|
15
|
-
export interface ResourceGroupsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ResourceGroupsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ResourceGroupsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ResourceGroupsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ResourceGroupsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ResourceGroupsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultResourceGroupsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ResourceGroupsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ResourceGroupsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ResourceGroupsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ResourceGroupsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ResourceGroupsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ResourceGroupsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultResourceGroupsHttpAuthSchemeProvider: ResourceGroupsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ResourceGroupsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ResourceGroupsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ResourceGroupsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ResourceGroupsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -5,7 +5,7 @@ export interface CancelTagSyncTaskCommandInput extends CancelTagSyncTaskInput {}
|
|
|
5
5
|
export interface CancelTagSyncTaskCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const CancelTagSyncTaskCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: CancelTagSyncTaskCommandInput
|
|
8
|
+
input: CancelTagSyncTaskCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
CancelTagSyncTaskCommandInput,
|
|
11
11
|
CancelTagSyncTaskCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const CancelTagSyncTaskCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: CancelTagSyncTaskCommandInput
|
|
17
|
+
input: CancelTagSyncTaskCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
CancelTagSyncTaskCommandInput,
|
|
20
20
|
CancelTagSyncTaskCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateGroupInput, CreateGroupOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateGroupCommandInput extends CreateGroupInput {}
|
|
5
|
-
export interface CreateGroupCommandOutput
|
|
6
|
-
extends CreateGroupOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateGroupCommandInput
|
|
8
|
+
input: CreateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateGroupCommandInput,
|
|
13
11
|
CreateGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateGroupCommandInput
|
|
17
|
+
input: CreateGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateGroupCommandInput,
|
|
22
20
|
CreateGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteGroupInput, DeleteGroupOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteGroupCommandInput extends DeleteGroupInput {}
|
|
5
|
-
export interface DeleteGroupCommandOutput
|
|
6
|
-
extends DeleteGroupOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteGroupCommandInput
|
|
8
|
+
input: DeleteGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteGroupCommandInput,
|
|
13
11
|
DeleteGroupCommandOutput,
|
|
@@ -3,11 +3,10 @@ import { GetAccountSettingsOutput } from "../models/models_0";
|
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetAccountSettingsCommandInput {}
|
|
5
5
|
export interface GetAccountSettingsCommandOutput
|
|
6
|
-
extends GetAccountSettingsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAccountSettingsOutput, __MetadataBearer {}
|
|
8
7
|
declare const GetAccountSettingsCommand_base: {
|
|
9
8
|
new (
|
|
10
|
-
input: GetAccountSettingsCommandInput
|
|
9
|
+
input: GetAccountSettingsCommandInput,
|
|
11
10
|
): import("@smithy/core/client").CommandImpl<
|
|
12
11
|
GetAccountSettingsCommandInput,
|
|
13
12
|
GetAccountSettingsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetGroupInput, GetGroupOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetGroupCommandInput extends GetGroupInput {}
|
|
5
|
-
export interface GetGroupCommandOutput
|
|
6
|
-
extends GetGroupOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetGroupCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetGroupCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetGroupCommandInput,
|
|
11
11
|
GetGroupCommandOutput,
|
|
12
12
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetGroupConfigurationInput,
|
|
4
|
-
GetGroupConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetGroupConfigurationInput, GetGroupConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetGroupConfigurationCommandInput
|
|
8
|
-
extends GetGroupConfigurationInput {}
|
|
4
|
+
export interface GetGroupConfigurationCommandInput extends GetGroupConfigurationInput {}
|
|
9
5
|
export interface GetGroupConfigurationCommandOutput
|
|
10
|
-
extends GetGroupConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetGroupConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetGroupConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetGroupConfigurationCommandInput
|
|
9
|
+
input: GetGroupConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetGroupConfigurationCommandInput,
|
|
17
12
|
GetGroupConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetGroupQueryInput, GetGroupQueryOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetGroupQueryCommandInput extends GetGroupQueryInput {}
|
|
5
|
-
export interface GetGroupQueryCommandOutput
|
|
6
|
-
extends GetGroupQueryOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetGroupQueryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetGroupQueryCommandInput
|
|
8
|
+
input: GetGroupQueryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetGroupQueryCommandInput,
|
|
13
11
|
GetGroupQueryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetTagSyncTaskInput, GetTagSyncTaskOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetTagSyncTaskCommandInput extends GetTagSyncTaskInput {}
|
|
5
|
-
export interface GetTagSyncTaskCommandOutput
|
|
6
|
-
extends GetTagSyncTaskOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetTagSyncTaskCommandOutput extends GetTagSyncTaskOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetTagSyncTaskCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetTagSyncTaskCommandInput
|
|
8
|
+
input: GetTagSyncTaskCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetTagSyncTaskCommandInput,
|
|
13
11
|
GetTagSyncTaskCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetTagSyncTaskCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetTagSyncTaskCommandInput
|
|
17
|
+
input: GetTagSyncTaskCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetTagSyncTaskCommandInput,
|
|
22
20
|
GetTagSyncTaskCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetTagsCommandInput extends GetTagsInput {}
|
|
5
5
|
export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {}
|
|
6
6
|
declare const GetTagsCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetTagsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetTagsCommandInput,
|
|
9
11
|
GetTagsCommandOutput,
|
|
10
12
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetTagsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetTagsCommandInput,
|
|
16
20
|
GetTagsCommandOutput,
|
|
17
21
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GroupResourcesInput, GroupResourcesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GroupResourcesCommandInput extends GroupResourcesInput {}
|
|
5
|
-
export interface GroupResourcesCommandOutput
|
|
6
|
-
extends GroupResourcesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __MetadataBearer {}
|
|
8
6
|
declare const GroupResourcesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GroupResourcesCommandInput
|
|
8
|
+
input: GroupResourcesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GroupResourcesCommandInput,
|
|
13
11
|
GroupResourcesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GroupResourcesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GroupResourcesCommandInput
|
|
17
|
+
input: GroupResourcesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GroupResourcesCommandInput,
|
|
22
20
|
GroupResourcesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupResourcesInput,
|
|
4
|
-
ListGroupResourcesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListGroupResourcesInput, ListGroupResourcesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListGroupResourcesCommandInput
|
|
8
|
-
extends ListGroupResourcesInput {}
|
|
4
|
+
export interface ListGroupResourcesCommandInput extends ListGroupResourcesInput {}
|
|
9
5
|
export interface ListGroupResourcesCommandOutput
|
|
10
|
-
extends ListGroupResourcesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListGroupResourcesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListGroupResourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListGroupResourcesCommandInput
|
|
9
|
+
input: ListGroupResourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListGroupResourcesCommandInput,
|
|
17
12
|
ListGroupResourcesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupingStatusesInput,
|
|
4
|
-
ListGroupingStatusesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListGroupingStatusesInput, ListGroupingStatusesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListGroupingStatusesCommandInput
|
|
8
|
-
extends ListGroupingStatusesInput {}
|
|
4
|
+
export interface ListGroupingStatusesCommandInput extends ListGroupingStatusesInput {}
|
|
9
5
|
export interface ListGroupingStatusesCommandOutput
|
|
10
|
-
extends ListGroupingStatusesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListGroupingStatusesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListGroupingStatusesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListGroupingStatusesCommandInput
|
|
9
|
+
input: ListGroupingStatusesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListGroupingStatusesCommandInput,
|
|
17
12
|
ListGroupingStatusesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListGroupingStatusesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListGroupingStatusesCommandInput
|
|
18
|
+
input: ListGroupingStatusesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListGroupingStatusesCommandInput,
|
|
26
21
|
ListGroupingStatusesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListGroupsInput, ListGroupsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListGroupsCommandInput extends ListGroupsInput {}
|
|
5
|
-
export interface ListGroupsCommandOutput
|
|
6
|
-
extends ListGroupsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListGroupsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListGroupsCommandInput
|
|
8
|
+
input: ListGroupsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListGroupsCommandInput,
|
|
13
11
|
ListGroupsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagSyncTasksInput,
|
|
4
|
-
ListTagSyncTasksOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagSyncTasksInput, ListTagSyncTasksOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListTagSyncTasksCommandInput extends ListTagSyncTasksInput {}
|
|
8
|
-
export interface ListTagSyncTasksCommandOutput
|
|
9
|
-
extends ListTagSyncTasksOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListTagSyncTasksCommandOutput extends ListTagSyncTasksOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListTagSyncTasksCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListTagSyncTasksCommandInput
|
|
8
|
+
input: ListTagSyncTasksCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListTagSyncTasksCommandInput,
|
|
16
11
|
ListTagSyncTasksCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutGroupConfigurationInput,
|
|
4
|
-
PutGroupConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutGroupConfigurationInput, PutGroupConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutGroupConfigurationCommandInput
|
|
8
|
-
extends PutGroupConfigurationInput {}
|
|
4
|
+
export interface PutGroupConfigurationCommandInput extends PutGroupConfigurationInput {}
|
|
9
5
|
export interface PutGroupConfigurationCommandOutput
|
|
10
|
-
extends PutGroupConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutGroupConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const PutGroupConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutGroupConfigurationCommandInput
|
|
9
|
+
input: PutGroupConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutGroupConfigurationCommandInput,
|
|
17
12
|
PutGroupConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchResourcesInput,
|
|
4
|
-
SearchResourcesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SearchResourcesInput, SearchResourcesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SearchResourcesCommandInput extends SearchResourcesInput {}
|
|
8
|
-
export interface SearchResourcesCommandOutput
|
|
9
|
-
extends SearchResourcesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __MetadataBearer {}
|
|
11
6
|
declare const SearchResourcesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SearchResourcesCommandInput
|
|
8
|
+
input: SearchResourcesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SearchResourcesCommandInput,
|
|
16
11
|
SearchResourcesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SearchResourcesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SearchResourcesCommandInput
|
|
17
|
+
input: SearchResourcesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SearchResourcesCommandInput,
|
|
25
20
|
SearchResourcesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartTagSyncTaskInput,
|
|
4
|
-
StartTagSyncTaskOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartTagSyncTaskInput, StartTagSyncTaskOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartTagSyncTaskCommandInput extends StartTagSyncTaskInput {}
|
|
8
|
-
export interface StartTagSyncTaskCommandOutput
|
|
9
|
-
extends StartTagSyncTaskOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartTagSyncTaskCommandOutput extends StartTagSyncTaskOutput, __MetadataBearer {}
|
|
11
6
|
declare const StartTagSyncTaskCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartTagSyncTaskCommandInput
|
|
8
|
+
input: StartTagSyncTaskCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartTagSyncTaskCommandInput,
|
|
16
11
|
StartTagSyncTaskCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartTagSyncTaskCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartTagSyncTaskCommandInput
|
|
17
|
+
input: StartTagSyncTaskCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartTagSyncTaskCommandInput,
|
|
25
20
|
StartTagSyncTaskCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface TagCommandInput extends TagInput {}
|
|
5
5
|
export interface TagCommandOutput extends TagOutput, __MetadataBearer {}
|
|
6
6
|
declare const TagCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: TagCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
TagCommandInput,
|
|
9
11
|
TagCommandOutput,
|
|
10
12
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: TagCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
TagCommandInput,
|
|
16
20
|
TagCommandOutput,
|
|
17
21
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UngroupResourcesInput,
|
|
4
|
-
UngroupResourcesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UngroupResourcesInput, UngroupResourcesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UngroupResourcesCommandInput extends UngroupResourcesInput {}
|
|
8
|
-
export interface UngroupResourcesCommandOutput
|
|
9
|
-
extends UngroupResourcesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, __MetadataBearer {}
|
|
11
6
|
declare const UngroupResourcesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UngroupResourcesCommandInput
|
|
8
|
+
input: UngroupResourcesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UngroupResourcesCommandInput,
|
|
16
11
|
UngroupResourcesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UngroupResourcesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UngroupResourcesCommandInput
|
|
17
|
+
input: UngroupResourcesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UngroupResourcesCommandInput,
|
|
25
20
|
UngroupResourcesCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface UntagCommandInput extends UntagInput {}
|
|
5
5
|
export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {}
|
|
6
6
|
declare const UntagCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: UntagCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
UntagCommandInput,
|
|
9
11
|
UntagCommandOutput,
|
|
10
12
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: UntagCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
UntagCommandInput,
|
|
16
20
|
UntagCommandOutput,
|
|
17
21
|
import("..").ResourceGroupsClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAccountSettingsInput,
|
|
4
|
-
UpdateAccountSettingsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAccountSettingsCommandInput
|
|
8
|
-
extends UpdateAccountSettingsInput {}
|
|
4
|
+
export interface UpdateAccountSettingsCommandInput extends UpdateAccountSettingsInput {}
|
|
9
5
|
export interface UpdateAccountSettingsCommandOutput
|
|
10
|
-
extends UpdateAccountSettingsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAccountSettingsOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAccountSettingsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAccountSettingsCommandInput
|
|
9
|
+
input: UpdateAccountSettingsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAccountSettingsCommandInput,
|
|
17
12
|
UpdateAccountSettingsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateGroupInput, UpdateGroupOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateGroupCommandInput extends UpdateGroupInput {}
|
|
5
|
-
export interface UpdateGroupCommandOutput
|
|
6
|
-
extends UpdateGroupOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataBearer {}
|
|
8
6
|
declare const UpdateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateGroupCommandInput
|
|
8
|
+
input: UpdateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateGroupCommandInput,
|
|
13
11
|
UpdateGroupCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateGroupQueryInput,
|
|
4
|
-
UpdateGroupQueryOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateGroupQueryInput, UpdateGroupQueryOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateGroupQueryCommandInput extends UpdateGroupQueryInput {}
|
|
8
|
-
export interface UpdateGroupQueryCommandOutput
|
|
9
|
-
extends UpdateGroupQueryOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdateGroupQueryCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateGroupQueryCommandInput
|
|
8
|
+
input: UpdateGroupQueryCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateGroupQueryCommandInput,
|
|
16
11
|
UpdateGroupQueryCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateGroupQueryCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateGroupQueryCommandInput
|
|
17
|
+
input: UpdateGroupQueryCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateGroupQueryCommandInput,
|
|
25
20
|
UpdateGroupQueryCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ResourceGroupsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|