@aws-sdk/client-auto-scaling-plans 3.131.0 → 3.142.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.
@@ -15,10 +15,6 @@ export interface TagFilter {
15
15
 
16
16
  Values?: string[];
17
17
  }
18
- export declare namespace TagFilter {
19
-
20
- const filterSensitiveLog: (obj: TagFilter) => any;
21
- }
22
18
 
23
19
  export interface ApplicationSource {
24
20
 
@@ -26,10 +22,6 @@ export interface ApplicationSource {
26
22
 
27
23
  TagFilters?: TagFilter[];
28
24
  }
29
- export declare namespace ApplicationSource {
30
-
31
- const filterSensitiveLog: (obj: ApplicationSource) => any;
32
- }
33
25
 
34
26
  export interface MetricDimension {
35
27
 
@@ -37,10 +29,6 @@ export interface MetricDimension {
37
29
 
38
30
  Value: string | undefined;
39
31
  }
40
- export declare namespace MetricDimension {
41
-
42
- const filterSensitiveLog: (obj: MetricDimension) => any;
43
- }
44
32
  export declare enum MetricStatistic {
45
33
  Average = "Average",
46
34
  Maximum = "Maximum",
@@ -61,10 +49,6 @@ export interface CustomizedLoadMetricSpecification {
61
49
 
62
50
  Unit?: string;
63
51
  }
64
- export declare namespace CustomizedLoadMetricSpecification {
65
-
66
- const filterSensitiveLog: (obj: CustomizedLoadMetricSpecification) => any;
67
- }
68
52
  export declare enum LoadMetricType {
69
53
  ALBTargetGroupRequestCount = "ALBTargetGroupRequestCount",
70
54
  ASGTotalCPUUtilization = "ASGTotalCPUUtilization",
@@ -78,10 +62,6 @@ export interface PredefinedLoadMetricSpecification {
78
62
 
79
63
  ResourceLabel?: string;
80
64
  }
81
- export declare namespace PredefinedLoadMetricSpecification {
82
-
83
- const filterSensitiveLog: (obj: PredefinedLoadMetricSpecification) => any;
84
- }
85
65
  export declare enum PredictiveScalingMaxCapacityBehavior {
86
66
  SetForecastCapacityToMaxCapacity = "SetForecastCapacityToMaxCapacity",
87
67
  SetMaxCapacityAboveForecastCapacity = "SetMaxCapacityAboveForecastCapacity",
@@ -125,10 +105,6 @@ export interface CustomizedScalingMetricSpecification {
125
105
 
126
106
  Unit?: string;
127
107
  }
128
- export declare namespace CustomizedScalingMetricSpecification {
129
-
130
- const filterSensitiveLog: (obj: CustomizedScalingMetricSpecification) => any;
131
- }
132
108
  export declare enum ScalingMetricType {
133
109
  ALBRequestCountPerTarget = "ALBRequestCountPerTarget",
134
110
  ASGAverageCPUUtilization = "ASGAverageCPUUtilization",
@@ -151,10 +127,6 @@ export interface PredefinedScalingMetricSpecification {
151
127
 
152
128
  ResourceLabel?: string;
153
129
  }
154
- export declare namespace PredefinedScalingMetricSpecification {
155
-
156
- const filterSensitiveLog: (obj: PredefinedScalingMetricSpecification) => any;
157
- }
158
130
 
159
131
  export interface TargetTrackingConfiguration {
160
132
 
@@ -172,10 +144,6 @@ export interface TargetTrackingConfiguration {
172
144
 
173
145
  EstimatedInstanceWarmup?: number;
174
146
  }
175
- export declare namespace TargetTrackingConfiguration {
176
-
177
- const filterSensitiveLog: (obj: TargetTrackingConfiguration) => any;
178
- }
179
147
 
180
148
  export interface ScalingInstruction {
181
149
 
@@ -207,10 +175,6 @@ export interface ScalingInstruction {
207
175
 
208
176
  DisableDynamicScaling?: boolean;
209
177
  }
210
- export declare namespace ScalingInstruction {
211
-
212
- const filterSensitiveLog: (obj: ScalingInstruction) => any;
213
- }
214
178
  export interface CreateScalingPlanRequest {
215
179
 
216
180
  ScalingPlanName: string | undefined;
@@ -219,18 +183,10 @@ export interface CreateScalingPlanRequest {
219
183
 
220
184
  ScalingInstructions: ScalingInstruction[] | undefined;
221
185
  }
222
- export declare namespace CreateScalingPlanRequest {
223
-
224
- const filterSensitiveLog: (obj: CreateScalingPlanRequest) => any;
225
- }
226
186
  export interface CreateScalingPlanResponse {
227
187
 
228
188
  ScalingPlanVersion: number | undefined;
229
189
  }
230
- export declare namespace CreateScalingPlanResponse {
231
-
232
- const filterSensitiveLog: (obj: CreateScalingPlanResponse) => any;
233
- }
234
190
 
235
191
  export declare class InternalServiceException extends __BaseException {
236
192
  readonly name: "InternalServiceException";
@@ -261,16 +217,8 @@ export interface DeleteScalingPlanRequest {
261
217
 
262
218
  ScalingPlanVersion: number | undefined;
263
219
  }
264
- export declare namespace DeleteScalingPlanRequest {
265
-
266
- const filterSensitiveLog: (obj: DeleteScalingPlanRequest) => any;
267
- }
268
220
  export interface DeleteScalingPlanResponse {
269
221
  }
270
- export declare namespace DeleteScalingPlanResponse {
271
-
272
- const filterSensitiveLog: (obj: DeleteScalingPlanResponse) => any;
273
- }
274
222
 
275
223
  export declare class ObjectNotFoundException extends __BaseException {
276
224
  readonly name: "ObjectNotFoundException";
@@ -289,10 +237,6 @@ export interface DescribeScalingPlanResourcesRequest {
289
237
 
290
238
  NextToken?: string;
291
239
  }
292
- export declare namespace DescribeScalingPlanResourcesRequest {
293
-
294
- const filterSensitiveLog: (obj: DescribeScalingPlanResourcesRequest) => any;
295
- }
296
240
  export declare enum PolicyType {
297
241
  TargetTrackingScaling = "TargetTrackingScaling"
298
242
  }
@@ -305,10 +249,6 @@ export interface ScalingPolicy {
305
249
 
306
250
  TargetTrackingConfiguration?: TargetTrackingConfiguration;
307
251
  }
308
- export declare namespace ScalingPolicy {
309
-
310
- const filterSensitiveLog: (obj: ScalingPolicy) => any;
311
- }
312
252
  export declare enum ScalingStatusCode {
313
253
  Active = "Active",
314
254
  Inactive = "Inactive",
@@ -333,20 +273,12 @@ export interface ScalingPlanResource {
333
273
 
334
274
  ScalingStatusMessage?: string;
335
275
  }
336
- export declare namespace ScalingPlanResource {
337
-
338
- const filterSensitiveLog: (obj: ScalingPlanResource) => any;
339
- }
340
276
  export interface DescribeScalingPlanResourcesResponse {
341
277
 
342
278
  ScalingPlanResources?: ScalingPlanResource[];
343
279
 
344
280
  NextToken?: string;
345
281
  }
346
- export declare namespace DescribeScalingPlanResourcesResponse {
347
-
348
- const filterSensitiveLog: (obj: DescribeScalingPlanResourcesResponse) => any;
349
- }
350
282
 
351
283
  export declare class InvalidNextTokenException extends __BaseException {
352
284
  readonly name: "InvalidNextTokenException";
@@ -367,10 +299,6 @@ export interface DescribeScalingPlansRequest {
367
299
 
368
300
  NextToken?: string;
369
301
  }
370
- export declare namespace DescribeScalingPlansRequest {
371
-
372
- const filterSensitiveLog: (obj: DescribeScalingPlansRequest) => any;
373
- }
374
302
  export declare enum ScalingPlanStatusCode {
375
303
  Active = "Active",
376
304
  ActiveWithProblems = "ActiveWithProblems",
@@ -400,20 +328,12 @@ export interface ScalingPlan {
400
328
 
401
329
  CreationTime?: Date;
402
330
  }
403
- export declare namespace ScalingPlan {
404
-
405
- const filterSensitiveLog: (obj: ScalingPlan) => any;
406
- }
407
331
  export interface DescribeScalingPlansResponse {
408
332
 
409
333
  ScalingPlans?: ScalingPlan[];
410
334
 
411
335
  NextToken?: string;
412
336
  }
413
- export declare namespace DescribeScalingPlansResponse {
414
-
415
- const filterSensitiveLog: (obj: DescribeScalingPlansResponse) => any;
416
- }
417
337
  export declare enum ForecastDataType {
418
338
  CapacityForecast = "CapacityForecast",
419
339
  LoadForecast = "LoadForecast",
@@ -438,10 +358,6 @@ export interface GetScalingPlanResourceForecastDataRequest {
438
358
 
439
359
  EndTime: Date | undefined;
440
360
  }
441
- export declare namespace GetScalingPlanResourceForecastDataRequest {
442
-
443
- const filterSensitiveLog: (obj: GetScalingPlanResourceForecastDataRequest) => any;
444
- }
445
361
 
446
362
  export interface Datapoint {
447
363
 
@@ -449,18 +365,10 @@ export interface Datapoint {
449
365
 
450
366
  Value?: number;
451
367
  }
452
- export declare namespace Datapoint {
453
-
454
- const filterSensitiveLog: (obj: Datapoint) => any;
455
- }
456
368
  export interface GetScalingPlanResourceForecastDataResponse {
457
369
 
458
370
  Datapoints: Datapoint[] | undefined;
459
371
  }
460
- export declare namespace GetScalingPlanResourceForecastDataResponse {
461
-
462
- const filterSensitiveLog: (obj: GetScalingPlanResourceForecastDataResponse) => any;
463
- }
464
372
  export interface UpdateScalingPlanRequest {
465
373
 
466
374
  ScalingPlanName: string | undefined;
@@ -471,13 +379,55 @@ export interface UpdateScalingPlanRequest {
471
379
 
472
380
  ScalingInstructions?: ScalingInstruction[];
473
381
  }
474
- export declare namespace UpdateScalingPlanRequest {
475
-
476
- const filterSensitiveLog: (obj: UpdateScalingPlanRequest) => any;
477
- }
478
382
  export interface UpdateScalingPlanResponse {
479
383
  }
480
- export declare namespace UpdateScalingPlanResponse {
481
-
482
- const filterSensitiveLog: (obj: UpdateScalingPlanResponse) => any;
483
- }
384
+
385
+ export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
386
+
387
+ export declare const ApplicationSourceFilterSensitiveLog: (obj: ApplicationSource) => any;
388
+
389
+ export declare const MetricDimensionFilterSensitiveLog: (obj: MetricDimension) => any;
390
+
391
+ export declare const CustomizedLoadMetricSpecificationFilterSensitiveLog: (obj: CustomizedLoadMetricSpecification) => any;
392
+
393
+ export declare const PredefinedLoadMetricSpecificationFilterSensitiveLog: (obj: PredefinedLoadMetricSpecification) => any;
394
+
395
+ export declare const CustomizedScalingMetricSpecificationFilterSensitiveLog: (obj: CustomizedScalingMetricSpecification) => any;
396
+
397
+ export declare const PredefinedScalingMetricSpecificationFilterSensitiveLog: (obj: PredefinedScalingMetricSpecification) => any;
398
+
399
+ export declare const TargetTrackingConfigurationFilterSensitiveLog: (obj: TargetTrackingConfiguration) => any;
400
+
401
+ export declare const ScalingInstructionFilterSensitiveLog: (obj: ScalingInstruction) => any;
402
+
403
+ export declare const CreateScalingPlanRequestFilterSensitiveLog: (obj: CreateScalingPlanRequest) => any;
404
+
405
+ export declare const CreateScalingPlanResponseFilterSensitiveLog: (obj: CreateScalingPlanResponse) => any;
406
+
407
+ export declare const DeleteScalingPlanRequestFilterSensitiveLog: (obj: DeleteScalingPlanRequest) => any;
408
+
409
+ export declare const DeleteScalingPlanResponseFilterSensitiveLog: (obj: DeleteScalingPlanResponse) => any;
410
+
411
+ export declare const DescribeScalingPlanResourcesRequestFilterSensitiveLog: (obj: DescribeScalingPlanResourcesRequest) => any;
412
+
413
+ export declare const ScalingPolicyFilterSensitiveLog: (obj: ScalingPolicy) => any;
414
+
415
+ export declare const ScalingPlanResourceFilterSensitiveLog: (obj: ScalingPlanResource) => any;
416
+
417
+ export declare const DescribeScalingPlanResourcesResponseFilterSensitiveLog: (obj: DescribeScalingPlanResourcesResponse) => any;
418
+
419
+ export declare const DescribeScalingPlansRequestFilterSensitiveLog: (obj: DescribeScalingPlansRequest) => any;
420
+
421
+ export declare const ScalingPlanFilterSensitiveLog: (obj: ScalingPlan) => any;
422
+
423
+ export declare const DescribeScalingPlansResponseFilterSensitiveLog: (obj: DescribeScalingPlansResponse) => any;
424
+
425
+ export declare const GetScalingPlanResourceForecastDataRequestFilterSensitiveLog: (obj: GetScalingPlanResourceForecastDataRequest) => any;
426
+
427
+ export declare const DatapointFilterSensitiveLog: (obj: Datapoint) => any;
428
+
429
+ export declare const GetScalingPlanResourceForecastDataResponseFilterSensitiveLog: (obj: GetScalingPlanResourceForecastDataResponse) => any;
430
+
431
+ export declare const UpdateScalingPlanRequestFilterSensitiveLog: (obj: UpdateScalingPlanRequest) => any;
432
+
433
+ export declare const UpdateScalingPlanResponseFilterSensitiveLog: (obj: UpdateScalingPlanResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-auto-scaling-plans",
3
3
  "description": "AWS SDK for JavaScript Auto Scaling Plans Client for Node.js, Browser and React Native",
4
- "version": "3.131.0",
4
+ "version": "3.142.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.142.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.142.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.142.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.142.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.142.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",