@aws-sdk/client-resource-groups-tagging-api 3.131.0 → 3.137.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.
@@ -9,10 +9,6 @@ export interface ComplianceDetails {
9
9
 
10
10
  ComplianceStatus?: boolean;
11
11
  }
12
- export declare namespace ComplianceDetails {
13
-
14
- const filterSensitiveLog: (obj: ComplianceDetails) => any;
15
- }
16
12
 
17
13
  export declare class ConcurrentModificationException extends __BaseException {
18
14
  readonly name: "ConcurrentModificationException";
@@ -31,10 +27,6 @@ export declare class ConstraintViolationException extends __BaseException {
31
27
  }
32
28
  export interface DescribeReportCreationInput {
33
29
  }
34
- export declare namespace DescribeReportCreationInput {
35
-
36
- const filterSensitiveLog: (obj: DescribeReportCreationInput) => any;
37
- }
38
30
  export interface DescribeReportCreationOutput {
39
31
 
40
32
  Status?: string;
@@ -45,10 +37,6 @@ export interface DescribeReportCreationOutput {
45
37
 
46
38
  ErrorMessage?: string;
47
39
  }
48
- export declare namespace DescribeReportCreationOutput {
49
-
50
- const filterSensitiveLog: (obj: DescribeReportCreationOutput) => any;
51
- }
52
40
 
53
41
  export declare class InternalServiceException extends __BaseException {
54
42
  readonly name: "InternalServiceException";
@@ -86,10 +74,6 @@ export interface FailureInfo {
86
74
 
87
75
  ErrorMessage?: string;
88
76
  }
89
- export declare namespace FailureInfo {
90
-
91
- const filterSensitiveLog: (obj: FailureInfo) => any;
92
- }
93
77
  export declare enum GroupByAttribute {
94
78
  REGION = "REGION",
95
79
  RESOURCE_TYPE = "RESOURCE_TYPE",
@@ -111,10 +95,6 @@ export interface GetComplianceSummaryInput {
111
95
 
112
96
  PaginationToken?: string;
113
97
  }
114
- export declare namespace GetComplianceSummaryInput {
115
-
116
- const filterSensitiveLog: (obj: GetComplianceSummaryInput) => any;
117
- }
118
98
  export declare enum TargetIdType {
119
99
  ACCOUNT = "ACCOUNT",
120
100
  OU = "OU",
@@ -135,20 +115,12 @@ export interface Summary {
135
115
 
136
116
  NonCompliantResources?: number;
137
117
  }
138
- export declare namespace Summary {
139
-
140
- const filterSensitiveLog: (obj: Summary) => any;
141
- }
142
118
  export interface GetComplianceSummaryOutput {
143
119
 
144
120
  SummaryList?: Summary[];
145
121
 
146
122
  PaginationToken?: string;
147
123
  }
148
- export declare namespace GetComplianceSummaryOutput {
149
-
150
- const filterSensitiveLog: (obj: GetComplianceSummaryOutput) => any;
151
- }
152
124
 
153
125
  export interface TagFilter {
154
126
 
@@ -156,10 +128,6 @@ export interface TagFilter {
156
128
 
157
129
  Values?: string[];
158
130
  }
159
- export declare namespace TagFilter {
160
-
161
- const filterSensitiveLog: (obj: TagFilter) => any;
162
- }
163
131
  export interface GetResourcesInput {
164
132
 
165
133
  PaginationToken?: string;
@@ -178,10 +146,6 @@ export interface GetResourcesInput {
178
146
 
179
147
  ResourceARNList?: string[];
180
148
  }
181
- export declare namespace GetResourcesInput {
182
-
183
- const filterSensitiveLog: (obj: GetResourcesInput) => any;
184
- }
185
149
 
186
150
  export interface Tag {
187
151
 
@@ -189,10 +153,6 @@ export interface Tag {
189
153
 
190
154
  Value: string | undefined;
191
155
  }
192
- export declare namespace Tag {
193
-
194
- const filterSensitiveLog: (obj: Tag) => any;
195
- }
196
156
 
197
157
  export interface ResourceTagMapping {
198
158
 
@@ -202,20 +162,12 @@ export interface ResourceTagMapping {
202
162
 
203
163
  ComplianceDetails?: ComplianceDetails;
204
164
  }
205
- export declare namespace ResourceTagMapping {
206
-
207
- const filterSensitiveLog: (obj: ResourceTagMapping) => any;
208
- }
209
165
  export interface GetResourcesOutput {
210
166
 
211
167
  PaginationToken?: string;
212
168
 
213
169
  ResourceTagMappingList?: ResourceTagMapping[];
214
170
  }
215
- export declare namespace GetResourcesOutput {
216
-
217
- const filterSensitiveLog: (obj: GetResourcesOutput) => any;
218
- }
219
171
 
220
172
  export declare class PaginationTokenExpiredException extends __BaseException {
221
173
  readonly name: "PaginationTokenExpiredException";
@@ -228,87 +180,91 @@ export interface GetTagKeysInput {
228
180
 
229
181
  PaginationToken?: string;
230
182
  }
231
- export declare namespace GetTagKeysInput {
232
-
233
- const filterSensitiveLog: (obj: GetTagKeysInput) => any;
234
- }
235
183
  export interface GetTagKeysOutput {
236
184
 
237
185
  PaginationToken?: string;
238
186
 
239
187
  TagKeys?: string[];
240
188
  }
241
- export declare namespace GetTagKeysOutput {
242
-
243
- const filterSensitiveLog: (obj: GetTagKeysOutput) => any;
244
- }
245
189
  export interface GetTagValuesInput {
246
190
 
247
191
  PaginationToken?: string;
248
192
 
249
193
  Key: string | undefined;
250
194
  }
251
- export declare namespace GetTagValuesInput {
252
-
253
- const filterSensitiveLog: (obj: GetTagValuesInput) => any;
254
- }
255
195
  export interface GetTagValuesOutput {
256
196
 
257
197
  PaginationToken?: string;
258
198
 
259
199
  TagValues?: string[];
260
200
  }
261
- export declare namespace GetTagValuesOutput {
262
-
263
- const filterSensitiveLog: (obj: GetTagValuesOutput) => any;
264
- }
265
201
  export interface StartReportCreationInput {
266
202
 
267
203
  S3Bucket: string | undefined;
268
204
  }
269
- export declare namespace StartReportCreationInput {
270
-
271
- const filterSensitiveLog: (obj: StartReportCreationInput) => any;
272
- }
273
205
  export interface StartReportCreationOutput {
274
206
  }
275
- export declare namespace StartReportCreationOutput {
276
-
277
- const filterSensitiveLog: (obj: StartReportCreationOutput) => any;
278
- }
279
207
  export interface TagResourcesInput {
280
208
 
281
209
  ResourceARNList: string[] | undefined;
282
210
 
283
211
  Tags: Record<string, string> | undefined;
284
212
  }
285
- export declare namespace TagResourcesInput {
286
-
287
- const filterSensitiveLog: (obj: TagResourcesInput) => any;
288
- }
289
213
  export interface TagResourcesOutput {
290
214
 
291
215
  FailedResourcesMap?: Record<string, FailureInfo>;
292
216
  }
293
- export declare namespace TagResourcesOutput {
294
-
295
- const filterSensitiveLog: (obj: TagResourcesOutput) => any;
296
- }
297
217
  export interface UntagResourcesInput {
298
218
 
299
219
  ResourceARNList: string[] | undefined;
300
220
 
301
221
  TagKeys: string[] | undefined;
302
222
  }
303
- export declare namespace UntagResourcesInput {
304
-
305
- const filterSensitiveLog: (obj: UntagResourcesInput) => any;
306
- }
307
223
  export interface UntagResourcesOutput {
308
224
 
309
225
  FailedResourcesMap?: Record<string, FailureInfo>;
310
226
  }
311
- export declare namespace UntagResourcesOutput {
312
-
313
- const filterSensitiveLog: (obj: UntagResourcesOutput) => any;
314
- }
227
+
228
+ export declare const ComplianceDetailsFilterSensitiveLog: (obj: ComplianceDetails) => any;
229
+
230
+ export declare const DescribeReportCreationInputFilterSensitiveLog: (obj: DescribeReportCreationInput) => any;
231
+
232
+ export declare const DescribeReportCreationOutputFilterSensitiveLog: (obj: DescribeReportCreationOutput) => any;
233
+
234
+ export declare const FailureInfoFilterSensitiveLog: (obj: FailureInfo) => any;
235
+
236
+ export declare const GetComplianceSummaryInputFilterSensitiveLog: (obj: GetComplianceSummaryInput) => any;
237
+
238
+ export declare const SummaryFilterSensitiveLog: (obj: Summary) => any;
239
+
240
+ export declare const GetComplianceSummaryOutputFilterSensitiveLog: (obj: GetComplianceSummaryOutput) => any;
241
+
242
+ export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
243
+
244
+ export declare const GetResourcesInputFilterSensitiveLog: (obj: GetResourcesInput) => any;
245
+
246
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
247
+
248
+ export declare const ResourceTagMappingFilterSensitiveLog: (obj: ResourceTagMapping) => any;
249
+
250
+ export declare const GetResourcesOutputFilterSensitiveLog: (obj: GetResourcesOutput) => any;
251
+
252
+ export declare const GetTagKeysInputFilterSensitiveLog: (obj: GetTagKeysInput) => any;
253
+
254
+ export declare const GetTagKeysOutputFilterSensitiveLog: (obj: GetTagKeysOutput) => any;
255
+
256
+ export declare const GetTagValuesInputFilterSensitiveLog: (obj: GetTagValuesInput) => any;
257
+
258
+ export declare const GetTagValuesOutputFilterSensitiveLog: (obj: GetTagValuesOutput) => any;
259
+
260
+ export declare const StartReportCreationInputFilterSensitiveLog: (obj: StartReportCreationInput) => any;
261
+
262
+ export declare const StartReportCreationOutputFilterSensitiveLog: (obj: StartReportCreationOutput) => any;
263
+
264
+ export declare const TagResourcesInputFilterSensitiveLog: (obj: TagResourcesInput) => any;
265
+
266
+ export declare const TagResourcesOutputFilterSensitiveLog: (obj: TagResourcesOutput) => any;
267
+
268
+ export declare const UntagResourcesInputFilterSensitiveLog: (obj: UntagResourcesInput) => any;
269
+
270
+ export declare const UntagResourcesOutputFilterSensitiveLog: (obj: UntagResourcesOutput) => any;
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.131.0",
4
+ "version": "3.137.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",
@@ -18,9 +18,9 @@
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.131.0",
21
+ "@aws-sdk/client-sts": "3.137.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.131.0",
23
+ "@aws-sdk/credential-provider-node": "3.137.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",