@aws-sdk/client-auto-scaling-plans 3.296.0 → 3.298.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 (26) hide show
  1. package/dist-cjs/commands/CreateScalingPlanCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteScalingPlanCommand.js +2 -3
  3. package/dist-cjs/commands/DescribeScalingPlanResourcesCommand.js +2 -3
  4. package/dist-cjs/commands/DescribeScalingPlansCommand.js +2 -3
  5. package/dist-cjs/commands/GetScalingPlanResourceForecastDataCommand.js +2 -3
  6. package/dist-cjs/commands/UpdateScalingPlanCommand.js +2 -3
  7. package/dist-cjs/models/models_0.js +1 -101
  8. package/dist-es/commands/CreateScalingPlanCommand.js +2 -3
  9. package/dist-es/commands/DeleteScalingPlanCommand.js +2 -3
  10. package/dist-es/commands/DescribeScalingPlanResourcesCommand.js +2 -3
  11. package/dist-es/commands/DescribeScalingPlansCommand.js +2 -3
  12. package/dist-es/commands/GetScalingPlanResourceForecastDataCommand.js +2 -3
  13. package/dist-es/commands/UpdateScalingPlanCommand.js +2 -3
  14. package/dist-es/models/models_0.js +0 -75
  15. package/dist-types/AutoScalingPlans.d.ts +7 -0
  16. package/dist-types/AutoScalingPlansClient.d.ts +24 -4
  17. package/dist-types/commands/CreateScalingPlanCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteScalingPlanCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeScalingPlanResourcesCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeScalingPlansCommand.d.ts +16 -0
  21. package/dist-types/commands/GetScalingPlanResourceForecastDataCommand.d.ts +16 -0
  22. package/dist-types/commands/UpdateScalingPlanCommand.d.ts +16 -0
  23. package/dist-types/models/AutoScalingPlansServiceException.d.ts +2 -0
  24. package/dist-types/models/models_0.d.ts +91 -100
  25. package/dist-types/ts3.4/models/models_0.d.ts +0 -69
  26. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>Concurrent updates caused an exception, for example, if you request an update to a
5
6
  * scaling plan that already has a pending update.</p>
6
7
  */
@@ -14,6 +15,7 @@ export declare class ConcurrentUpdateException extends __BaseException {
14
15
  constructor(opts: __ExceptionOptionType<ConcurrentUpdateException, __BaseException>);
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>Represents a tag.</p>
18
20
  */
19
21
  export interface TagFilter {
@@ -27,6 +29,7 @@ export interface TagFilter {
27
29
  Values?: string[];
28
30
  }
29
31
  /**
32
+ * @public
30
33
  * <p>Represents an application source.</p>
31
34
  */
32
35
  export interface ApplicationSource {
@@ -40,6 +43,7 @@ export interface ApplicationSource {
40
43
  TagFilters?: TagFilter[];
41
44
  }
42
45
  /**
46
+ * @public
43
47
  * <p>Represents a dimension for a customized metric.</p>
44
48
  */
45
49
  export interface MetricDimension {
@@ -52,6 +56,9 @@ export interface MetricDimension {
52
56
  */
53
57
  Value: string | undefined;
54
58
  }
59
+ /**
60
+ * @public
61
+ */
55
62
  export declare enum MetricStatistic {
56
63
  Average = "Average",
57
64
  Maximum = "Maximum",
@@ -60,6 +67,7 @@ export declare enum MetricStatistic {
60
67
  Sum = "Sum"
61
68
  }
62
69
  /**
70
+ * @public
63
71
  * <p>Represents a CloudWatch metric of your choosing that can be used for predictive scaling. </p>
64
72
  * <p>For predictive scaling to work with a customized load metric specification, AWS Auto Scaling
65
73
  * needs access to the <code>Sum</code> and <code>Average</code> statistics that CloudWatch computes
@@ -109,6 +117,9 @@ export interface CustomizedLoadMetricSpecification {
109
117
  */
110
118
  Unit?: string;
111
119
  }
120
+ /**
121
+ * @public
122
+ */
112
123
  export declare enum LoadMetricType {
113
124
  ALBTargetGroupRequestCount = "ALBTargetGroupRequestCount",
114
125
  ASGTotalCPUUtilization = "ASGTotalCPUUtilization",
@@ -116,6 +127,7 @@ export declare enum LoadMetricType {
116
127
  ASGTotalNetworkOut = "ASGTotalNetworkOut"
117
128
  }
118
129
  /**
130
+ * @public
119
131
  * <p>Represents a predefined metric that can be used for predictive scaling.</p>
120
132
  * <p>After creating your scaling plan, you can use the AWS Auto Scaling console to visualize
121
133
  * forecasts for the specified metric. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/plans/userguide/gs-create-scaling-plan.html#gs-view-resource">View
@@ -153,15 +165,24 @@ export interface PredefinedLoadMetricSpecification {
153
165
  */
154
166
  ResourceLabel?: string;
155
167
  }
168
+ /**
169
+ * @public
170
+ */
156
171
  export declare enum PredictiveScalingMaxCapacityBehavior {
157
172
  SetForecastCapacityToMaxCapacity = "SetForecastCapacityToMaxCapacity",
158
173
  SetMaxCapacityAboveForecastCapacity = "SetMaxCapacityAboveForecastCapacity",
159
174
  SetMaxCapacityToForecastCapacity = "SetMaxCapacityToForecastCapacity"
160
175
  }
176
+ /**
177
+ * @public
178
+ */
161
179
  export declare enum PredictiveScalingMode {
162
180
  ForecastAndScale = "ForecastAndScale",
163
181
  ForecastOnly = "ForecastOnly"
164
182
  }
183
+ /**
184
+ * @public
185
+ */
165
186
  export declare enum ScalableDimension {
166
187
  AutoScalingGroupDesiredCapacity = "autoscaling:autoScalingGroup:DesiredCapacity",
167
188
  DynamoDBIndexReadCapacityUnits = "dynamodb:index:ReadCapacityUnits",
@@ -172,10 +193,16 @@ export declare enum ScalableDimension {
172
193
  ECSServiceDesiredCount = "ecs:service:DesiredCount",
173
194
  RDSClusterReadReplicaCount = "rds:cluster:ReadReplicaCount"
174
195
  }
196
+ /**
197
+ * @public
198
+ */
175
199
  export declare enum ScalingPolicyUpdateBehavior {
176
200
  KeepExternalPolicies = "KeepExternalPolicies",
177
201
  ReplaceExternalPolicies = "ReplaceExternalPolicies"
178
202
  }
203
+ /**
204
+ * @public
205
+ */
179
206
  export declare enum ServiceNamespace {
180
207
  AUTOSCALING = "autoscaling",
181
208
  DYNAMODB = "dynamodb",
@@ -184,6 +211,7 @@ export declare enum ServiceNamespace {
184
211
  RDS = "rds"
185
212
  }
186
213
  /**
214
+ * @public
187
215
  * <p>Represents a CloudWatch metric of your choosing that can be used for dynamic scaling as part
188
216
  * of a target tracking scaling policy. </p>
189
217
  * <p>To create your customized scaling metric specification:</p>
@@ -228,6 +256,9 @@ export interface CustomizedScalingMetricSpecification {
228
256
  */
229
257
  Unit?: string;
230
258
  }
259
+ /**
260
+ * @public
261
+ */
231
262
  export declare enum ScalingMetricType {
232
263
  ALBRequestCountPerTarget = "ALBRequestCountPerTarget",
233
264
  ASGAverageCPUUtilization = "ASGAverageCPUUtilization",
@@ -244,6 +275,7 @@ export declare enum ScalingMetricType {
244
275
  RDSReaderAverageDatabaseConnections = "RDSReaderAverageDatabaseConnections"
245
276
  }
246
277
  /**
278
+ * @public
247
279
  * <p>Represents a predefined metric that can be used for dynamic scaling as part of a target
248
280
  * tracking scaling policy.</p>
249
281
  */
@@ -281,6 +313,7 @@ export interface PredefinedScalingMetricSpecification {
281
313
  ResourceLabel?: string;
282
314
  }
283
315
  /**
316
+ * @public
284
317
  * <p>Describes a target tracking configuration to use with AWS Auto Scaling. Used with <a>ScalingInstruction</a> and <a>ScalingPolicy</a>.</p>
285
318
  */
286
319
  export interface TargetTrackingConfiguration {
@@ -337,6 +370,7 @@ export interface TargetTrackingConfiguration {
337
370
  EstimatedInstanceWarmup?: number;
338
371
  }
339
372
  /**
373
+ * @public
340
374
  * <p>Describes a scaling instruction for a scalable resource in a scaling plan. Each scaling
341
375
  * instruction applies to one resource.</p>
342
376
  * <p>AWS Auto Scaling creates target tracking scaling policies based on the scaling instructions.
@@ -532,6 +566,9 @@ export interface ScalingInstruction {
532
566
  */
533
567
  DisableDynamicScaling?: boolean;
534
568
  }
569
+ /**
570
+ * @public
571
+ */
535
572
  export interface CreateScalingPlanRequest {
536
573
  /**
537
574
  * <p>The name of the scaling plan. Names cannot contain vertical bars, colons, or forward
@@ -550,6 +587,9 @@ export interface CreateScalingPlanRequest {
550
587
  */
551
588
  ScalingInstructions: ScalingInstruction[] | undefined;
552
589
  }
590
+ /**
591
+ * @public
592
+ */
553
593
  export interface CreateScalingPlanResponse {
554
594
  /**
555
595
  * <p>The version number of the scaling plan. This value is always <code>1</code>. Currently,
@@ -558,6 +598,7 @@ export interface CreateScalingPlanResponse {
558
598
  ScalingPlanVersion: number | undefined;
559
599
  }
560
600
  /**
601
+ * @public
561
602
  * <p>The service encountered an internal error.</p>
562
603
  */
563
604
  export declare class InternalServiceException extends __BaseException {
@@ -570,6 +611,7 @@ export declare class InternalServiceException extends __BaseException {
570
611
  constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
571
612
  }
572
613
  /**
614
+ * @public
573
615
  * <p>Your account exceeded a limit. This exception is thrown when a per-account resource
574
616
  * limit is exceeded.</p>
575
617
  */
@@ -583,6 +625,7 @@ export declare class LimitExceededException extends __BaseException {
583
625
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
584
626
  }
585
627
  /**
628
+ * @public
586
629
  * <p>An exception was thrown for a validation issue. Review the parameters provided.</p>
587
630
  */
588
631
  export declare class ValidationException extends __BaseException {
@@ -594,6 +637,9 @@ export declare class ValidationException extends __BaseException {
594
637
  */
595
638
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
596
639
  }
640
+ /**
641
+ * @public
642
+ */
597
643
  export interface DeleteScalingPlanRequest {
598
644
  /**
599
645
  * <p>The name of the scaling plan.</p>
@@ -605,9 +651,13 @@ export interface DeleteScalingPlanRequest {
605
651
  */
606
652
  ScalingPlanVersion: number | undefined;
607
653
  }
654
+ /**
655
+ * @public
656
+ */
608
657
  export interface DeleteScalingPlanResponse {
609
658
  }
610
659
  /**
660
+ * @public
611
661
  * <p>The specified object could not be found.</p>
612
662
  */
613
663
  export declare class ObjectNotFoundException extends __BaseException {
@@ -619,6 +669,9 @@ export declare class ObjectNotFoundException extends __BaseException {
619
669
  */
620
670
  constructor(opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>);
621
671
  }
672
+ /**
673
+ * @public
674
+ */
622
675
  export interface DescribeScalingPlanResourcesRequest {
623
676
  /**
624
677
  * <p>The name of the scaling plan.</p>
@@ -639,10 +692,14 @@ export interface DescribeScalingPlanResourcesRequest {
639
692
  */
640
693
  NextToken?: string;
641
694
  }
695
+ /**
696
+ * @public
697
+ */
642
698
  export declare enum PolicyType {
643
699
  TargetTrackingScaling = "TargetTrackingScaling"
644
700
  }
645
701
  /**
702
+ * @public
646
703
  * <p>Represents a scaling policy.</p>
647
704
  */
648
705
  export interface ScalingPolicy {
@@ -660,12 +717,16 @@ export interface ScalingPolicy {
660
717
  */
661
718
  TargetTrackingConfiguration?: TargetTrackingConfiguration;
662
719
  }
720
+ /**
721
+ * @public
722
+ */
663
723
  export declare enum ScalingStatusCode {
664
724
  Active = "Active",
665
725
  Inactive = "Inactive",
666
726
  PartiallyActive = "PartiallyActive"
667
727
  }
668
728
  /**
729
+ * @public
669
730
  * <p>Represents a scalable resource.</p>
670
731
  */
671
732
  export interface ScalingPlanResource {
@@ -781,6 +842,9 @@ export interface ScalingPlanResource {
781
842
  */
782
843
  ScalingStatusMessage?: string;
783
844
  }
845
+ /**
846
+ * @public
847
+ */
784
848
  export interface DescribeScalingPlanResourcesResponse {
785
849
  /**
786
850
  * <p>Information about the scalable resources.</p>
@@ -793,6 +857,7 @@ export interface DescribeScalingPlanResourcesResponse {
793
857
  NextToken?: string;
794
858
  }
795
859
  /**
860
+ * @public
796
861
  * <p>The token provided is not valid.</p>
797
862
  */
798
863
  export declare class InvalidNextTokenException extends __BaseException {
@@ -804,6 +869,9 @@ export declare class InvalidNextTokenException extends __BaseException {
804
869
  */
805
870
  constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
806
871
  }
872
+ /**
873
+ * @public
874
+ */
807
875
  export interface DescribeScalingPlansRequest {
808
876
  /**
809
877
  * <p>The names of the scaling plans (up to 10). If you specify application sources, you
@@ -834,6 +902,9 @@ export interface DescribeScalingPlansRequest {
834
902
  */
835
903
  NextToken?: string;
836
904
  }
905
+ /**
906
+ * @public
907
+ */
837
908
  export declare enum ScalingPlanStatusCode {
838
909
  Active = "Active",
839
910
  ActiveWithProblems = "ActiveWithProblems",
@@ -845,6 +916,7 @@ export declare enum ScalingPlanStatusCode {
845
916
  UpdateInProgress = "UpdateInProgress"
846
917
  }
847
918
  /**
919
+ * @public
848
920
  * <p>Represents a scaling plan.</p>
849
921
  */
850
922
  export interface ScalingPlan {
@@ -917,6 +989,9 @@ export interface ScalingPlan {
917
989
  */
918
990
  CreationTime?: Date;
919
991
  }
992
+ /**
993
+ * @public
994
+ */
920
995
  export interface DescribeScalingPlansResponse {
921
996
  /**
922
997
  * <p>Information about the scaling plans.</p>
@@ -928,12 +1003,18 @@ export interface DescribeScalingPlansResponse {
928
1003
  */
929
1004
  NextToken?: string;
930
1005
  }
1006
+ /**
1007
+ * @public
1008
+ */
931
1009
  export declare enum ForecastDataType {
932
1010
  CapacityForecast = "CapacityForecast",
933
1011
  LoadForecast = "LoadForecast",
934
1012
  ScheduledActionMaxCapacity = "ScheduledActionMaxCapacity",
935
1013
  ScheduledActionMinCapacity = "ScheduledActionMinCapacity"
936
1014
  }
1015
+ /**
1016
+ * @public
1017
+ */
937
1018
  export interface GetScalingPlanResourceForecastDataRequest {
938
1019
  /**
939
1020
  * <p>The name of the scaling plan.</p>
@@ -1001,6 +1082,7 @@ export interface GetScalingPlanResourceForecastDataRequest {
1001
1082
  EndTime: Date | undefined;
1002
1083
  }
1003
1084
  /**
1085
+ * @public
1004
1086
  * <p>Represents a single value in the forecast data used for predictive scaling.</p>
1005
1087
  */
1006
1088
  export interface Datapoint {
@@ -1013,12 +1095,18 @@ export interface Datapoint {
1013
1095
  */
1014
1096
  Value?: number;
1015
1097
  }
1098
+ /**
1099
+ * @public
1100
+ */
1016
1101
  export interface GetScalingPlanResourceForecastDataResponse {
1017
1102
  /**
1018
1103
  * <p>The data points to return.</p>
1019
1104
  */
1020
1105
  Datapoints: Datapoint[] | undefined;
1021
1106
  }
1107
+ /**
1108
+ * @public
1109
+ */
1022
1110
  export interface UpdateScalingPlanRequest {
1023
1111
  /**
1024
1112
  * <p>The name of the scaling plan.</p>
@@ -1040,105 +1128,8 @@ export interface UpdateScalingPlanRequest {
1040
1128
  */
1041
1129
  ScalingInstructions?: ScalingInstruction[];
1042
1130
  }
1043
- export interface UpdateScalingPlanResponse {
1044
- }
1045
- /**
1046
- * @internal
1047
- */
1048
- export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
1049
- /**
1050
- * @internal
1051
- */
1052
- export declare const ApplicationSourceFilterSensitiveLog: (obj: ApplicationSource) => any;
1053
- /**
1054
- * @internal
1055
- */
1056
- export declare const MetricDimensionFilterSensitiveLog: (obj: MetricDimension) => any;
1057
- /**
1058
- * @internal
1059
- */
1060
- export declare const CustomizedLoadMetricSpecificationFilterSensitiveLog: (obj: CustomizedLoadMetricSpecification) => any;
1061
- /**
1062
- * @internal
1063
- */
1064
- export declare const PredefinedLoadMetricSpecificationFilterSensitiveLog: (obj: PredefinedLoadMetricSpecification) => any;
1065
- /**
1066
- * @internal
1067
- */
1068
- export declare const CustomizedScalingMetricSpecificationFilterSensitiveLog: (obj: CustomizedScalingMetricSpecification) => any;
1069
- /**
1070
- * @internal
1071
- */
1072
- export declare const PredefinedScalingMetricSpecificationFilterSensitiveLog: (obj: PredefinedScalingMetricSpecification) => any;
1073
- /**
1074
- * @internal
1075
- */
1076
- export declare const TargetTrackingConfigurationFilterSensitiveLog: (obj: TargetTrackingConfiguration) => any;
1077
- /**
1078
- * @internal
1079
- */
1080
- export declare const ScalingInstructionFilterSensitiveLog: (obj: ScalingInstruction) => any;
1081
- /**
1082
- * @internal
1083
- */
1084
- export declare const CreateScalingPlanRequestFilterSensitiveLog: (obj: CreateScalingPlanRequest) => any;
1085
- /**
1086
- * @internal
1087
- */
1088
- export declare const CreateScalingPlanResponseFilterSensitiveLog: (obj: CreateScalingPlanResponse) => any;
1089
- /**
1090
- * @internal
1091
- */
1092
- export declare const DeleteScalingPlanRequestFilterSensitiveLog: (obj: DeleteScalingPlanRequest) => any;
1093
- /**
1094
- * @internal
1095
- */
1096
- export declare const DeleteScalingPlanResponseFilterSensitiveLog: (obj: DeleteScalingPlanResponse) => any;
1097
1131
  /**
1098
- * @internal
1132
+ * @public
1099
1133
  */
1100
- export declare const DescribeScalingPlanResourcesRequestFilterSensitiveLog: (obj: DescribeScalingPlanResourcesRequest) => any;
1101
- /**
1102
- * @internal
1103
- */
1104
- export declare const ScalingPolicyFilterSensitiveLog: (obj: ScalingPolicy) => any;
1105
- /**
1106
- * @internal
1107
- */
1108
- export declare const ScalingPlanResourceFilterSensitiveLog: (obj: ScalingPlanResource) => any;
1109
- /**
1110
- * @internal
1111
- */
1112
- export declare const DescribeScalingPlanResourcesResponseFilterSensitiveLog: (obj: DescribeScalingPlanResourcesResponse) => any;
1113
- /**
1114
- * @internal
1115
- */
1116
- export declare const DescribeScalingPlansRequestFilterSensitiveLog: (obj: DescribeScalingPlansRequest) => any;
1117
- /**
1118
- * @internal
1119
- */
1120
- export declare const ScalingPlanFilterSensitiveLog: (obj: ScalingPlan) => any;
1121
- /**
1122
- * @internal
1123
- */
1124
- export declare const DescribeScalingPlansResponseFilterSensitiveLog: (obj: DescribeScalingPlansResponse) => any;
1125
- /**
1126
- * @internal
1127
- */
1128
- export declare const GetScalingPlanResourceForecastDataRequestFilterSensitiveLog: (obj: GetScalingPlanResourceForecastDataRequest) => any;
1129
- /**
1130
- * @internal
1131
- */
1132
- export declare const DatapointFilterSensitiveLog: (obj: Datapoint) => any;
1133
- /**
1134
- * @internal
1135
- */
1136
- export declare const GetScalingPlanResourceForecastDataResponseFilterSensitiveLog: (obj: GetScalingPlanResourceForecastDataResponse) => any;
1137
- /**
1138
- * @internal
1139
- */
1140
- export declare const UpdateScalingPlanRequestFilterSensitiveLog: (obj: UpdateScalingPlanRequest) => any;
1141
- /**
1142
- * @internal
1143
- */
1144
- export declare const UpdateScalingPlanResponseFilterSensitiveLog: (obj: UpdateScalingPlanResponse) => any;
1134
+ export interface UpdateScalingPlanResponse {
1135
+ }
@@ -274,72 +274,3 @@ export interface UpdateScalingPlanRequest {
274
274
  ScalingInstructions?: ScalingInstruction[];
275
275
  }
276
276
  export interface UpdateScalingPlanResponse {}
277
- export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
278
- export declare const ApplicationSourceFilterSensitiveLog: (
279
- obj: ApplicationSource
280
- ) => any;
281
- export declare const MetricDimensionFilterSensitiveLog: (
282
- obj: MetricDimension
283
- ) => any;
284
- export declare const CustomizedLoadMetricSpecificationFilterSensitiveLog: (
285
- obj: CustomizedLoadMetricSpecification
286
- ) => any;
287
- export declare const PredefinedLoadMetricSpecificationFilterSensitiveLog: (
288
- obj: PredefinedLoadMetricSpecification
289
- ) => any;
290
- export declare const CustomizedScalingMetricSpecificationFilterSensitiveLog: (
291
- obj: CustomizedScalingMetricSpecification
292
- ) => any;
293
- export declare const PredefinedScalingMetricSpecificationFilterSensitiveLog: (
294
- obj: PredefinedScalingMetricSpecification
295
- ) => any;
296
- export declare const TargetTrackingConfigurationFilterSensitiveLog: (
297
- obj: TargetTrackingConfiguration
298
- ) => any;
299
- export declare const ScalingInstructionFilterSensitiveLog: (
300
- obj: ScalingInstruction
301
- ) => any;
302
- export declare const CreateScalingPlanRequestFilterSensitiveLog: (
303
- obj: CreateScalingPlanRequest
304
- ) => any;
305
- export declare const CreateScalingPlanResponseFilterSensitiveLog: (
306
- obj: CreateScalingPlanResponse
307
- ) => any;
308
- export declare const DeleteScalingPlanRequestFilterSensitiveLog: (
309
- obj: DeleteScalingPlanRequest
310
- ) => any;
311
- export declare const DeleteScalingPlanResponseFilterSensitiveLog: (
312
- obj: DeleteScalingPlanResponse
313
- ) => any;
314
- export declare const DescribeScalingPlanResourcesRequestFilterSensitiveLog: (
315
- obj: DescribeScalingPlanResourcesRequest
316
- ) => any;
317
- export declare const ScalingPolicyFilterSensitiveLog: (
318
- obj: ScalingPolicy
319
- ) => any;
320
- export declare const ScalingPlanResourceFilterSensitiveLog: (
321
- obj: ScalingPlanResource
322
- ) => any;
323
- export declare const DescribeScalingPlanResourcesResponseFilterSensitiveLog: (
324
- obj: DescribeScalingPlanResourcesResponse
325
- ) => any;
326
- export declare const DescribeScalingPlansRequestFilterSensitiveLog: (
327
- obj: DescribeScalingPlansRequest
328
- ) => any;
329
- export declare const ScalingPlanFilterSensitiveLog: (obj: ScalingPlan) => any;
330
- export declare const DescribeScalingPlansResponseFilterSensitiveLog: (
331
- obj: DescribeScalingPlansResponse
332
- ) => any;
333
- export declare const GetScalingPlanResourceForecastDataRequestFilterSensitiveLog: (
334
- obj: GetScalingPlanResourceForecastDataRequest
335
- ) => any;
336
- export declare const DatapointFilterSensitiveLog: (obj: Datapoint) => any;
337
- export declare const GetScalingPlanResourceForecastDataResponseFilterSensitiveLog: (
338
- obj: GetScalingPlanResourceForecastDataResponse
339
- ) => any;
340
- export declare const UpdateScalingPlanRequestFilterSensitiveLog: (
341
- obj: UpdateScalingPlanRequest
342
- ) => any;
343
- export declare const UpdateScalingPlanResponseFilterSensitiveLog: (
344
- obj: UpdateScalingPlanResponse
345
- ) => 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.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo auto-scaling-plans"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",