@aws-sdk/client-resource-groups-tagging-api 3.169.0 → 3.171.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 (29) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ResourceGroupsTaggingAPI.d.ts +140 -45
  3. package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +153 -81
  4. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/ResourceGroupsTaggingAPIServiceException.d.ts +7 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +224 -270
  18. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +11 -4
  19. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +11 -4
  20. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +11 -4
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  24. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +101 -26
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  29. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
@@ -1,45 +1,140 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "./commands/DescribeReportCreationCommand";
3
- import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "./commands/GetComplianceSummaryCommand";
4
- import { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand";
5
- import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "./commands/GetTagKeysCommand";
6
- import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "./commands/GetTagValuesCommand";
7
- import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "./commands/StartReportCreationCommand";
8
- import { TagResourcesCommandInput, TagResourcesCommandOutput } from "./commands/TagResourcesCommand";
9
- import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "./commands/UntagResourcesCommand";
10
- import { ResourceGroupsTaggingAPIClient } from "./ResourceGroupsTaggingAPIClient";
11
-
12
- export declare class ResourceGroupsTaggingAPI extends ResourceGroupsTaggingAPIClient {
13
-
14
- describeReportCreation(args: DescribeReportCreationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReportCreationCommandOutput>;
15
- describeReportCreation(args: DescribeReportCreationCommandInput, cb: (err: any, data?: DescribeReportCreationCommandOutput) => void): void;
16
- describeReportCreation(args: DescribeReportCreationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReportCreationCommandOutput) => void): void;
17
-
18
- getComplianceSummary(args: GetComplianceSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetComplianceSummaryCommandOutput>;
19
- getComplianceSummary(args: GetComplianceSummaryCommandInput, cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void): void;
20
- getComplianceSummary(args: GetComplianceSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void): void;
21
-
22
- getResources(args: GetResourcesCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcesCommandOutput>;
23
- getResources(args: GetResourcesCommandInput, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
24
- getResources(args: GetResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
25
-
26
- getTagKeys(args: GetTagKeysCommandInput, options?: __HttpHandlerOptions): Promise<GetTagKeysCommandOutput>;
27
- getTagKeys(args: GetTagKeysCommandInput, cb: (err: any, data?: GetTagKeysCommandOutput) => void): void;
28
- getTagKeys(args: GetTagKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagKeysCommandOutput) => void): void;
29
-
30
- getTagValues(args: GetTagValuesCommandInput, options?: __HttpHandlerOptions): Promise<GetTagValuesCommandOutput>;
31
- getTagValues(args: GetTagValuesCommandInput, cb: (err: any, data?: GetTagValuesCommandOutput) => void): void;
32
- getTagValues(args: GetTagValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagValuesCommandOutput) => void): void;
33
-
34
- startReportCreation(args: StartReportCreationCommandInput, options?: __HttpHandlerOptions): Promise<StartReportCreationCommandOutput>;
35
- startReportCreation(args: StartReportCreationCommandInput, cb: (err: any, data?: StartReportCreationCommandOutput) => void): void;
36
- startReportCreation(args: StartReportCreationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReportCreationCommandOutput) => void): void;
37
-
38
- tagResources(args: TagResourcesCommandInput, options?: __HttpHandlerOptions): Promise<TagResourcesCommandOutput>;
39
- tagResources(args: TagResourcesCommandInput, cb: (err: any, data?: TagResourcesCommandOutput) => void): void;
40
- tagResources(args: TagResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourcesCommandOutput) => void): void;
41
-
42
- untagResources(args: UntagResourcesCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourcesCommandOutput>;
43
- untagResources(args: UntagResourcesCommandInput, cb: (err: any, data?: UntagResourcesCommandOutput) => void): void;
44
- untagResources(args: UntagResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourcesCommandOutput) => void): void;
45
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ DescribeReportCreationCommandInput,
4
+ DescribeReportCreationCommandOutput,
5
+ } from "./commands/DescribeReportCreationCommand";
6
+ import {
7
+ GetComplianceSummaryCommandInput,
8
+ GetComplianceSummaryCommandOutput,
9
+ } from "./commands/GetComplianceSummaryCommand";
10
+ import {
11
+ GetResourcesCommandInput,
12
+ GetResourcesCommandOutput,
13
+ } from "./commands/GetResourcesCommand";
14
+ import {
15
+ GetTagKeysCommandInput,
16
+ GetTagKeysCommandOutput,
17
+ } from "./commands/GetTagKeysCommand";
18
+ import {
19
+ GetTagValuesCommandInput,
20
+ GetTagValuesCommandOutput,
21
+ } from "./commands/GetTagValuesCommand";
22
+ import {
23
+ StartReportCreationCommandInput,
24
+ StartReportCreationCommandOutput,
25
+ } from "./commands/StartReportCreationCommand";
26
+ import {
27
+ TagResourcesCommandInput,
28
+ TagResourcesCommandOutput,
29
+ } from "./commands/TagResourcesCommand";
30
+ import {
31
+ UntagResourcesCommandInput,
32
+ UntagResourcesCommandOutput,
33
+ } from "./commands/UntagResourcesCommand";
34
+ import { ResourceGroupsTaggingAPIClient } from "./ResourceGroupsTaggingAPIClient";
35
+ export declare class ResourceGroupsTaggingAPI extends ResourceGroupsTaggingAPIClient {
36
+ describeReportCreation(
37
+ args: DescribeReportCreationCommandInput,
38
+ options?: __HttpHandlerOptions
39
+ ): Promise<DescribeReportCreationCommandOutput>;
40
+ describeReportCreation(
41
+ args: DescribeReportCreationCommandInput,
42
+ cb: (err: any, data?: DescribeReportCreationCommandOutput) => void
43
+ ): void;
44
+ describeReportCreation(
45
+ args: DescribeReportCreationCommandInput,
46
+ options: __HttpHandlerOptions,
47
+ cb: (err: any, data?: DescribeReportCreationCommandOutput) => void
48
+ ): void;
49
+ getComplianceSummary(
50
+ args: GetComplianceSummaryCommandInput,
51
+ options?: __HttpHandlerOptions
52
+ ): Promise<GetComplianceSummaryCommandOutput>;
53
+ getComplianceSummary(
54
+ args: GetComplianceSummaryCommandInput,
55
+ cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void
56
+ ): void;
57
+ getComplianceSummary(
58
+ args: GetComplianceSummaryCommandInput,
59
+ options: __HttpHandlerOptions,
60
+ cb: (err: any, data?: GetComplianceSummaryCommandOutput) => void
61
+ ): void;
62
+ getResources(
63
+ args: GetResourcesCommandInput,
64
+ options?: __HttpHandlerOptions
65
+ ): Promise<GetResourcesCommandOutput>;
66
+ getResources(
67
+ args: GetResourcesCommandInput,
68
+ cb: (err: any, data?: GetResourcesCommandOutput) => void
69
+ ): void;
70
+ getResources(
71
+ args: GetResourcesCommandInput,
72
+ options: __HttpHandlerOptions,
73
+ cb: (err: any, data?: GetResourcesCommandOutput) => void
74
+ ): void;
75
+ getTagKeys(
76
+ args: GetTagKeysCommandInput,
77
+ options?: __HttpHandlerOptions
78
+ ): Promise<GetTagKeysCommandOutput>;
79
+ getTagKeys(
80
+ args: GetTagKeysCommandInput,
81
+ cb: (err: any, data?: GetTagKeysCommandOutput) => void
82
+ ): void;
83
+ getTagKeys(
84
+ args: GetTagKeysCommandInput,
85
+ options: __HttpHandlerOptions,
86
+ cb: (err: any, data?: GetTagKeysCommandOutput) => void
87
+ ): void;
88
+ getTagValues(
89
+ args: GetTagValuesCommandInput,
90
+ options?: __HttpHandlerOptions
91
+ ): Promise<GetTagValuesCommandOutput>;
92
+ getTagValues(
93
+ args: GetTagValuesCommandInput,
94
+ cb: (err: any, data?: GetTagValuesCommandOutput) => void
95
+ ): void;
96
+ getTagValues(
97
+ args: GetTagValuesCommandInput,
98
+ options: __HttpHandlerOptions,
99
+ cb: (err: any, data?: GetTagValuesCommandOutput) => void
100
+ ): void;
101
+ startReportCreation(
102
+ args: StartReportCreationCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<StartReportCreationCommandOutput>;
105
+ startReportCreation(
106
+ args: StartReportCreationCommandInput,
107
+ cb: (err: any, data?: StartReportCreationCommandOutput) => void
108
+ ): void;
109
+ startReportCreation(
110
+ args: StartReportCreationCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: StartReportCreationCommandOutput) => void
113
+ ): void;
114
+ tagResources(
115
+ args: TagResourcesCommandInput,
116
+ options?: __HttpHandlerOptions
117
+ ): Promise<TagResourcesCommandOutput>;
118
+ tagResources(
119
+ args: TagResourcesCommandInput,
120
+ cb: (err: any, data?: TagResourcesCommandOutput) => void
121
+ ): void;
122
+ tagResources(
123
+ args: TagResourcesCommandInput,
124
+ options: __HttpHandlerOptions,
125
+ cb: (err: any, data?: TagResourcesCommandOutput) => void
126
+ ): void;
127
+ untagResources(
128
+ args: UntagResourcesCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<UntagResourcesCommandOutput>;
131
+ untagResources(
132
+ args: UntagResourcesCommandInput,
133
+ cb: (err: any, data?: UntagResourcesCommandOutput) => void
134
+ ): void;
135
+ untagResources(
136
+ args: UntagResourcesCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: UntagResourcesCommandOutput) => void
139
+ ): void;
140
+ }
@@ -1,81 +1,153 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "./commands/DescribeReportCreationCommand";
10
- import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "./commands/GetComplianceSummaryCommand";
11
- import { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand";
12
- import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "./commands/GetTagKeysCommand";
13
- import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "./commands/GetTagValuesCommand";
14
- import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "./commands/StartReportCreationCommand";
15
- import { TagResourcesCommandInput, TagResourcesCommandOutput } from "./commands/TagResourcesCommand";
16
- import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "./commands/UntagResourcesCommand";
17
- export declare type ServiceInputTypes = DescribeReportCreationCommandInput | GetComplianceSummaryCommandInput | GetResourcesCommandInput | GetTagKeysCommandInput | GetTagValuesCommandInput | StartReportCreationCommandInput | TagResourcesCommandInput | UntagResourcesCommandInput;
18
- export declare type ServiceOutputTypes = DescribeReportCreationCommandOutput | GetComplianceSummaryCommandOutput | GetResourcesCommandOutput | GetTagKeysCommandOutput | GetTagValuesCommandOutput | StartReportCreationCommandOutput | TagResourcesCommandOutput | UntagResourcesCommandOutput;
19
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
20
-
21
- requestHandler?: __HttpHandler;
22
-
23
- sha256?: __HashConstructor;
24
-
25
- urlParser?: __UrlParser;
26
-
27
- bodyLengthChecker?: __BodyLengthCalculator;
28
-
29
- streamCollector?: __StreamCollector;
30
-
31
- base64Decoder?: __Decoder;
32
-
33
- base64Encoder?: __Encoder;
34
-
35
- utf8Decoder?: __Decoder;
36
-
37
- utf8Encoder?: __Encoder;
38
-
39
- runtime?: string;
40
-
41
- disableHostPrefix?: boolean;
42
-
43
- maxAttempts?: number | __Provider<number>;
44
-
45
- retryMode?: string | __Provider<string>;
46
-
47
- logger?: __Logger;
48
-
49
- useDualstackEndpoint?: boolean | __Provider<boolean>;
50
-
51
- useFipsEndpoint?: boolean | __Provider<boolean>;
52
-
53
- serviceId?: string;
54
-
55
- region?: string | __Provider<string>;
56
-
57
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
58
-
59
- regionInfoProvider?: RegionInfoProvider;
60
-
61
- defaultUserAgentProvider?: Provider<__UserAgent>;
62
-
63
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
64
- }
65
- declare type ResourceGroupsTaggingAPIClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
66
-
67
- export interface ResourceGroupsTaggingAPIClientConfig extends ResourceGroupsTaggingAPIClientConfigType {
68
- }
69
- declare type ResourceGroupsTaggingAPIClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
70
-
71
- export interface ResourceGroupsTaggingAPIClientResolvedConfig extends ResourceGroupsTaggingAPIClientResolvedConfigType {
72
- }
73
-
74
- export declare class ResourceGroupsTaggingAPIClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ResourceGroupsTaggingAPIClientResolvedConfig> {
75
-
76
- readonly config: ResourceGroupsTaggingAPIClientResolvedConfig;
77
- constructor(configuration: ResourceGroupsTaggingAPIClientConfig);
78
-
79
- destroy(): void;
80
- }
81
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ DescribeReportCreationCommandInput,
47
+ DescribeReportCreationCommandOutput,
48
+ } from "./commands/DescribeReportCreationCommand";
49
+ import {
50
+ GetComplianceSummaryCommandInput,
51
+ GetComplianceSummaryCommandOutput,
52
+ } from "./commands/GetComplianceSummaryCommand";
53
+ import {
54
+ GetResourcesCommandInput,
55
+ GetResourcesCommandOutput,
56
+ } from "./commands/GetResourcesCommand";
57
+ import {
58
+ GetTagKeysCommandInput,
59
+ GetTagKeysCommandOutput,
60
+ } from "./commands/GetTagKeysCommand";
61
+ import {
62
+ GetTagValuesCommandInput,
63
+ GetTagValuesCommandOutput,
64
+ } from "./commands/GetTagValuesCommand";
65
+ import {
66
+ StartReportCreationCommandInput,
67
+ StartReportCreationCommandOutput,
68
+ } from "./commands/StartReportCreationCommand";
69
+ import {
70
+ TagResourcesCommandInput,
71
+ TagResourcesCommandOutput,
72
+ } from "./commands/TagResourcesCommand";
73
+ import {
74
+ UntagResourcesCommandInput,
75
+ UntagResourcesCommandOutput,
76
+ } from "./commands/UntagResourcesCommand";
77
+ export declare type ServiceInputTypes =
78
+ | DescribeReportCreationCommandInput
79
+ | GetComplianceSummaryCommandInput
80
+ | GetResourcesCommandInput
81
+ | GetTagKeysCommandInput
82
+ | GetTagValuesCommandInput
83
+ | StartReportCreationCommandInput
84
+ | TagResourcesCommandInput
85
+ | UntagResourcesCommandInput;
86
+ export declare type ServiceOutputTypes =
87
+ | DescribeReportCreationCommandOutput
88
+ | GetComplianceSummaryCommandOutput
89
+ | GetResourcesCommandOutput
90
+ | GetTagKeysCommandOutput
91
+ | GetTagValuesCommandOutput
92
+ | StartReportCreationCommandOutput
93
+ | TagResourcesCommandOutput
94
+ | UntagResourcesCommandOutput;
95
+ export interface ClientDefaults
96
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
+ requestHandler?: __HttpHandler;
98
+ sha256?: __HashConstructor;
99
+ urlParser?: __UrlParser;
100
+ bodyLengthChecker?: __BodyLengthCalculator;
101
+ streamCollector?: __StreamCollector;
102
+ base64Decoder?: __Decoder;
103
+ base64Encoder?: __Encoder;
104
+ utf8Decoder?: __Decoder;
105
+ utf8Encoder?: __Encoder;
106
+ runtime?: string;
107
+ disableHostPrefix?: boolean;
108
+ maxAttempts?: number | __Provider<number>;
109
+ retryMode?: string | __Provider<string>;
110
+ logger?: __Logger;
111
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
112
+ useFipsEndpoint?: boolean | __Provider<boolean>;
113
+ serviceId?: string;
114
+ region?: string | __Provider<string>;
115
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
+ regionInfoProvider?: RegionInfoProvider;
117
+ defaultUserAgentProvider?: Provider<__UserAgent>;
118
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
119
+ }
120
+ declare type ResourceGroupsTaggingAPIClientConfigType = Partial<
121
+ __SmithyConfiguration<__HttpHandlerOptions>
122
+ > &
123
+ ClientDefaults &
124
+ RegionInputConfig &
125
+ EndpointsInputConfig &
126
+ RetryInputConfig &
127
+ HostHeaderInputConfig &
128
+ AwsAuthInputConfig &
129
+ UserAgentInputConfig;
130
+ export interface ResourceGroupsTaggingAPIClientConfig
131
+ extends ResourceGroupsTaggingAPIClientConfigType {}
132
+ declare type ResourceGroupsTaggingAPIClientResolvedConfigType =
133
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
134
+ Required<ClientDefaults> &
135
+ RegionResolvedConfig &
136
+ EndpointsResolvedConfig &
137
+ RetryResolvedConfig &
138
+ HostHeaderResolvedConfig &
139
+ AwsAuthResolvedConfig &
140
+ UserAgentResolvedConfig;
141
+ export interface ResourceGroupsTaggingAPIClientResolvedConfig
142
+ extends ResourceGroupsTaggingAPIClientResolvedConfigType {}
143
+ export declare class ResourceGroupsTaggingAPIClient extends __Client<
144
+ __HttpHandlerOptions,
145
+ ServiceInputTypes,
146
+ ServiceOutputTypes,
147
+ ResourceGroupsTaggingAPIClientResolvedConfig
148
+ > {
149
+ readonly config: ResourceGroupsTaggingAPIClientResolvedConfig;
150
+ constructor(configuration: ResourceGroupsTaggingAPIClientConfig);
151
+ destroy(): void;
152
+ }
153
+ export {};
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0";
4
- import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
- export interface DescribeReportCreationCommandInput extends DescribeReportCreationInput {
6
- }
7
- export interface DescribeReportCreationCommandOutput extends DescribeReportCreationOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeReportCreationCommand extends $Command<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
- readonly input: DescribeReportCreationCommandInput;
12
- constructor(input: DescribeReportCreationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeReportCreationInput,
10
+ DescribeReportCreationOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ResourceGroupsTaggingAPIClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ResourceGroupsTaggingAPIClient";
17
+ export interface DescribeReportCreationCommandInput
18
+ extends DescribeReportCreationInput {}
19
+ export interface DescribeReportCreationCommandOutput
20
+ extends DescribeReportCreationOutput,
21
+ __MetadataBearer {}
22
+ export declare class DescribeReportCreationCommand extends $Command<
23
+ DescribeReportCreationCommandInput,
24
+ DescribeReportCreationCommandOutput,
25
+ ResourceGroupsTaggingAPIClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeReportCreationCommandInput;
28
+ constructor(input: DescribeReportCreationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeReportCreationCommandInput,
35
+ DescribeReportCreationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0";
4
- import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
- export interface GetComplianceSummaryCommandInput extends GetComplianceSummaryInput {
6
- }
7
- export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetComplianceSummaryCommand extends $Command<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
- readonly input: GetComplianceSummaryCommandInput;
12
- constructor(input: GetComplianceSummaryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetComplianceSummaryInput,
10
+ GetComplianceSummaryOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ResourceGroupsTaggingAPIClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ResourceGroupsTaggingAPIClient";
17
+ export interface GetComplianceSummaryCommandInput
18
+ extends GetComplianceSummaryInput {}
19
+ export interface GetComplianceSummaryCommandOutput
20
+ extends GetComplianceSummaryOutput,
21
+ __MetadataBearer {}
22
+ export declare class GetComplianceSummaryCommand extends $Command<
23
+ GetComplianceSummaryCommandInput,
24
+ GetComplianceSummaryCommandOutput,
25
+ ResourceGroupsTaggingAPIClientResolvedConfig
26
+ > {
27
+ readonly input: GetComplianceSummaryCommandInput;
28
+ constructor(input: GetComplianceSummaryCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetComplianceSummaryCommandInput,
35
+ GetComplianceSummaryCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
4
- import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
5
- export interface GetResourcesCommandInput extends GetResourcesInput {
6
- }
7
- export interface GetResourcesCommandOutput extends GetResourcesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetResourcesCommand extends $Command<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
11
- readonly input: GetResourcesCommandInput;
12
- constructor(input: GetResourcesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
9
+ import {
10
+ ResourceGroupsTaggingAPIClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ResourceGroupsTaggingAPIClient";
14
+ export interface GetResourcesCommandInput extends GetResourcesInput {}
15
+ export interface GetResourcesCommandOutput
16
+ extends GetResourcesOutput,
17
+ __MetadataBearer {}
18
+ export declare class GetResourcesCommand extends $Command<
19
+ GetResourcesCommandInput,
20
+ GetResourcesCommandOutput,
21
+ ResourceGroupsTaggingAPIClientResolvedConfig
22
+ > {
23
+ readonly input: GetResourcesCommandInput;
24
+ constructor(input: GetResourcesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }