@aws-sdk/client-resource-groups-tagging-api 3.50.0 → 3.53.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 (40) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ResourceGroupsTaggingAPIServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +86 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +93 -301
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ResourceGroupsTaggingAPIServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +80 -1
  9. package/dist-es/protocols/Aws_json1_1.js +189 -322
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ResourceGroupsTaggingAPIServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/ResourceGroupsTaggingAPI.d.ts +45 -0
  14. package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +81 -0
  15. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  25. package/dist-types/ts3.4/index.d.ts +6 -0
  26. package/dist-types/ts3.4/models/ResourceGroupsTaggingAPIServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +320 -0
  29. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +4 -0
  30. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +4 -0
  31. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +4 -0
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +26 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  40. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./ResourceGroupsTaggingAPIClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ResourceGroupsTaggingAPIServiceException } from "./models/ResourceGroupsTaggingAPIServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.
4
+ */
5
+ export declare class ResourceGroupsTaggingAPIServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
2
3
  /**
3
4
  * <p>Information that shows whether a resource is compliant with the effective tag policy,
4
5
  * including details on any noncompliant tag keys.</p>
@@ -28,10 +29,14 @@ export declare namespace ComplianceDetails {
28
29
  * <p>The target of the operation is currently being modified by a different request. Try
29
30
  * again later.</p>
30
31
  */
31
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
32
- name: "ConcurrentModificationException";
33
- $fault: "client";
32
+ export declare class ConcurrentModificationException extends __BaseException {
33
+ readonly name: "ConcurrentModificationException";
34
+ readonly $fault: "client";
34
35
  Message?: string;
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
35
40
  }
36
41
  /**
37
42
  * <p>The request was denied because performing this operation violates a constraint. </p>
@@ -55,10 +60,14 @@ export interface ConcurrentModificationException extends __SmithyException, $Met
55
60
  * </li>
56
61
  * </ul>
57
62
  */
58
- export interface ConstraintViolationException extends __SmithyException, $MetadataBearer {
59
- name: "ConstraintViolationException";
60
- $fault: "client";
63
+ export declare class ConstraintViolationException extends __BaseException {
64
+ readonly name: "ConstraintViolationException";
65
+ readonly $fault: "client";
61
66
  Message?: string;
67
+ /**
68
+ * @internal
69
+ */
70
+ constructor(opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>);
62
71
  }
63
72
  export interface DescribeReportCreationInput {
64
73
  }
@@ -118,10 +127,14 @@ export declare namespace DescribeReportCreationOutput {
118
127
  * <p>The request processing failed because of an unknown error, exception, or failure. You
119
128
  * can retry the request.</p>
120
129
  */
121
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
122
- name: "InternalServiceException";
123
- $fault: "server";
130
+ export declare class InternalServiceException extends __BaseException {
131
+ readonly name: "InternalServiceException";
132
+ readonly $fault: "server";
124
133
  Message?: string;
134
+ /**
135
+ * @internal
136
+ */
137
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
125
138
  }
126
139
  /**
127
140
  * <p>This error indicates one of the following:</p>
@@ -146,18 +159,26 @@ export interface InternalServiceException extends __SmithyException, $MetadataBe
146
159
  * </li>
147
160
  * </ul>
148
161
  */
149
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
150
- name: "InvalidParameterException";
151
- $fault: "client";
162
+ export declare class InvalidParameterException extends __BaseException {
163
+ readonly name: "InvalidParameterException";
164
+ readonly $fault: "client";
152
165
  Message?: string;
166
+ /**
167
+ * @internal
168
+ */
169
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
153
170
  }
154
171
  /**
155
172
  * <p>The request was denied to limit the frequency of submitted requests.</p>
156
173
  */
157
- export interface ThrottledException extends __SmithyException, $MetadataBearer {
158
- name: "ThrottledException";
159
- $fault: "client";
174
+ export declare class ThrottledException extends __BaseException {
175
+ readonly name: "ThrottledException";
176
+ readonly $fault: "client";
160
177
  Message?: string;
178
+ /**
179
+ * @internal
180
+ */
181
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
161
182
  }
162
183
  export declare enum ErrorCode {
163
184
  INTERNAL_SERVICE_EXCEPTION = "InternalServiceException",
@@ -595,10 +616,14 @@ export declare namespace GetResourcesOutput {
595
616
  * <p>A <code>PaginationToken</code> is valid for a maximum of 15 minutes. Your request was
596
617
  * denied because the specified <code>PaginationToken</code> has expired.</p>
597
618
  */
598
- export interface PaginationTokenExpiredException extends __SmithyException, $MetadataBearer {
599
- name: "PaginationTokenExpiredException";
600
- $fault: "client";
619
+ export declare class PaginationTokenExpiredException extends __BaseException {
620
+ readonly name: "PaginationTokenExpiredException";
621
+ readonly $fault: "client";
601
622
  Message?: string;
623
+ /**
624
+ * @internal
625
+ */
626
+ constructor(opts: __ExceptionOptionType<PaginationTokenExpiredException, __BaseException>);
602
627
  }
603
628
  export interface GetTagKeysInput {
604
629
  /**
@@ -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,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";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ResourceGroupsTaggingAPIServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";