@aws-sdk/client-resource-groups-tagging-api 3.478.0 → 3.484.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 (37) 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-es/commands/DescribeReportCreationCommand.js +18 -41
  11. package/dist-es/commands/GetComplianceSummaryCommand.js +18 -41
  12. package/dist-es/commands/GetResourcesCommand.js +18 -41
  13. package/dist-es/commands/GetTagKeysCommand.js +18 -41
  14. package/dist-es/commands/GetTagValuesCommand.js +18 -41
  15. package/dist-es/commands/StartReportCreationCommand.js +18 -41
  16. package/dist-es/commands/TagResourcesCommand.js +18 -41
  17. package/dist-es/commands/UntagResourcesCommand.js +18 -41
  18. package/dist-es/endpoint/EndpointParameters.js +6 -0
  19. package/dist-types/commands/DescribeReportCreationCommand.d.ts +6 -21
  20. package/dist-types/commands/GetComplianceSummaryCommand.d.ts +6 -21
  21. package/dist-types/commands/GetResourcesCommand.d.ts +6 -21
  22. package/dist-types/commands/GetTagKeysCommand.d.ts +6 -21
  23. package/dist-types/commands/GetTagValuesCommand.d.ts +6 -21
  24. package/dist-types/commands/StartReportCreationCommand.d.ts +6 -21
  25. package/dist-types/commands/TagResourcesCommand.d.ts +6 -21
  26. package/dist-types/commands/UntagResourcesCommand.d.ts +6 -21
  27. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +12 -24
  29. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +12 -24
  30. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +14 -23
  31. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +14 -23
  32. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +14 -23
  33. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +14 -23
  34. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +14 -23
  35. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  37. package/package.json +11 -11
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_GetComplianceSummaryCommand, se_GetComplianceSummaryCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class GetComplianceSummaryCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, GetComplianceSummaryCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "GetComplianceSummaryCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "GetComplianceSummary",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_GetComplianceSummaryCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_GetComplianceSummaryCommand(output, context);
46
- }
7
+ export class GetComplianceSummaryCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "GetComplianceSummary", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "GetComplianceSummaryCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetComplianceSummaryCommand)
22
+ .de(de_GetComplianceSummaryCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_GetResourcesCommand, se_GetResourcesCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class GetResourcesCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, GetResourcesCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "GetResourcesCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "GetResources",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_GetResourcesCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_GetResourcesCommand(output, context);
46
- }
7
+ export class GetResourcesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "GetResources", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "GetResourcesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetResourcesCommand)
22
+ .de(de_GetResourcesCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_GetTagKeysCommand, se_GetTagKeysCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class GetTagKeysCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, GetTagKeysCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "GetTagKeysCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "GetTagKeys",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_GetTagKeysCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_GetTagKeysCommand(output, context);
46
- }
7
+ export class GetTagKeysCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "GetTagKeys", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "GetTagKeysCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetTagKeysCommand)
22
+ .de(de_GetTagKeysCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_GetTagValuesCommand, se_GetTagValuesCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class GetTagValuesCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, GetTagValuesCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "GetTagValuesCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "GetTagValues",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_GetTagValuesCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_GetTagValuesCommand(output, context);
46
- }
7
+ export class GetTagValuesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "GetTagValues", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "GetTagValuesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_GetTagValuesCommand)
22
+ .de(de_GetTagValuesCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_StartReportCreationCommand, se_StartReportCreationCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class StartReportCreationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, StartReportCreationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "StartReportCreationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "StartReportCreation",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_StartReportCreationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_StartReportCreationCommand(output, context);
46
- }
7
+ export class StartReportCreationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "StartReportCreation", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "StartReportCreationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_StartReportCreationCommand)
22
+ .de(de_StartReportCreationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_TagResourcesCommand, se_TagResourcesCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class TagResourcesCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, TagResourcesCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "TagResourcesCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "TagResources",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_TagResourcesCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_TagResourcesCommand(output, context);
46
- }
7
+ export class TagResourcesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "TagResources", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "TagResourcesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_TagResourcesCommand)
22
+ .de(de_TagResourcesCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UntagResourcesCommand, se_UntagResourcesCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class UntagResourcesCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourcesCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ResourceGroupsTaggingAPIClient";
26
- const commandName = "UntagResourcesCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "ResourceGroupsTaggingAPI_20170126",
35
- operation: "UntagResources",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UntagResourcesCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UntagResourcesCommand(output, context);
46
- }
7
+ export class UntagResourcesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("ResourceGroupsTaggingAPI_20170126", "UntagResources", {})
19
+ .n("ResourceGroupsTaggingAPIClient", "UntagResourcesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UntagResourcesCommand)
22
+ .de(de_UntagResourcesCommand)
23
+ .build() {
47
24
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "tagging",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -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
  }