@aws-sdk/client-resource-groups-tagging-api 3.50.0 → 3.51.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ResourceGroupsTaggingAPI.d.ts +45 -0
  3. package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +81 -0
  4. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  14. package/dist-types/ts3.4/index.d.ts +5 -0
  15. package/dist-types/ts3.4/models/index.d.ts +1 -0
  16. package/dist-types/ts3.4/models/models_0.d.ts +307 -0
  17. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +4 -0
  18. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +4 -0
  19. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +4 -0
  20. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +4 -0
  21. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  22. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  23. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +26 -0
  24. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  25. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  26. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  27. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  28. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
@@ -0,0 +1,45 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "./commands/DescribeReportCreationCommand";
3
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "./commands/GetComplianceSummaryCommand";
4
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand";
5
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "./commands/GetTagKeysCommand";
6
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "./commands/GetTagValuesCommand";
7
+ import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "./commands/StartReportCreationCommand";
8
+ import { TagResourcesCommandInput, TagResourcesCommandOutput } from "./commands/TagResourcesCommand";
9
+ import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "./commands/UntagResourcesCommand";
10
+ import { ResourceGroupsTaggingAPIClient } from "./ResourceGroupsTaggingAPIClient";
11
+
12
+ export declare class ResourceGroupsTaggingAPI extends ResourceGroupsTaggingAPIClient {
13
+
14
+ describeReportCreation(args: DescribeReportCreationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReportCreationCommandOutput>;
15
+ describeReportCreation(args: DescribeReportCreationCommandInput, cb: (err: any, data?: DescribeReportCreationCommandOutput) => void): void;
16
+ describeReportCreation(args: DescribeReportCreationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReportCreationCommandOutput) => void): void;
17
+
18
+ getComplianceSummary(args: GetComplianceSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetComplianceSummaryCommandOutput>;
19
+ getComplianceSummary(args: GetComplianceSummaryCommandInput, cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void): void;
20
+ getComplianceSummary(args: GetComplianceSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void): void;
21
+
22
+ getResources(args: GetResourcesCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcesCommandOutput>;
23
+ getResources(args: GetResourcesCommandInput, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
24
+ getResources(args: GetResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
25
+
26
+ getTagKeys(args: GetTagKeysCommandInput, options?: __HttpHandlerOptions): Promise<GetTagKeysCommandOutput>;
27
+ getTagKeys(args: GetTagKeysCommandInput, cb: (err: any, data?: GetTagKeysCommandOutput) => void): void;
28
+ getTagKeys(args: GetTagKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagKeysCommandOutput) => void): void;
29
+
30
+ getTagValues(args: GetTagValuesCommandInput, options?: __HttpHandlerOptions): Promise<GetTagValuesCommandOutput>;
31
+ getTagValues(args: GetTagValuesCommandInput, cb: (err: any, data?: GetTagValuesCommandOutput) => void): void;
32
+ getTagValues(args: GetTagValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagValuesCommandOutput) => void): void;
33
+
34
+ startReportCreation(args: StartReportCreationCommandInput, options?: __HttpHandlerOptions): Promise<StartReportCreationCommandOutput>;
35
+ startReportCreation(args: StartReportCreationCommandInput, cb: (err: any, data?: StartReportCreationCommandOutput) => void): void;
36
+ startReportCreation(args: StartReportCreationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReportCreationCommandOutput) => void): void;
37
+
38
+ tagResources(args: TagResourcesCommandInput, options?: __HttpHandlerOptions): Promise<TagResourcesCommandOutput>;
39
+ tagResources(args: TagResourcesCommandInput, cb: (err: any, data?: TagResourcesCommandOutput) => void): void;
40
+ tagResources(args: TagResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourcesCommandOutput) => void): void;
41
+
42
+ untagResources(args: UntagResourcesCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourcesCommandOutput>;
43
+ untagResources(args: UntagResourcesCommandInput, cb: (err: any, data?: UntagResourcesCommandOutput) => void): void;
44
+ untagResources(args: UntagResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourcesCommandOutput) => void): void;
45
+ }
@@ -0,0 +1,81 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "./commands/DescribeReportCreationCommand";
10
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "./commands/GetComplianceSummaryCommand";
11
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand";
12
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "./commands/GetTagKeysCommand";
13
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "./commands/GetTagValuesCommand";
14
+ import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "./commands/StartReportCreationCommand";
15
+ import { TagResourcesCommandInput, TagResourcesCommandOutput } from "./commands/TagResourcesCommand";
16
+ import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "./commands/UntagResourcesCommand";
17
+ export declare type ServiceInputTypes = DescribeReportCreationCommandInput | GetComplianceSummaryCommandInput | GetResourcesCommandInput | GetTagKeysCommandInput | GetTagValuesCommandInput | StartReportCreationCommandInput | TagResourcesCommandInput | UntagResourcesCommandInput;
18
+ export declare type ServiceOutputTypes = DescribeReportCreationCommandOutput | GetComplianceSummaryCommandOutput | GetResourcesCommandOutput | GetTagKeysCommandOutput | GetTagValuesCommandOutput | StartReportCreationCommandOutput | TagResourcesCommandOutput | UntagResourcesCommandOutput;
19
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
20
+
21
+ requestHandler?: __HttpHandler;
22
+
23
+ sha256?: __HashConstructor;
24
+
25
+ urlParser?: __UrlParser;
26
+
27
+ bodyLengthChecker?: (body: any) => number | undefined;
28
+
29
+ streamCollector?: __StreamCollector;
30
+
31
+ base64Decoder?: __Decoder;
32
+
33
+ base64Encoder?: __Encoder;
34
+
35
+ utf8Decoder?: __Decoder;
36
+
37
+ utf8Encoder?: __Encoder;
38
+
39
+ runtime?: string;
40
+
41
+ disableHostPrefix?: boolean;
42
+
43
+ maxAttempts?: number | __Provider<number>;
44
+
45
+ retryMode?: string | __Provider<string>;
46
+
47
+ logger?: __Logger;
48
+
49
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
50
+
51
+ useFipsEndpoint?: boolean | __Provider<boolean>;
52
+
53
+ serviceId?: string;
54
+
55
+ region?: string | __Provider<string>;
56
+
57
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
58
+
59
+ regionInfoProvider?: RegionInfoProvider;
60
+
61
+ defaultUserAgentProvider?: Provider<__UserAgent>;
62
+
63
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
64
+ }
65
+ declare type ResourceGroupsTaggingAPIClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
66
+
67
+ export interface ResourceGroupsTaggingAPIClientConfig extends ResourceGroupsTaggingAPIClientConfigType {
68
+ }
69
+ declare type ResourceGroupsTaggingAPIClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
70
+
71
+ export interface ResourceGroupsTaggingAPIClientResolvedConfig extends ResourceGroupsTaggingAPIClientResolvedConfigType {
72
+ }
73
+
74
+ export declare class ResourceGroupsTaggingAPIClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ResourceGroupsTaggingAPIClientResolvedConfig> {
75
+
76
+ readonly config: ResourceGroupsTaggingAPIClientResolvedConfig;
77
+ constructor(configuration: ResourceGroupsTaggingAPIClientConfig);
78
+
79
+ destroy(): void;
80
+ }
81
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface DescribeReportCreationCommandInput extends DescribeReportCreationInput {
6
+ }
7
+ export interface DescribeReportCreationCommandOutput extends DescribeReportCreationOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeReportCreationCommand extends $Command<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: DescribeReportCreationCommandInput;
12
+ constructor(input: DescribeReportCreationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface GetComplianceSummaryCommandInput extends GetComplianceSummaryInput {
6
+ }
7
+ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetComplianceSummaryCommand extends $Command<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: GetComplianceSummaryCommandInput;
12
+ constructor(input: GetComplianceSummaryCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface GetResourcesCommandInput extends GetResourcesInput {
6
+ }
7
+ export interface GetResourcesCommandOutput extends GetResourcesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetResourcesCommand extends $Command<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: GetResourcesCommandInput;
12
+ constructor(input: GetResourcesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface GetTagKeysCommandInput extends GetTagKeysInput {
6
+ }
7
+ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTagKeysCommand extends $Command<GetTagKeysCommandInput, GetTagKeysCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: GetTagKeysCommandInput;
12
+ constructor(input: GetTagKeysCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagKeysCommandInput, GetTagKeysCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface GetTagValuesCommandInput extends GetTagValuesInput {
6
+ }
7
+ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTagValuesCommand extends $Command<GetTagValuesCommandInput, GetTagValuesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: GetTagValuesCommandInput;
12
+ constructor(input: GetTagValuesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagValuesCommandInput, GetTagValuesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface StartReportCreationCommandInput extends StartReportCreationInput {
6
+ }
7
+ export interface StartReportCreationCommandOutput extends StartReportCreationOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartReportCreationCommand extends $Command<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: StartReportCreationCommandInput;
12
+ constructor(input: StartReportCreationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartReportCreationCommandInput, StartReportCreationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface TagResourcesCommandInput extends TagResourcesInput {
6
+ }
7
+ export interface TagResourcesCommandOutput extends TagResourcesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourcesCommand extends $Command<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: TagResourcesCommandInput;
12
+ constructor(input: TagResourcesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourcesCommandInput, TagResourcesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
4
+ import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
+ export interface UntagResourcesCommandInput extends UntagResourcesInput {
6
+ }
7
+ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourcesCommand extends $Command<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
+ readonly input: UntagResourcesCommandInput;
12
+ constructor(input: UntagResourcesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourcesCommandInput, UntagResourcesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +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";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,5 @@
1
+ export * from "./ResourceGroupsTaggingAPI";
2
+ export * from "./ResourceGroupsTaggingAPIClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,307 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface ComplianceDetails {
4
+
5
+ NoncompliantKeys?: string[];
6
+
7
+ KeysWithNoncompliantValues?: string[];
8
+
9
+ ComplianceStatus?: boolean;
10
+ }
11
+ export declare namespace ComplianceDetails {
12
+
13
+ const filterSensitiveLog: (obj: ComplianceDetails) => any;
14
+ }
15
+
16
+ export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
17
+ name: "ConcurrentModificationException";
18
+ $fault: "client";
19
+ Message?: string;
20
+ }
21
+
22
+ export interface ConstraintViolationException extends __SmithyException, $MetadataBearer {
23
+ name: "ConstraintViolationException";
24
+ $fault: "client";
25
+ Message?: string;
26
+ }
27
+ export interface DescribeReportCreationInput {
28
+ }
29
+ export declare namespace DescribeReportCreationInput {
30
+
31
+ const filterSensitiveLog: (obj: DescribeReportCreationInput) => any;
32
+ }
33
+ export interface DescribeReportCreationOutput {
34
+
35
+ Status?: string;
36
+
37
+ S3Location?: string;
38
+
39
+ StartDate?: string;
40
+
41
+ ErrorMessage?: string;
42
+ }
43
+ export declare namespace DescribeReportCreationOutput {
44
+
45
+ const filterSensitiveLog: (obj: DescribeReportCreationOutput) => any;
46
+ }
47
+
48
+ export interface InternalServiceException extends __SmithyException, $MetadataBearer {
49
+ name: "InternalServiceException";
50
+ $fault: "server";
51
+ Message?: string;
52
+ }
53
+
54
+ export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
55
+ name: "InvalidParameterException";
56
+ $fault: "client";
57
+ Message?: string;
58
+ }
59
+
60
+ export interface ThrottledException extends __SmithyException, $MetadataBearer {
61
+ name: "ThrottledException";
62
+ $fault: "client";
63
+ Message?: string;
64
+ }
65
+ export declare enum ErrorCode {
66
+ INTERNAL_SERVICE_EXCEPTION = "InternalServiceException",
67
+ INVALID_PARAMETER_EXCEPTION = "InvalidParameterException"
68
+ }
69
+
70
+ export interface FailureInfo {
71
+
72
+ StatusCode?: number;
73
+
74
+ ErrorCode?: ErrorCode | string;
75
+
76
+ ErrorMessage?: string;
77
+ }
78
+ export declare namespace FailureInfo {
79
+
80
+ const filterSensitiveLog: (obj: FailureInfo) => any;
81
+ }
82
+ export declare enum GroupByAttribute {
83
+ REGION = "REGION",
84
+ RESOURCE_TYPE = "RESOURCE_TYPE",
85
+ TARGET_ID = "TARGET_ID"
86
+ }
87
+ export interface GetComplianceSummaryInput {
88
+
89
+ TargetIdFilters?: string[];
90
+
91
+ RegionFilters?: string[];
92
+
93
+ ResourceTypeFilters?: string[];
94
+
95
+ TagKeyFilters?: string[];
96
+
97
+ GroupBy?: (GroupByAttribute | string)[];
98
+
99
+ MaxResults?: number;
100
+
101
+ PaginationToken?: string;
102
+ }
103
+ export declare namespace GetComplianceSummaryInput {
104
+
105
+ const filterSensitiveLog: (obj: GetComplianceSummaryInput) => any;
106
+ }
107
+ export declare enum TargetIdType {
108
+ ACCOUNT = "ACCOUNT",
109
+ OU = "OU",
110
+ ROOT = "ROOT"
111
+ }
112
+
113
+ export interface Summary {
114
+
115
+ LastUpdated?: string;
116
+
117
+ TargetId?: string;
118
+
119
+ TargetIdType?: TargetIdType | string;
120
+
121
+ Region?: string;
122
+
123
+ ResourceType?: string;
124
+
125
+ NonCompliantResources?: number;
126
+ }
127
+ export declare namespace Summary {
128
+
129
+ const filterSensitiveLog: (obj: Summary) => any;
130
+ }
131
+ export interface GetComplianceSummaryOutput {
132
+
133
+ SummaryList?: Summary[];
134
+
135
+ PaginationToken?: string;
136
+ }
137
+ export declare namespace GetComplianceSummaryOutput {
138
+
139
+ const filterSensitiveLog: (obj: GetComplianceSummaryOutput) => any;
140
+ }
141
+
142
+ export interface TagFilter {
143
+
144
+ Key?: string;
145
+
146
+ Values?: string[];
147
+ }
148
+ export declare namespace TagFilter {
149
+
150
+ const filterSensitiveLog: (obj: TagFilter) => any;
151
+ }
152
+ export interface GetResourcesInput {
153
+
154
+ PaginationToken?: string;
155
+
156
+ TagFilters?: TagFilter[];
157
+
158
+ ResourcesPerPage?: number;
159
+
160
+ TagsPerPage?: number;
161
+
162
+ ResourceTypeFilters?: string[];
163
+
164
+ IncludeComplianceDetails?: boolean;
165
+
166
+ ExcludeCompliantResources?: boolean;
167
+
168
+ ResourceARNList?: string[];
169
+ }
170
+ export declare namespace GetResourcesInput {
171
+
172
+ const filterSensitiveLog: (obj: GetResourcesInput) => any;
173
+ }
174
+
175
+ export interface Tag {
176
+
177
+ Key: string | undefined;
178
+
179
+ Value: string | undefined;
180
+ }
181
+ export declare namespace Tag {
182
+
183
+ const filterSensitiveLog: (obj: Tag) => any;
184
+ }
185
+
186
+ export interface ResourceTagMapping {
187
+
188
+ ResourceARN?: string;
189
+
190
+ Tags?: Tag[];
191
+
192
+ ComplianceDetails?: ComplianceDetails;
193
+ }
194
+ export declare namespace ResourceTagMapping {
195
+
196
+ const filterSensitiveLog: (obj: ResourceTagMapping) => any;
197
+ }
198
+ export interface GetResourcesOutput {
199
+
200
+ PaginationToken?: string;
201
+
202
+ ResourceTagMappingList?: ResourceTagMapping[];
203
+ }
204
+ export declare namespace GetResourcesOutput {
205
+
206
+ const filterSensitiveLog: (obj: GetResourcesOutput) => any;
207
+ }
208
+
209
+ export interface PaginationTokenExpiredException extends __SmithyException, $MetadataBearer {
210
+ name: "PaginationTokenExpiredException";
211
+ $fault: "client";
212
+ Message?: string;
213
+ }
214
+ export interface GetTagKeysInput {
215
+
216
+ PaginationToken?: string;
217
+ }
218
+ export declare namespace GetTagKeysInput {
219
+
220
+ const filterSensitiveLog: (obj: GetTagKeysInput) => any;
221
+ }
222
+ export interface GetTagKeysOutput {
223
+
224
+ PaginationToken?: string;
225
+
226
+ TagKeys?: string[];
227
+ }
228
+ export declare namespace GetTagKeysOutput {
229
+
230
+ const filterSensitiveLog: (obj: GetTagKeysOutput) => any;
231
+ }
232
+ export interface GetTagValuesInput {
233
+
234
+ PaginationToken?: string;
235
+
236
+ Key: string | undefined;
237
+ }
238
+ export declare namespace GetTagValuesInput {
239
+
240
+ const filterSensitiveLog: (obj: GetTagValuesInput) => any;
241
+ }
242
+ export interface GetTagValuesOutput {
243
+
244
+ PaginationToken?: string;
245
+
246
+ TagValues?: string[];
247
+ }
248
+ export declare namespace GetTagValuesOutput {
249
+
250
+ const filterSensitiveLog: (obj: GetTagValuesOutput) => any;
251
+ }
252
+ export interface StartReportCreationInput {
253
+
254
+ S3Bucket: string | undefined;
255
+ }
256
+ export declare namespace StartReportCreationInput {
257
+
258
+ const filterSensitiveLog: (obj: StartReportCreationInput) => any;
259
+ }
260
+ export interface StartReportCreationOutput {
261
+ }
262
+ export declare namespace StartReportCreationOutput {
263
+
264
+ const filterSensitiveLog: (obj: StartReportCreationOutput) => any;
265
+ }
266
+ export interface TagResourcesInput {
267
+
268
+ ResourceARNList: string[] | undefined;
269
+
270
+ Tags: {
271
+ [key: string]: string;
272
+ } | undefined;
273
+ }
274
+ export declare namespace TagResourcesInput {
275
+
276
+ const filterSensitiveLog: (obj: TagResourcesInput) => any;
277
+ }
278
+ export interface TagResourcesOutput {
279
+
280
+ FailedResourcesMap?: {
281
+ [key: string]: FailureInfo;
282
+ };
283
+ }
284
+ export declare namespace TagResourcesOutput {
285
+
286
+ const filterSensitiveLog: (obj: TagResourcesOutput) => any;
287
+ }
288
+ export interface UntagResourcesInput {
289
+
290
+ ResourceARNList: string[] | undefined;
291
+
292
+ TagKeys: string[] | undefined;
293
+ }
294
+ export declare namespace UntagResourcesInput {
295
+
296
+ const filterSensitiveLog: (obj: UntagResourcesInput) => any;
297
+ }
298
+ export interface UntagResourcesOutput {
299
+
300
+ FailedResourcesMap?: {
301
+ [key: string]: FailureInfo;
302
+ };
303
+ }
304
+ export declare namespace UntagResourcesOutput {
305
+
306
+ const filterSensitiveLog: (obj: UntagResourcesOutput) => any;
307
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "../commands/GetComplianceSummaryCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetComplianceSummary(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...additionalArguments: any): Paginator<GetComplianceSummaryCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "../commands/GetResourcesCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetResources(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...additionalArguments: any): Paginator<GetResourcesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetTagKeys(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...additionalArguments: any): Paginator<GetTagKeysCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "../commands/GetTagValuesCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetTagValues(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...additionalArguments: any): Paginator<GetTagValuesCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ResourceGroupsTaggingAPI } from "../ResourceGroupsTaggingAPI";
3
+ import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
4
+ export interface ResourceGroupsTaggingAPIPaginationConfiguration extends PaginationConfiguration {
5
+ client: ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient;
6
+ }
@@ -0,0 +1,5 @@
1
+ export * from "./GetComplianceSummaryPaginator";
2
+ export * from "./GetResourcesPaginator";
3
+ export * from "./GetTagKeysPaginator";
4
+ export * from "./GetTagValuesPaginator";
5
+ export * from "./Interfaces";
@@ -0,0 +1,26 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "../commands/DescribeReportCreationCommand";
4
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "../commands/GetComplianceSummaryCommand";
5
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "../commands/GetResourcesCommand";
6
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand";
7
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "../commands/GetTagValuesCommand";
8
+ import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "../commands/StartReportCreationCommand";
9
+ import { TagResourcesCommandInput, TagResourcesCommandOutput } from "../commands/TagResourcesCommand";
10
+ import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "../commands/UntagResourcesCommand";
11
+ export declare const serializeAws_json1_1DescribeReportCreationCommand: (input: DescribeReportCreationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
+ export declare const serializeAws_json1_1GetComplianceSummaryCommand: (input: GetComplianceSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
+ export declare const serializeAws_json1_1GetResourcesCommand: (input: GetResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_json1_1GetTagKeysCommand: (input: GetTagKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const serializeAws_json1_1GetTagValuesCommand: (input: GetTagValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_json1_1StartReportCreationCommand: (input: StartReportCreationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_json1_1TagResourcesCommand: (input: TagResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_json1_1UntagResourcesCommand: (input: UntagResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const deserializeAws_json1_1DescribeReportCreationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReportCreationCommandOutput>;
20
+ export declare const deserializeAws_json1_1GetComplianceSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComplianceSummaryCommandOutput>;
21
+ export declare const deserializeAws_json1_1GetResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcesCommandOutput>;
22
+ export declare const deserializeAws_json1_1GetTagKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagKeysCommandOutput>;
23
+ export declare const deserializeAws_json1_1GetTagValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagValuesCommandOutput>;
24
+ export declare const deserializeAws_json1_1StartReportCreationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartReportCreationCommandOutput>;
25
+ export declare const deserializeAws_json1_1TagResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourcesCommandOutput>;
26
+ export declare const deserializeAws_json1_1UntagResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourcesCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
2
+
3
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resource-groups-tagging-api",
3
3
  "description": "AWS SDK for JavaScript Resource Groups Tagging Api Client for Node.js, Browser and React Native",
4
- "version": "3.50.0",
4
+ "version": "3.51.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",
@@ -18,21 +18,21 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.51.0",
22
+ "@aws-sdk/config-resolver": "3.51.0",
23
+ "@aws-sdk/credential-provider-node": "3.51.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.50.0",
25
25
  "@aws-sdk/hash-node": "3.50.0",
26
26
  "@aws-sdk/invalid-dependency": "3.50.0",
27
27
  "@aws-sdk/middleware-content-length": "3.50.0",
28
28
  "@aws-sdk/middleware-host-header": "3.50.0",
29
29
  "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
30
+ "@aws-sdk/middleware-retry": "3.51.0",
31
31
  "@aws-sdk/middleware-serde": "3.50.0",
32
32
  "@aws-sdk/middleware-signing": "3.50.0",
33
33
  "@aws-sdk/middleware-stack": "3.50.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
35
+ "@aws-sdk/node-config-provider": "3.51.0",
36
36
  "@aws-sdk/node-http-handler": "3.50.0",
37
37
  "@aws-sdk/protocol-http": "3.50.0",
38
38
  "@aws-sdk/smithy-client": "3.50.0",
@@ -43,9 +43,9 @@
43
43
  "@aws-sdk/util-body-length-browser": "3.49.0",
44
44
  "@aws-sdk/util-body-length-node": "3.49.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
48
+ "@aws-sdk/util-user-agent-node": "3.51.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.49.0",
50
50
  "@aws-sdk/util-utf8-node": "3.49.0",
51
51
  "tslib": "^2.3.0"