@aws-sdk/client-application-auto-scaling 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.
- package/dist-cjs/commands/DeleteScalingPolicyCommand.js +2 -3
- package/dist-cjs/commands/DeleteScheduledActionCommand.js +2 -3
- package/dist-cjs/commands/DeregisterScalableTargetCommand.js +2 -3
- package/dist-cjs/commands/DescribeScalableTargetsCommand.js +2 -3
- package/dist-cjs/commands/DescribeScalingActivitiesCommand.js +2 -3
- package/dist-cjs/commands/DescribeScalingPoliciesCommand.js +2 -3
- package/dist-cjs/commands/DescribeScheduledActionsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/PutScalingPolicyCommand.js +2 -3
- package/dist-cjs/commands/PutScheduledActionCommand.js +2 -3
- package/dist-cjs/commands/RegisterScalableTargetCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -178
- package/dist-es/commands/DeleteScalingPolicyCommand.js +2 -3
- package/dist-es/commands/DeleteScheduledActionCommand.js +2 -3
- package/dist-es/commands/DeregisterScalableTargetCommand.js +2 -3
- package/dist-es/commands/DescribeScalableTargetsCommand.js +2 -3
- package/dist-es/commands/DescribeScalingActivitiesCommand.js +2 -3
- package/dist-es/commands/DescribeScalingPoliciesCommand.js +2 -3
- package/dist-es/commands/DescribeScheduledActionsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/PutScalingPolicyCommand.js +2 -3
- package/dist-es/commands/PutScheduledActionCommand.js +2 -3
- package/dist-es/commands/RegisterScalableTargetCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -132
- package/dist-types/ApplicationAutoScaling.d.ts +14 -0
- package/dist-types/ApplicationAutoScalingClient.d.ts +24 -4
- package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteScheduledActionCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterScalableTargetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScalableTargetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutScalingPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutScheduledActionCommand.d.ts +16 -0
- package/dist-types/commands/RegisterScalableTargetCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/ApplicationAutoScalingServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +129 -176
- package/dist-types/pagination/DescribeScalableTargetsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeScalingActivitiesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeScheduledActionsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -130
- package/package.json +4 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "../commands/DescribeScalingPoliciesCommand";
|
|
3
3
|
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeScalingPolicies(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScalingPoliciesCommandInput, ...additionalArguments: any): Paginator<DescribeScalingPoliciesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "../commands/DescribeScheduledActionsCommand";
|
|
3
3
|
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeScheduledActions(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScheduledActionsCommandInput, ...additionalArguments: any): Paginator<DescribeScheduledActionsCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface ApplicationAutoScalingPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: ApplicationAutoScalingClient;
|
|
5
8
|
}
|
|
@@ -411,133 +411,3 @@ export interface UntagResourceRequest {
|
|
|
411
411
|
TagKeys: string[] | undefined;
|
|
412
412
|
}
|
|
413
413
|
export interface UntagResourceResponse {}
|
|
414
|
-
export declare const AlarmFilterSensitiveLog: (obj: Alarm) => any;
|
|
415
|
-
export declare const DeleteScalingPolicyRequestFilterSensitiveLog: (
|
|
416
|
-
obj: DeleteScalingPolicyRequest
|
|
417
|
-
) => any;
|
|
418
|
-
export declare const DeleteScalingPolicyResponseFilterSensitiveLog: (
|
|
419
|
-
obj: DeleteScalingPolicyResponse
|
|
420
|
-
) => any;
|
|
421
|
-
export declare const DeleteScheduledActionRequestFilterSensitiveLog: (
|
|
422
|
-
obj: DeleteScheduledActionRequest
|
|
423
|
-
) => any;
|
|
424
|
-
export declare const DeleteScheduledActionResponseFilterSensitiveLog: (
|
|
425
|
-
obj: DeleteScheduledActionResponse
|
|
426
|
-
) => any;
|
|
427
|
-
export declare const DeregisterScalableTargetRequestFilterSensitiveLog: (
|
|
428
|
-
obj: DeregisterScalableTargetRequest
|
|
429
|
-
) => any;
|
|
430
|
-
export declare const DeregisterScalableTargetResponseFilterSensitiveLog: (
|
|
431
|
-
obj: DeregisterScalableTargetResponse
|
|
432
|
-
) => any;
|
|
433
|
-
export declare const DescribeScalableTargetsRequestFilterSensitiveLog: (
|
|
434
|
-
obj: DescribeScalableTargetsRequest
|
|
435
|
-
) => any;
|
|
436
|
-
export declare const SuspendedStateFilterSensitiveLog: (
|
|
437
|
-
obj: SuspendedState
|
|
438
|
-
) => any;
|
|
439
|
-
export declare const ScalableTargetFilterSensitiveLog: (
|
|
440
|
-
obj: ScalableTarget
|
|
441
|
-
) => any;
|
|
442
|
-
export declare const DescribeScalableTargetsResponseFilterSensitiveLog: (
|
|
443
|
-
obj: DescribeScalableTargetsResponse
|
|
444
|
-
) => any;
|
|
445
|
-
export declare const DescribeScalingActivitiesRequestFilterSensitiveLog: (
|
|
446
|
-
obj: DescribeScalingActivitiesRequest
|
|
447
|
-
) => any;
|
|
448
|
-
export declare const NotScaledReasonFilterSensitiveLog: (
|
|
449
|
-
obj: NotScaledReason
|
|
450
|
-
) => any;
|
|
451
|
-
export declare const ScalingActivityFilterSensitiveLog: (
|
|
452
|
-
obj: ScalingActivity
|
|
453
|
-
) => any;
|
|
454
|
-
export declare const DescribeScalingActivitiesResponseFilterSensitiveLog: (
|
|
455
|
-
obj: DescribeScalingActivitiesResponse
|
|
456
|
-
) => any;
|
|
457
|
-
export declare const DescribeScalingPoliciesRequestFilterSensitiveLog: (
|
|
458
|
-
obj: DescribeScalingPoliciesRequest
|
|
459
|
-
) => any;
|
|
460
|
-
export declare const StepAdjustmentFilterSensitiveLog: (
|
|
461
|
-
obj: StepAdjustment
|
|
462
|
-
) => any;
|
|
463
|
-
export declare const StepScalingPolicyConfigurationFilterSensitiveLog: (
|
|
464
|
-
obj: StepScalingPolicyConfiguration
|
|
465
|
-
) => any;
|
|
466
|
-
export declare const MetricDimensionFilterSensitiveLog: (
|
|
467
|
-
obj: MetricDimension
|
|
468
|
-
) => any;
|
|
469
|
-
export declare const TargetTrackingMetricDimensionFilterSensitiveLog: (
|
|
470
|
-
obj: TargetTrackingMetricDimension
|
|
471
|
-
) => any;
|
|
472
|
-
export declare const TargetTrackingMetricFilterSensitiveLog: (
|
|
473
|
-
obj: TargetTrackingMetric
|
|
474
|
-
) => any;
|
|
475
|
-
export declare const TargetTrackingMetricStatFilterSensitiveLog: (
|
|
476
|
-
obj: TargetTrackingMetricStat
|
|
477
|
-
) => any;
|
|
478
|
-
export declare const TargetTrackingMetricDataQueryFilterSensitiveLog: (
|
|
479
|
-
obj: TargetTrackingMetricDataQuery
|
|
480
|
-
) => any;
|
|
481
|
-
export declare const CustomizedMetricSpecificationFilterSensitiveLog: (
|
|
482
|
-
obj: CustomizedMetricSpecification
|
|
483
|
-
) => any;
|
|
484
|
-
export declare const PredefinedMetricSpecificationFilterSensitiveLog: (
|
|
485
|
-
obj: PredefinedMetricSpecification
|
|
486
|
-
) => any;
|
|
487
|
-
export declare const TargetTrackingScalingPolicyConfigurationFilterSensitiveLog: (
|
|
488
|
-
obj: TargetTrackingScalingPolicyConfiguration
|
|
489
|
-
) => any;
|
|
490
|
-
export declare const ScalingPolicyFilterSensitiveLog: (
|
|
491
|
-
obj: ScalingPolicy
|
|
492
|
-
) => any;
|
|
493
|
-
export declare const DescribeScalingPoliciesResponseFilterSensitiveLog: (
|
|
494
|
-
obj: DescribeScalingPoliciesResponse
|
|
495
|
-
) => any;
|
|
496
|
-
export declare const DescribeScheduledActionsRequestFilterSensitiveLog: (
|
|
497
|
-
obj: DescribeScheduledActionsRequest
|
|
498
|
-
) => any;
|
|
499
|
-
export declare const ScalableTargetActionFilterSensitiveLog: (
|
|
500
|
-
obj: ScalableTargetAction
|
|
501
|
-
) => any;
|
|
502
|
-
export declare const ScheduledActionFilterSensitiveLog: (
|
|
503
|
-
obj: ScheduledAction
|
|
504
|
-
) => any;
|
|
505
|
-
export declare const DescribeScheduledActionsResponseFilterSensitiveLog: (
|
|
506
|
-
obj: DescribeScheduledActionsResponse
|
|
507
|
-
) => any;
|
|
508
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
509
|
-
obj: ListTagsForResourceRequest
|
|
510
|
-
) => any;
|
|
511
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
512
|
-
obj: ListTagsForResourceResponse
|
|
513
|
-
) => any;
|
|
514
|
-
export declare const PutScalingPolicyRequestFilterSensitiveLog: (
|
|
515
|
-
obj: PutScalingPolicyRequest
|
|
516
|
-
) => any;
|
|
517
|
-
export declare const PutScalingPolicyResponseFilterSensitiveLog: (
|
|
518
|
-
obj: PutScalingPolicyResponse
|
|
519
|
-
) => any;
|
|
520
|
-
export declare const PutScheduledActionRequestFilterSensitiveLog: (
|
|
521
|
-
obj: PutScheduledActionRequest
|
|
522
|
-
) => any;
|
|
523
|
-
export declare const PutScheduledActionResponseFilterSensitiveLog: (
|
|
524
|
-
obj: PutScheduledActionResponse
|
|
525
|
-
) => any;
|
|
526
|
-
export declare const RegisterScalableTargetRequestFilterSensitiveLog: (
|
|
527
|
-
obj: RegisterScalableTargetRequest
|
|
528
|
-
) => any;
|
|
529
|
-
export declare const RegisterScalableTargetResponseFilterSensitiveLog: (
|
|
530
|
-
obj: RegisterScalableTargetResponse
|
|
531
|
-
) => any;
|
|
532
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
533
|
-
obj: TagResourceRequest
|
|
534
|
-
) => any;
|
|
535
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
536
|
-
obj: TagResourceResponse
|
|
537
|
-
) => any;
|
|
538
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
539
|
-
obj: UntagResourceRequest
|
|
540
|
-
) => any;
|
|
541
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
542
|
-
obj: UntagResourceResponse
|
|
543
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Auto Scaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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 application-auto-scaling"
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|