@aws-sdk/client-resource-groups-tagging-api 3.477.0 → 3.481.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 (53) hide show
  1. package/dist-cjs/commands/DescribeReportCreationCommand.js +18 -41
  2. package/dist-cjs/commands/GetComplianceSummaryCommand.js +18 -41
  3. package/dist-cjs/commands/GetResourcesCommand.js +18 -41
  4. package/dist-cjs/commands/GetTagKeysCommand.js +18 -41
  5. package/dist-cjs/commands/GetTagValuesCommand.js +18 -41
  6. package/dist-cjs/commands/StartReportCreationCommand.js +18 -41
  7. package/dist-cjs/commands/TagResourcesCommand.js +18 -41
  8. package/dist-cjs/commands/UntagResourcesCommand.js +18 -41
  9. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  10. package/dist-cjs/pagination/GetComplianceSummaryPaginator.js +2 -24
  11. package/dist-cjs/pagination/GetResourcesPaginator.js +2 -24
  12. package/dist-cjs/pagination/GetTagKeysPaginator.js +2 -23
  13. package/dist-cjs/pagination/GetTagValuesPaginator.js +2 -23
  14. package/dist-es/commands/DescribeReportCreationCommand.js +18 -41
  15. package/dist-es/commands/GetComplianceSummaryCommand.js +18 -41
  16. package/dist-es/commands/GetResourcesCommand.js +18 -41
  17. package/dist-es/commands/GetTagKeysCommand.js +18 -41
  18. package/dist-es/commands/GetTagValuesCommand.js +18 -41
  19. package/dist-es/commands/StartReportCreationCommand.js +18 -41
  20. package/dist-es/commands/TagResourcesCommand.js +18 -41
  21. package/dist-es/commands/UntagResourcesCommand.js +18 -41
  22. package/dist-es/endpoint/EndpointParameters.js +6 -0
  23. package/dist-es/pagination/GetComplianceSummaryPaginator.js +2 -23
  24. package/dist-es/pagination/GetResourcesPaginator.js +2 -23
  25. package/dist-es/pagination/GetTagKeysPaginator.js +2 -22
  26. package/dist-es/pagination/GetTagValuesPaginator.js +2 -22
  27. package/dist-types/commands/DescribeReportCreationCommand.d.ts +6 -21
  28. package/dist-types/commands/GetComplianceSummaryCommand.d.ts +6 -21
  29. package/dist-types/commands/GetResourcesCommand.d.ts +6 -21
  30. package/dist-types/commands/GetTagKeysCommand.d.ts +6 -21
  31. package/dist-types/commands/GetTagValuesCommand.d.ts +6 -21
  32. package/dist-types/commands/StartReportCreationCommand.d.ts +6 -21
  33. package/dist-types/commands/TagResourcesCommand.d.ts +6 -21
  34. package/dist-types/commands/UntagResourcesCommand.d.ts +6 -21
  35. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  36. package/dist-types/pagination/GetComplianceSummaryPaginator.d.ts +1 -1
  37. package/dist-types/pagination/GetResourcesPaginator.d.ts +1 -1
  38. package/dist-types/pagination/GetTagKeysPaginator.d.ts +1 -1
  39. package/dist-types/pagination/GetTagValuesPaginator.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +12 -24
  41. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +12 -24
  42. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +14 -23
  45. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +14 -23
  46. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  49. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +3 -3
  50. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +3 -3
  51. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +3 -3
  52. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +3 -3
  53. package/package.json +11 -10
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { GetResourcesCommand, } from "../commands/GetResourcesCommand";
2
3
  import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new GetResourcesCommand(input), ...args);
5
- };
6
- export async function* paginateGetResources(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.PaginationToken = token;
12
- input["ResourcesPerPage"] = config.pageSize;
13
- if (config.client instanceof ResourceGroupsTaggingAPIClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.PaginationToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateGetResources = createPaginator(ResourceGroupsTaggingAPIClient, GetResourcesCommand, "PaginationToken", "PaginationToken", "ResourcesPerPage");
@@ -1,24 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { GetTagKeysCommand } from "../commands/GetTagKeysCommand";
2
3
  import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new GetTagKeysCommand(input), ...args);
5
- };
6
- export async function* paginateGetTagKeys(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.PaginationToken = token;
12
- if (config.client instanceof ResourceGroupsTaggingAPIClient) {
13
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
14
- }
15
- else {
16
- throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
17
- }
18
- yield page;
19
- const prevToken = token;
20
- token = page.PaginationToken;
21
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
22
- }
23
- return undefined;
24
- }
4
+ export const paginateGetTagKeys = createPaginator(ResourceGroupsTaggingAPIClient, GetTagKeysCommand, "PaginationToken", "PaginationToken", "");
@@ -1,24 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { GetTagValuesCommand, } from "../commands/GetTagValuesCommand";
2
3
  import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new GetTagValuesCommand(input), ...args);
5
- };
6
- export async function* paginateGetTagValues(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.PaginationToken = token;
12
- if (config.client instanceof ResourceGroupsTaggingAPIClient) {
13
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
14
- }
15
- else {
16
- throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
17
- }
18
- yield page;
19
- const prevToken = token;
20
- token = page.PaginationToken;
21
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
22
- }
23
- return undefined;
24
- }
4
+ export const paginateGetTagValues = createPaginator(ResourceGroupsTaggingAPIClient, GetTagValuesCommand, "PaginationToken", "PaginationToken", "");
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeReportCreationCommandInput extends DescribeReportCreati
21
20
  */
22
21
  export interface DescribeReportCreationCommandOutput extends DescribeReportCreationOutput, __MetadataBearer {
23
22
  }
23
+ declare const DescribeReportCreationCommand_base: {
24
+ new (input: DescribeReportCreationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Describes the status of the <code>StartReportCreation</code> operation. </p>
@@ -106,23 +109,5 @@ export interface DescribeReportCreationCommandOutput extends DescribeReportCreat
106
109
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
107
110
  *
108
111
  */
109
- export declare class DescribeReportCreationCommand extends $Command<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
110
- readonly input: DescribeReportCreationCommandInput;
111
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
112
- /**
113
- * @public
114
- */
115
- constructor(input: DescribeReportCreationCommandInput);
116
- /**
117
- * @internal
118
- */
119
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput>;
120
- /**
121
- * @internal
122
- */
123
- private serialize;
124
- /**
125
- * @internal
126
- */
127
- private deserialize;
112
+ export declare class DescribeReportCreationCommand extends DescribeReportCreationCommand_base {
128
113
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetComplianceSummaryCommandInput extends GetComplianceSummaryIn
21
20
  */
22
21
  export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetComplianceSummaryCommand_base: {
24
+ new (input: GetComplianceSummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns a table that shows counts of resources that are noncompliant with their tag
@@ -141,23 +144,5 @@ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryO
141
144
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
142
145
  *
143
146
  */
144
- export declare class GetComplianceSummaryCommand extends $Command<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
145
- readonly input: GetComplianceSummaryCommandInput;
146
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
147
- /**
148
- * @public
149
- */
150
- constructor(input: GetComplianceSummaryCommandInput);
151
- /**
152
- * @internal
153
- */
154
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput>;
155
- /**
156
- * @internal
157
- */
158
- private serialize;
159
- /**
160
- * @internal
161
- */
162
- private deserialize;
147
+ export declare class GetComplianceSummaryCommand extends GetComplianceSummaryCommand_base {
163
148
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetResourcesCommandInput extends GetResourcesInput {
21
20
  */
22
21
  export interface GetResourcesCommandOutput extends GetResourcesOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetResourcesCommand_base: {
24
+ new (input: GetResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns all the tagged or previously tagged resources that are located in the
@@ -146,23 +149,5 @@ export interface GetResourcesCommandOutput extends GetResourcesOutput, __Metadat
146
149
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
147
150
  *
148
151
  */
149
- export declare class GetResourcesCommand extends $Command<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
150
- readonly input: GetResourcesCommandInput;
151
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
152
- /**
153
- * @public
154
- */
155
- constructor(input: GetResourcesCommandInput);
156
- /**
157
- * @internal
158
- */
159
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
160
- /**
161
- * @internal
162
- */
163
- private serialize;
164
- /**
165
- * @internal
166
- */
167
- private deserialize;
152
+ export declare class GetResourcesCommand extends GetResourcesCommand_base {
168
153
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetTagKeysCommandInput extends GetTagKeysInput {
21
20
  */
22
21
  export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetTagKeysCommand_base: {
24
+ new (input: GetTagKeysCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagKeysCommandInput, GetTagKeysCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns all tag keys currently in use in the specified Amazon Web Services Region for the calling
@@ -95,23 +98,5 @@ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBea
95
98
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
96
99
  *
97
100
  */
98
- export declare class GetTagKeysCommand extends $Command<GetTagKeysCommandInput, GetTagKeysCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
99
- readonly input: GetTagKeysCommandInput;
100
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
101
- /**
102
- * @public
103
- */
104
- constructor(input: GetTagKeysCommandInput);
105
- /**
106
- * @internal
107
- */
108
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagKeysCommandInput, GetTagKeysCommandOutput>;
109
- /**
110
- * @internal
111
- */
112
- private serialize;
113
- /**
114
- * @internal
115
- */
116
- private deserialize;
101
+ export declare class GetTagKeysCommand extends GetTagKeysCommand_base {
117
102
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetTagValuesCommandInput extends GetTagValuesInput {
21
20
  */
22
21
  export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetTagValuesCommand_base: {
24
+ new (input: GetTagValuesCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagValuesCommandInput, GetTagValuesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns all tag values for the specified key that are used in the specified Amazon Web Services
@@ -96,23 +99,5 @@ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __Metadat
96
99
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
97
100
  *
98
101
  */
99
- export declare class GetTagValuesCommand extends $Command<GetTagValuesCommandInput, GetTagValuesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
100
- readonly input: GetTagValuesCommandInput;
101
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
102
- /**
103
- * @public
104
- */
105
- constructor(input: GetTagValuesCommandInput);
106
- /**
107
- * @internal
108
- */
109
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagValuesCommandInput, GetTagValuesCommandOutput>;
110
- /**
111
- * @internal
112
- */
113
- private serialize;
114
- /**
115
- * @internal
116
- */
117
- private deserialize;
102
+ export declare class GetTagValuesCommand extends GetTagValuesCommand_base {
118
103
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StartReportCreationCommandInput extends StartReportCreationInpu
21
20
  */
22
21
  export interface StartReportCreationCommandOutput extends StartReportCreationOutput, __MetadataBearer {
23
22
  }
23
+ declare const StartReportCreationCommand_base: {
24
+ new (input: StartReportCreationCommandInput): import("@smithy/smithy-client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Generates a report that lists all tagged resources in the accounts across your
@@ -113,23 +116,5 @@ export interface StartReportCreationCommandOutput extends StartReportCreationOut
113
116
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
114
117
  *
115
118
  */
116
- export declare class StartReportCreationCommand extends $Command<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
117
- readonly input: StartReportCreationCommandInput;
118
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
119
- /**
120
- * @public
121
- */
122
- constructor(input: StartReportCreationCommandInput);
123
- /**
124
- * @internal
125
- */
126
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartReportCreationCommandInput, StartReportCreationCommandOutput>;
127
- /**
128
- * @internal
129
- */
130
- private serialize;
131
- /**
132
- * @internal
133
- */
134
- private deserialize;
119
+ export declare class StartReportCreationCommand extends StartReportCreationCommand_base {
135
120
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourcesCommandInput extends TagResourcesInput {
21
20
  */
22
21
  export interface TagResourcesCommandOutput extends TagResourcesOutput, __MetadataBearer {
23
22
  }
23
+ declare const TagResourcesCommand_base: {
24
+ new (input: TagResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Applies one or more tags to the specified resources. Note the following:</p>
@@ -141,23 +144,5 @@ export interface TagResourcesCommandOutput extends TagResourcesOutput, __Metadat
141
144
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
142
145
  *
143
146
  */
144
- export declare class TagResourcesCommand extends $Command<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
145
- readonly input: TagResourcesCommandInput;
146
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
147
- /**
148
- * @public
149
- */
150
- constructor(input: TagResourcesCommandInput);
151
- /**
152
- * @internal
153
- */
154
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourcesCommandInput, TagResourcesCommandOutput>;
155
- /**
156
- * @internal
157
- */
158
- private serialize;
159
- /**
160
- * @internal
161
- */
162
- private deserialize;
147
+ export declare class TagResourcesCommand extends TagResourcesCommand_base {
163
148
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
5
4
  import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourcesCommandInput extends UntagResourcesInput {
21
20
  */
22
21
  export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourcesCommand_base: {
24
+ new (input: UntagResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes the specified tags from the specified resources. When you specify a tag key,
@@ -127,23 +130,5 @@ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __Met
127
130
  * <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
128
131
  *
129
132
  */
130
- export declare class UntagResourcesCommand extends $Command<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
131
- readonly input: UntagResourcesCommandInput;
132
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
133
- /**
134
- * @public
135
- */
136
- constructor(input: UntagResourcesCommandInput);
137
- /**
138
- * @internal
139
- */
140
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourcesCommandInput, UntagResourcesCommandOutput>;
141
- /**
142
- * @internal
143
- */
144
- private serialize;
145
- /**
146
- * @internal
147
- */
148
- private deserialize;
133
+ export declare class UntagResourcesCommand extends UntagResourcesCommand_base {
149
134
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateGetComplianceSummary(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...additionalArguments: any): Paginator<GetComplianceSummaryCommandOutput>;
7
+ export declare const paginateGetComplianceSummary: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...rest: any[]) => Paginator<GetComplianceSummaryCommandOutput>;
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateGetResources(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...additionalArguments: any): Paginator<GetResourcesCommandOutput>;
7
+ export declare const paginateGetResources: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...rest: any[]) => Paginator<GetResourcesCommandOutput>;
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateGetTagKeys(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...additionalArguments: any): Paginator<GetTagKeysCommandOutput>;
7
+ export declare const paginateGetTagKeys: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...rest: any[]) => Paginator<GetTagKeysCommandOutput>;
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateGetTagValues(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...additionalArguments: any): Paginator<GetTagValuesCommandOutput>;
7
+ export declare const paginateGetTagValues: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...rest: any[]) => Paginator<GetTagValuesCommandOutput>;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DescribeReportCreationInput,
11
5
  DescribeReportCreationOutput,
@@ -21,22 +15,16 @@ export interface DescribeReportCreationCommandInput
21
15
  export interface DescribeReportCreationCommandOutput
22
16
  extends DescribeReportCreationOutput,
23
17
  __MetadataBearer {}
24
- export declare class DescribeReportCreationCommand extends $Command<
25
- DescribeReportCreationCommandInput,
26
- DescribeReportCreationCommandOutput,
27
- ResourceGroupsTaggingAPIClientResolvedConfig
28
- > {
29
- readonly input: DescribeReportCreationCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DescribeReportCreationCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DescribeReportCreationCommand_base: {
19
+ new (
20
+ input: DescribeReportCreationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DescribeReportCreationCommandInput,
38
- DescribeReportCreationCommandOutput
23
+ DescribeReportCreationCommandOutput,
24
+ ResourceGroupsTaggingAPIClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DescribeReportCreationCommand extends DescribeReportCreationCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  GetComplianceSummaryInput,
11
5
  GetComplianceSummaryOutput,
@@ -21,22 +15,16 @@ export interface GetComplianceSummaryCommandInput
21
15
  export interface GetComplianceSummaryCommandOutput
22
16
  extends GetComplianceSummaryOutput,
23
17
  __MetadataBearer {}
24
- export declare class GetComplianceSummaryCommand extends $Command<
25
- GetComplianceSummaryCommandInput,
26
- GetComplianceSummaryCommandOutput,
27
- ResourceGroupsTaggingAPIClientResolvedConfig
28
- > {
29
- readonly input: GetComplianceSummaryCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: GetComplianceSummaryCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const GetComplianceSummaryCommand_base: {
19
+ new (
20
+ input: GetComplianceSummaryCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  GetComplianceSummaryCommandInput,
38
- GetComplianceSummaryCommandOutput
23
+ GetComplianceSummaryCommandOutput,
24
+ ResourceGroupsTaggingAPIClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetComplianceSummaryCommand extends GetComplianceSummaryCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
10
4
  import {
11
5
  ResourceGroupsTaggingAPIClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface GetResourcesCommandInput extends GetResourcesInput {}
17
11
  export interface GetResourcesCommandOutput
18
12
  extends GetResourcesOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetResourcesCommand extends $Command<
21
- GetResourcesCommandInput,
22
- GetResourcesCommandOutput,
23
- ResourceGroupsTaggingAPIClientResolvedConfig
24
- > {
25
- readonly input: GetResourcesCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetResourcesCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetResourcesCommand_base: {
15
+ new (
16
+ input: GetResourcesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetResourcesCommandInput,
19
+ GetResourcesCommandOutput,
20
+ ResourceGroupsTaggingAPIClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetResourcesCommand extends GetResourcesCommand_base {}