@aws-sdk/client-resource-groups-tagging-api 3.169.0 → 3.171.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/ResourceGroupsTaggingAPI.d.ts +140 -45
- package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +153 -81
- package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- 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/ResourceGroupsTaggingAPIServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +224 -270
- package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -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 { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsTaggingAPIClient";
|
|
14
|
+
export interface GetTagKeysCommandInput extends GetTagKeysInput {}
|
|
15
|
+
export interface GetTagKeysCommandOutput
|
|
16
|
+
extends GetTagKeysOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetTagKeysCommand extends $Command<
|
|
19
|
+
GetTagKeysCommandInput,
|
|
20
|
+
GetTagKeysCommandOutput,
|
|
21
|
+
ResourceGroupsTaggingAPIClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetTagKeysCommandInput;
|
|
24
|
+
constructor(input: GetTagKeysCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetTagKeysCommandInput, GetTagKeysCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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 { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsTaggingAPIClient";
|
|
14
|
+
export interface GetTagValuesCommandInput extends GetTagValuesInput {}
|
|
15
|
+
export interface GetTagValuesCommandOutput
|
|
16
|
+
extends GetTagValuesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetTagValuesCommand extends $Command<
|
|
19
|
+
GetTagValuesCommandInput,
|
|
20
|
+
GetTagValuesCommandOutput,
|
|
21
|
+
ResourceGroupsTaggingAPIClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetTagValuesCommandInput;
|
|
24
|
+
constructor(input: GetTagValuesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetTagValuesCommandInput, GetTagValuesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
StartReportCreationInput,
|
|
10
|
+
StartReportCreationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ResourceGroupsTaggingAPIClient";
|
|
17
|
+
export interface StartReportCreationCommandInput
|
|
18
|
+
extends StartReportCreationInput {}
|
|
19
|
+
export interface StartReportCreationCommandOutput
|
|
20
|
+
extends StartReportCreationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartReportCreationCommand extends $Command<
|
|
23
|
+
StartReportCreationCommandInput,
|
|
24
|
+
StartReportCreationCommandOutput,
|
|
25
|
+
ResourceGroupsTaggingAPIClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartReportCreationCommandInput;
|
|
28
|
+
constructor(input: StartReportCreationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<StartReportCreationCommandInput, StartReportCreationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -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 { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsTaggingAPIClient";
|
|
14
|
+
export interface TagResourcesCommandInput extends TagResourcesInput {}
|
|
15
|
+
export interface TagResourcesCommandOutput
|
|
16
|
+
extends TagResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourcesCommand extends $Command<
|
|
19
|
+
TagResourcesCommandInput,
|
|
20
|
+
TagResourcesCommandOutput,
|
|
21
|
+
ResourceGroupsTaggingAPIClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourcesCommandInput;
|
|
24
|
+
constructor(input: TagResourcesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourcesCommandInput, TagResourcesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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 { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ResourceGroupsTaggingAPIClient";
|
|
14
|
+
export interface UntagResourcesCommandInput extends UntagResourcesInput {}
|
|
15
|
+
export interface UntagResourcesCommandOutput
|
|
16
|
+
extends UntagResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UntagResourcesCommand extends $Command<
|
|
19
|
+
UntagResourcesCommandInput,
|
|
20
|
+
UntagResourcesCommandOutput,
|
|
21
|
+
ResourceGroupsTaggingAPIClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UntagResourcesCommandInput;
|
|
24
|
+
constructor(input: UntagResourcesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagResourcesCommandInput, UntagResourcesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from "./DescribeReportCreationCommand";
|
|
2
|
-
export * from "./GetComplianceSummaryCommand";
|
|
3
|
-
export * from "./GetResourcesCommand";
|
|
4
|
-
export * from "./GetTagKeysCommand";
|
|
5
|
-
export * from "./GetTagValuesCommand";
|
|
6
|
-
export * from "./StartReportCreationCommand";
|
|
7
|
-
export * from "./TagResourcesCommand";
|
|
8
|
-
export * from "./UntagResourcesCommand";
|
|
1
|
+
export * from "./DescribeReportCreationCommand";
|
|
2
|
+
export * from "./GetComplianceSummaryCommand";
|
|
3
|
+
export * from "./GetResourcesCommand";
|
|
4
|
+
export * from "./GetTagKeysCommand";
|
|
5
|
+
export * from "./GetTagValuesCommand";
|
|
6
|
+
export * from "./StartReportCreationCommand";
|
|
7
|
+
export * from "./TagResourcesCommand";
|
|
8
|
+
export * from "./UntagResourcesCommand";
|
|
@@ -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 "./ResourceGroupsTaggingAPI";
|
|
2
|
-
export * from "./ResourceGroupsTaggingAPIClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ResourceGroupsTaggingAPIServiceException } from "./models/ResourceGroupsTaggingAPIServiceException";
|
|
1
|
+
export * from "./ResourceGroupsTaggingAPI";
|
|
2
|
+
export * from "./ResourceGroupsTaggingAPIClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ResourceGroupsTaggingAPIServiceException } from "./models/ResourceGroupsTaggingAPIServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class ResourceGroupsTaggingAPIServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|