@aws-sdk/client-resource-groups-tagging-api 3.50.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ResourceGroupsTaggingAPIServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +86 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +93 -301
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ResourceGroupsTaggingAPIServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +80 -1
  9. package/dist-es/protocols/Aws_json1_1.js +189 -322
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ResourceGroupsTaggingAPIServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/ResourceGroupsTaggingAPI.d.ts +45 -0
  14. package/dist-types/ts3.4/ResourceGroupsTaggingAPIClient.d.ts +81 -0
  15. package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  25. package/dist-types/ts3.4/index.d.ts +6 -0
  26. package/dist-types/ts3.4/models/ResourceGroupsTaggingAPIServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +320 -0
  29. package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +4 -0
  30. package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +4 -0
  31. package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +4 -0
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +26 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  40. package/package.json +33 -33
@@ -0,0 +1,320 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
3
+
4
+ export interface ComplianceDetails {
5
+
6
+ NoncompliantKeys?: string[];
7
+
8
+ KeysWithNoncompliantValues?: string[];
9
+
10
+ ComplianceStatus?: boolean;
11
+ }
12
+ export declare namespace ComplianceDetails {
13
+
14
+ const filterSensitiveLog: (obj: ComplianceDetails) => any;
15
+ }
16
+
17
+ export declare class ConcurrentModificationException extends __BaseException {
18
+ readonly name: "ConcurrentModificationException";
19
+ readonly $fault: "client";
20
+ Message?: string;
21
+
22
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
23
+ }
24
+
25
+ export declare class ConstraintViolationException extends __BaseException {
26
+ readonly name: "ConstraintViolationException";
27
+ readonly $fault: "client";
28
+ Message?: string;
29
+
30
+ constructor(opts: __ExceptionOptionType<ConstraintViolationException, __BaseException>);
31
+ }
32
+ export interface DescribeReportCreationInput {
33
+ }
34
+ export declare namespace DescribeReportCreationInput {
35
+
36
+ const filterSensitiveLog: (obj: DescribeReportCreationInput) => any;
37
+ }
38
+ export interface DescribeReportCreationOutput {
39
+
40
+ Status?: string;
41
+
42
+ S3Location?: string;
43
+
44
+ StartDate?: string;
45
+
46
+ ErrorMessage?: string;
47
+ }
48
+ export declare namespace DescribeReportCreationOutput {
49
+
50
+ const filterSensitiveLog: (obj: DescribeReportCreationOutput) => any;
51
+ }
52
+
53
+ export declare class InternalServiceException extends __BaseException {
54
+ readonly name: "InternalServiceException";
55
+ readonly $fault: "server";
56
+ Message?: string;
57
+
58
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
59
+ }
60
+
61
+ export declare class InvalidParameterException extends __BaseException {
62
+ readonly name: "InvalidParameterException";
63
+ readonly $fault: "client";
64
+ Message?: string;
65
+
66
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
67
+ }
68
+
69
+ export declare class ThrottledException extends __BaseException {
70
+ readonly name: "ThrottledException";
71
+ readonly $fault: "client";
72
+ Message?: string;
73
+
74
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
75
+ }
76
+ export declare enum ErrorCode {
77
+ INTERNAL_SERVICE_EXCEPTION = "InternalServiceException",
78
+ INVALID_PARAMETER_EXCEPTION = "InvalidParameterException"
79
+ }
80
+
81
+ export interface FailureInfo {
82
+
83
+ StatusCode?: number;
84
+
85
+ ErrorCode?: ErrorCode | string;
86
+
87
+ ErrorMessage?: string;
88
+ }
89
+ export declare namespace FailureInfo {
90
+
91
+ const filterSensitiveLog: (obj: FailureInfo) => any;
92
+ }
93
+ export declare enum GroupByAttribute {
94
+ REGION = "REGION",
95
+ RESOURCE_TYPE = "RESOURCE_TYPE",
96
+ TARGET_ID = "TARGET_ID"
97
+ }
98
+ export interface GetComplianceSummaryInput {
99
+
100
+ TargetIdFilters?: string[];
101
+
102
+ RegionFilters?: string[];
103
+
104
+ ResourceTypeFilters?: string[];
105
+
106
+ TagKeyFilters?: string[];
107
+
108
+ GroupBy?: (GroupByAttribute | string)[];
109
+
110
+ MaxResults?: number;
111
+
112
+ PaginationToken?: string;
113
+ }
114
+ export declare namespace GetComplianceSummaryInput {
115
+
116
+ const filterSensitiveLog: (obj: GetComplianceSummaryInput) => any;
117
+ }
118
+ export declare enum TargetIdType {
119
+ ACCOUNT = "ACCOUNT",
120
+ OU = "OU",
121
+ ROOT = "ROOT"
122
+ }
123
+
124
+ export interface Summary {
125
+
126
+ LastUpdated?: string;
127
+
128
+ TargetId?: string;
129
+
130
+ TargetIdType?: TargetIdType | string;
131
+
132
+ Region?: string;
133
+
134
+ ResourceType?: string;
135
+
136
+ NonCompliantResources?: number;
137
+ }
138
+ export declare namespace Summary {
139
+
140
+ const filterSensitiveLog: (obj: Summary) => any;
141
+ }
142
+ export interface GetComplianceSummaryOutput {
143
+
144
+ SummaryList?: Summary[];
145
+
146
+ PaginationToken?: string;
147
+ }
148
+ export declare namespace GetComplianceSummaryOutput {
149
+
150
+ const filterSensitiveLog: (obj: GetComplianceSummaryOutput) => any;
151
+ }
152
+
153
+ export interface TagFilter {
154
+
155
+ Key?: string;
156
+
157
+ Values?: string[];
158
+ }
159
+ export declare namespace TagFilter {
160
+
161
+ const filterSensitiveLog: (obj: TagFilter) => any;
162
+ }
163
+ export interface GetResourcesInput {
164
+
165
+ PaginationToken?: string;
166
+
167
+ TagFilters?: TagFilter[];
168
+
169
+ ResourcesPerPage?: number;
170
+
171
+ TagsPerPage?: number;
172
+
173
+ ResourceTypeFilters?: string[];
174
+
175
+ IncludeComplianceDetails?: boolean;
176
+
177
+ ExcludeCompliantResources?: boolean;
178
+
179
+ ResourceARNList?: string[];
180
+ }
181
+ export declare namespace GetResourcesInput {
182
+
183
+ const filterSensitiveLog: (obj: GetResourcesInput) => any;
184
+ }
185
+
186
+ export interface Tag {
187
+
188
+ Key: string | undefined;
189
+
190
+ Value: string | undefined;
191
+ }
192
+ export declare namespace Tag {
193
+
194
+ const filterSensitiveLog: (obj: Tag) => any;
195
+ }
196
+
197
+ export interface ResourceTagMapping {
198
+
199
+ ResourceARN?: string;
200
+
201
+ Tags?: Tag[];
202
+
203
+ ComplianceDetails?: ComplianceDetails;
204
+ }
205
+ export declare namespace ResourceTagMapping {
206
+
207
+ const filterSensitiveLog: (obj: ResourceTagMapping) => any;
208
+ }
209
+ export interface GetResourcesOutput {
210
+
211
+ PaginationToken?: string;
212
+
213
+ ResourceTagMappingList?: ResourceTagMapping[];
214
+ }
215
+ export declare namespace GetResourcesOutput {
216
+
217
+ const filterSensitiveLog: (obj: GetResourcesOutput) => any;
218
+ }
219
+
220
+ export declare class PaginationTokenExpiredException extends __BaseException {
221
+ readonly name: "PaginationTokenExpiredException";
222
+ readonly $fault: "client";
223
+ Message?: string;
224
+
225
+ constructor(opts: __ExceptionOptionType<PaginationTokenExpiredException, __BaseException>);
226
+ }
227
+ export interface GetTagKeysInput {
228
+
229
+ PaginationToken?: string;
230
+ }
231
+ export declare namespace GetTagKeysInput {
232
+
233
+ const filterSensitiveLog: (obj: GetTagKeysInput) => any;
234
+ }
235
+ export interface GetTagKeysOutput {
236
+
237
+ PaginationToken?: string;
238
+
239
+ TagKeys?: string[];
240
+ }
241
+ export declare namespace GetTagKeysOutput {
242
+
243
+ const filterSensitiveLog: (obj: GetTagKeysOutput) => any;
244
+ }
245
+ export interface GetTagValuesInput {
246
+
247
+ PaginationToken?: string;
248
+
249
+ Key: string | undefined;
250
+ }
251
+ export declare namespace GetTagValuesInput {
252
+
253
+ const filterSensitiveLog: (obj: GetTagValuesInput) => any;
254
+ }
255
+ export interface GetTagValuesOutput {
256
+
257
+ PaginationToken?: string;
258
+
259
+ TagValues?: string[];
260
+ }
261
+ export declare namespace GetTagValuesOutput {
262
+
263
+ const filterSensitiveLog: (obj: GetTagValuesOutput) => any;
264
+ }
265
+ export interface StartReportCreationInput {
266
+
267
+ S3Bucket: string | undefined;
268
+ }
269
+ export declare namespace StartReportCreationInput {
270
+
271
+ const filterSensitiveLog: (obj: StartReportCreationInput) => any;
272
+ }
273
+ export interface StartReportCreationOutput {
274
+ }
275
+ export declare namespace StartReportCreationOutput {
276
+
277
+ const filterSensitiveLog: (obj: StartReportCreationOutput) => any;
278
+ }
279
+ export interface TagResourcesInput {
280
+
281
+ ResourceARNList: string[] | undefined;
282
+
283
+ Tags: {
284
+ [key: string]: string;
285
+ } | undefined;
286
+ }
287
+ export declare namespace TagResourcesInput {
288
+
289
+ const filterSensitiveLog: (obj: TagResourcesInput) => any;
290
+ }
291
+ export interface TagResourcesOutput {
292
+
293
+ FailedResourcesMap?: {
294
+ [key: string]: FailureInfo;
295
+ };
296
+ }
297
+ export declare namespace TagResourcesOutput {
298
+
299
+ const filterSensitiveLog: (obj: TagResourcesOutput) => any;
300
+ }
301
+ export interface UntagResourcesInput {
302
+
303
+ ResourceARNList: string[] | undefined;
304
+
305
+ TagKeys: string[] | undefined;
306
+ }
307
+ export declare namespace UntagResourcesInput {
308
+
309
+ const filterSensitiveLog: (obj: UntagResourcesInput) => any;
310
+ }
311
+ export interface UntagResourcesOutput {
312
+
313
+ FailedResourcesMap?: {
314
+ [key: string]: FailureInfo;
315
+ };
316
+ }
317
+ export declare namespace UntagResourcesOutput {
318
+
319
+ const filterSensitiveLog: (obj: UntagResourcesOutput) => any;
320
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "../commands/GetComplianceSummaryCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetComplianceSummary(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...additionalArguments: any): Paginator<GetComplianceSummaryCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "../commands/GetResourcesCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetResources(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...additionalArguments: any): Paginator<GetResourcesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetTagKeys(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...additionalArguments: any): Paginator<GetTagKeysCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "../commands/GetTagValuesCommand";
3
+ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetTagValues(config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...additionalArguments: any): Paginator<GetTagValuesCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ResourceGroupsTaggingAPI } from "../ResourceGroupsTaggingAPI";
3
+ import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
4
+ export interface ResourceGroupsTaggingAPIPaginationConfiguration extends PaginationConfiguration {
5
+ client: ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient;
6
+ }
@@ -0,0 +1,5 @@
1
+ export * from "./GetComplianceSummaryPaginator";
2
+ export * from "./GetResourcesPaginator";
3
+ export * from "./GetTagKeysPaginator";
4
+ export * from "./GetTagValuesPaginator";
5
+ export * from "./Interfaces";
@@ -0,0 +1,26 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput } from "../commands/DescribeReportCreationCommand";
4
+ import { GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput } from "../commands/GetComplianceSummaryCommand";
5
+ import { GetResourcesCommandInput, GetResourcesCommandOutput } from "../commands/GetResourcesCommand";
6
+ import { GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand";
7
+ import { GetTagValuesCommandInput, GetTagValuesCommandOutput } from "../commands/GetTagValuesCommand";
8
+ import { StartReportCreationCommandInput, StartReportCreationCommandOutput } from "../commands/StartReportCreationCommand";
9
+ import { TagResourcesCommandInput, TagResourcesCommandOutput } from "../commands/TagResourcesCommand";
10
+ import { UntagResourcesCommandInput, UntagResourcesCommandOutput } from "../commands/UntagResourcesCommand";
11
+ export declare const serializeAws_json1_1DescribeReportCreationCommand: (input: DescribeReportCreationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
+ export declare const serializeAws_json1_1GetComplianceSummaryCommand: (input: GetComplianceSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
+ export declare const serializeAws_json1_1GetResourcesCommand: (input: GetResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_json1_1GetTagKeysCommand: (input: GetTagKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const serializeAws_json1_1GetTagValuesCommand: (input: GetTagValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_json1_1StartReportCreationCommand: (input: StartReportCreationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_json1_1TagResourcesCommand: (input: TagResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_json1_1UntagResourcesCommand: (input: UntagResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const deserializeAws_json1_1DescribeReportCreationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReportCreationCommandOutput>;
20
+ export declare const deserializeAws_json1_1GetComplianceSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComplianceSummaryCommandOutput>;
21
+ export declare const deserializeAws_json1_1GetResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcesCommandOutput>;
22
+ export declare const deserializeAws_json1_1GetTagKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagKeysCommandOutput>;
23
+ export declare const deserializeAws_json1_1GetTagValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagValuesCommandOutput>;
24
+ export declare const deserializeAws_json1_1StartReportCreationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartReportCreationCommandOutput>;
25
+ export declare const deserializeAws_json1_1TagResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourcesCommandOutput>;
26
+ export declare const deserializeAws_json1_1UntagResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourcesCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
2
+
3
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resource-groups-tagging-api",
3
3
  "description": "AWS SDK for JavaScript Resource Groups Tagging Api Client for Node.js, Browser and React Native",
4
- "version": "3.50.0",
4
+ "version": "3.53.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,40 +18,40 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
21
+ "@aws-sdk/client-sts": "3.53.0",
22
+ "@aws-sdk/config-resolver": "3.53.0",
23
+ "@aws-sdk/credential-provider-node": "3.53.0",
24
+ "@aws-sdk/fetch-http-handler": "3.53.0",
25
+ "@aws-sdk/hash-node": "3.53.0",
26
+ "@aws-sdk/invalid-dependency": "3.53.0",
27
+ "@aws-sdk/middleware-content-length": "3.53.0",
28
+ "@aws-sdk/middleware-host-header": "3.53.0",
29
+ "@aws-sdk/middleware-logger": "3.53.0",
30
+ "@aws-sdk/middleware-retry": "3.53.0",
31
+ "@aws-sdk/middleware-serde": "3.53.0",
32
+ "@aws-sdk/middleware-signing": "3.53.0",
33
+ "@aws-sdk/middleware-stack": "3.53.0",
34
+ "@aws-sdk/middleware-user-agent": "3.53.0",
35
+ "@aws-sdk/node-config-provider": "3.53.0",
36
+ "@aws-sdk/node-http-handler": "3.53.0",
37
+ "@aws-sdk/protocol-http": "3.53.0",
38
+ "@aws-sdk/smithy-client": "3.53.0",
39
+ "@aws-sdk/types": "3.53.0",
40
+ "@aws-sdk/url-parser": "3.53.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.52.0",
44
+ "@aws-sdk/util-body-length-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.53.0",
48
+ "@aws-sdk/util-user-agent-node": "3.53.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
54
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
55
55
  "@tsconfig/recommended": "1.0.1",
56
56
  "@types/node": "^12.7.5",
57
57
  "concurrently": "7.0.0",