@aws-sdk/client-resource-groups-tagging-api 3.1076.0 → 3.1078.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 (47) hide show
  1. package/dist-cjs/index.js +20 -95
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/DescribeReportCreationCommand.js +2 -14
  4. package/dist-es/commands/GetComplianceSummaryCommand.js +2 -14
  5. package/dist-es/commands/GetResourcesCommand.js +2 -14
  6. package/dist-es/commands/GetTagKeysCommand.js +2 -14
  7. package/dist-es/commands/GetTagValuesCommand.js +2 -14
  8. package/dist-es/commands/ListRequiredTagsCommand.js +2 -14
  9. package/dist-es/commands/StartReportCreationCommand.js +2 -14
  10. package/dist-es/commands/TagResourcesCommand.js +2 -14
  11. package/dist-es/commands/UntagResourcesCommand.js +2 -14
  12. package/dist-es/index.js +1 -0
  13. package/dist-es/runtimeConfig.browser.js +0 -2
  14. package/dist-es/runtimeConfig.js +1 -2
  15. package/dist-es/runtimeConfig.native.js +0 -2
  16. package/dist-es/runtimeConfig.shared.js +2 -0
  17. package/dist-types/commandBuilder.d.ts +18 -0
  18. package/dist-types/commands/DescribeReportCreationCommand.d.ts +3 -8
  19. package/dist-types/commands/GetComplianceSummaryCommand.d.ts +3 -8
  20. package/dist-types/commands/GetResourcesCommand.d.ts +3 -8
  21. package/dist-types/commands/GetTagKeysCommand.d.ts +3 -8
  22. package/dist-types/commands/GetTagValuesCommand.d.ts +3 -8
  23. package/dist-types/commands/ListRequiredTagsCommand.d.ts +3 -8
  24. package/dist-types/commands/StartReportCreationCommand.d.ts +3 -8
  25. package/dist-types/commands/TagResourcesCommand.d.ts +3 -8
  26. package/dist-types/commands/UntagResourcesCommand.d.ts +3 -8
  27. package/dist-types/index.d.ts +1 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/runtimeConfig.d.ts +1 -1
  30. package/dist-types/runtimeConfig.native.d.ts +1 -1
  31. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  32. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  33. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/ListRequiredTagsCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/index.d.ts +1 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  47. package/package.json +8 -10
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0";
4
- import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface StartReportCreationCommandInput extends StartReportCreationInpu
22
19
  export interface StartReportCreationCommandOutput extends StartReportCreationOutput, __MetadataBearer {
23
20
  }
24
21
  declare const StartReportCreationCommand_base: {
25
- new (input: StartReportCreationCommandInput): import("@smithy/core/client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartReportCreationCommandInput): import("@smithy/core/client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartReportCreationCommandInput): import("@smithy/core/client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartReportCreationCommandInput): import("@smithy/core/client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Generates a report that lists all tagged resources in the accounts across your
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
4
- import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourcesCommandInput extends TagResourcesInput {
22
19
  export interface TagResourcesCommandOutput extends TagResourcesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourcesCommand_base: {
25
- new (input: TagResourcesCommandInput): import("@smithy/core/client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourcesCommandInput): import("@smithy/core/client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourcesCommandInput): import("@smithy/core/client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourcesCommandInput): import("@smithy/core/client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Applies one or more tags to the specified resources. Note the following:</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
4
- import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourcesCommandInput extends UntagResourcesInput {
22
19
  export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourcesCommand_base: {
25
- new (input: UntagResourcesCommandInput): import("@smithy/core/client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourcesCommandInput): import("@smithy/core/client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourcesCommandInput): import("@smithy/core/client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourcesCommandInput): import("@smithy/core/client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, import("..").ResourceGroupsTaggingAPIClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes the specified tags from the specified resources. When you specify a tag key,
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { ResourceGroupsTaggingAPIExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggi
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ResourceGroupsTaggingAPIClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./ResourceGroupsTaggingAPIClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ ResourceGroupsTaggingAPIClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ ResourceGroupsTaggingAPIClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeReportCreationInput,
5
4
  DescribeReportCreationOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ResourceGroupsTaggingAPIClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../ResourceGroupsTaggingAPIClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeReportCreationCommandInput
15
8
  extends DescribeReportCreationInput {}
16
9
  export interface DescribeReportCreationCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeReportCreationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeReportCreationCommandInput,
24
17
  DescribeReportCreationCommandOutput,
25
- ResourceGroupsTaggingAPIClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [DescribeReportCreationCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeReportCreationCommandInput,
33
26
  DescribeReportCreationCommandOutput,
34
- ResourceGroupsTaggingAPIClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeReportCreationCommand extends DescribeReportCreationCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetComplianceSummaryInput,
5
4
  GetComplianceSummaryOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ResourceGroupsTaggingAPIClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../ResourceGroupsTaggingAPIClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetComplianceSummaryCommandInput
15
8
  extends GetComplianceSummaryInput {}
16
9
  export interface GetComplianceSummaryCommandOutput
@@ -22,22 +15,20 @@ declare const GetComplianceSummaryCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetComplianceSummaryCommandInput,
24
17
  GetComplianceSummaryCommandOutput,
25
- ResourceGroupsTaggingAPIClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [GetComplianceSummaryCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetComplianceSummaryCommandInput,
33
26
  GetComplianceSummaryCommandOutput,
34
- ResourceGroupsTaggingAPIClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetComplianceSummaryCommand extends GetComplianceSummaryCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
4
- import {
5
- ResourceGroupsTaggingAPIClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../ResourceGroupsTaggingAPIClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetResourcesCommandInput extends GetResourcesInput {}
12
5
  export interface GetResourcesCommandOutput
13
6
  extends GetResourcesOutput,
@@ -18,22 +11,20 @@ declare const GetResourcesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetResourcesCommandInput,
20
13
  GetResourcesCommandOutput,
21
- ResourceGroupsTaggingAPIClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [GetResourcesCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetResourcesCommandInput,
29
22
  GetResourcesCommandOutput,
30
- ResourceGroupsTaggingAPIClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetResourcesCommand extends GetResourcesCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
4
- import {
5
- ResourceGroupsTaggingAPIClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../ResourceGroupsTaggingAPIClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetTagKeysCommandInput extends GetTagKeysInput {}
12
5
  export interface GetTagKeysCommandOutput
13
6
  extends GetTagKeysOutput,
@@ -18,22 +11,20 @@ declare const GetTagKeysCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetTagKeysCommandInput,
20
13
  GetTagKeysCommandOutput,
21
- ResourceGroupsTaggingAPIClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [GetTagKeysCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetTagKeysCommandInput,
29
22
  GetTagKeysCommandOutput,
30
- ResourceGroupsTaggingAPIClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetTagKeysCommand extends GetTagKeysCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
4
- import {
5
- ResourceGroupsTaggingAPIClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../ResourceGroupsTaggingAPIClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetTagValuesCommandInput extends GetTagValuesInput {}
12
5
  export interface GetTagValuesCommandOutput
13
6
  extends GetTagValuesOutput,
@@ -18,22 +11,20 @@ declare const GetTagValuesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetTagValuesCommandInput,
20
13
  GetTagValuesCommandOutput,
21
- ResourceGroupsTaggingAPIClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: GetTagValuesCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetTagValuesCommandInput,
29
22
  GetTagValuesCommandOutput,
30
- ResourceGroupsTaggingAPIClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetTagValuesCommand extends GetTagValuesCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListRequiredTagsInput,
5
4
  ListRequiredTagsOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ResourceGroupsTaggingAPIClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../ResourceGroupsTaggingAPIClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListRequiredTagsCommandInput extends ListRequiredTagsInput {}
15
8
  export interface ListRequiredTagsCommandOutput
16
9
  extends ListRequiredTagsOutput,
@@ -21,22 +14,20 @@ declare const ListRequiredTagsCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListRequiredTagsCommandInput,
23
16
  ListRequiredTagsCommandOutput,
24
- ResourceGroupsTaggingAPIClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [ListRequiredTagsCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListRequiredTagsCommandInput,
32
25
  ListRequiredTagsCommandOutput,
33
- ResourceGroupsTaggingAPIClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListRequiredTagsCommand extends ListRequiredTagsCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  StartReportCreationInput,
5
4
  StartReportCreationOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ResourceGroupsTaggingAPIClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../ResourceGroupsTaggingAPIClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartReportCreationCommandInput
15
8
  extends StartReportCreationInput {}
16
9
  export interface StartReportCreationCommandOutput
@@ -22,22 +15,20 @@ declare const StartReportCreationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  StartReportCreationCommandInput,
24
17
  StartReportCreationCommandOutput,
25
- ResourceGroupsTaggingAPIClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: StartReportCreationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  StartReportCreationCommandInput,
33
26
  StartReportCreationCommandOutput,
34
- ResourceGroupsTaggingAPIClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class StartReportCreationCommand extends StartReportCreationCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
4
- import {
5
- ResourceGroupsTaggingAPIClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../ResourceGroupsTaggingAPIClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourcesCommandInput extends TagResourcesInput {}
12
5
  export interface TagResourcesCommandOutput
13
6
  extends TagResourcesOutput,
@@ -18,22 +11,20 @@ declare const TagResourcesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  TagResourcesCommandInput,
20
13
  TagResourcesCommandOutput,
21
- ResourceGroupsTaggingAPIClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: TagResourcesCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  TagResourcesCommandInput,
29
22
  TagResourcesCommandOutput,
30
- ResourceGroupsTaggingAPIClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class TagResourcesCommand extends TagResourcesCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
4
- import {
5
- ResourceGroupsTaggingAPIClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../ResourceGroupsTaggingAPIClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface UntagResourcesCommandInput extends UntagResourcesInput {}
12
5
  export interface UntagResourcesCommandOutput
13
6
  extends UntagResourcesOutput,
@@ -18,22 +11,20 @@ declare const UntagResourcesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  UntagResourcesCommandInput,
20
13
  UntagResourcesCommandOutput,
21
- ResourceGroupsTaggingAPIClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: UntagResourcesCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  UntagResourcesCommandInput,
29
22
  UntagResourcesCommandOutput,
30
- ResourceGroupsTaggingAPIClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ResourceGroupsTaggingAPIClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class UntagResourcesCommand extends UntagResourcesCommand_base {
39
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ResourceGroupsTaggingAPIExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";
@@ -22,7 +22,6 @@ export declare const getRuntimeConfig: (
22
22
  | import("@smithy/core/protocols").HttpHandler<any>
23
23
  | RequestHandler;
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
- sha256: import("@smithy/types").HashConstructor;
26
25
  streamCollector: (
27
26
  stream:
28
27
  | import("stream").Readable
@@ -44,6 +43,7 @@ export declare const getRuntimeConfig: (
44
43
  [setting: string]: unknown;
45
44
  };
46
45
  apiVersion: string;
46
+ sha256: import("@smithy/types").HashConstructor;
47
47
  urlParser: import("@smithy/types").UrlParser;
48
48
  base64Decoder: import("@smithy/types").Decoder;
49
49
  base64Encoder: (_input: Uint8Array | string) => string;