@aws-sdk/client-application-auto-scaling 3.600.0 → 3.606.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/README.md +5 -2
- package/dist-cjs/index.js +6 -3
- package/dist-es/models/models_0.js +3 -0
- package/dist-types/ApplicationAutoScaling.d.ts +5 -2
- package/dist-types/ApplicationAutoScalingClient.d.ts +5 -2
- package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteScheduledActionCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterScalableTargetCommand.d.ts +2 -2
- package/dist-types/commands/DescribeScalableTargetsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +4 -4
- package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +5 -5
- package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +5 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutScalingPolicyCommand.d.ts +3 -3
- package/dist-types/commands/PutScheduledActionCommand.d.ts +2 -2
- package/dist-types/commands/RegisterScalableTargetCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/index.d.ts +5 -2
- package/dist-types/models/models_0.d.ts +201 -85
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +3 -3
|
@@ -42,6 +42,7 @@ export declare const ScalableDimension: {
|
|
|
42
42
|
readonly SageMakerInferenceComponentDesiredCopyCount: "sagemaker:inference-component:DesiredCopyCount";
|
|
43
43
|
readonly SageMakerVariantDesiredInstanceCount: "sagemaker:variant:DesiredInstanceCount";
|
|
44
44
|
readonly SageMakerVariantDesiredProvisionedConcurrency: "sagemaker:variant:DesiredProvisionedConcurrency";
|
|
45
|
+
readonly WorkSpacesWorkSpacesPoolDesiredUserSessions: "workspaces:workspacespool:DesiredUserSessions";
|
|
45
46
|
};
|
|
46
47
|
export type ScalableDimension =
|
|
47
48
|
(typeof ScalableDimension)[keyof typeof ScalableDimension];
|
|
@@ -60,6 +61,7 @@ export declare const ServiceNamespace: {
|
|
|
60
61
|
readonly NEPTUNE: "neptune";
|
|
61
62
|
readonly RDS: "rds";
|
|
62
63
|
readonly SAGEMAKER: "sagemaker";
|
|
64
|
+
readonly WORKSPACES: "workspaces";
|
|
63
65
|
};
|
|
64
66
|
export type ServiceNamespace =
|
|
65
67
|
(typeof ServiceNamespace)[keyof typeof ServiceNamespace];
|
|
@@ -283,6 +285,7 @@ export declare const MetricType: {
|
|
|
283
285
|
readonly SageMakerInferenceComponentInvocationsPerCopy: "SageMakerInferenceComponentInvocationsPerCopy";
|
|
284
286
|
readonly SageMakerVariantInvocationsPerInstance: "SageMakerVariantInvocationsPerInstance";
|
|
285
287
|
readonly SageMakerVariantProvisionedConcurrencyUtilization: "SageMakerVariantProvisionedConcurrencyUtilization";
|
|
288
|
+
readonly WorkSpacesAverageUserSessionsCapacityUtilization: "WorkSpacesAverageUserSessionsCapacityUtilization";
|
|
286
289
|
};
|
|
287
290
|
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
288
291
|
export interface PredefinedMetricSpecification {
|
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.606.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-application-auto-scaling",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.606.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.606.0",
|
|
25
25
|
"@aws-sdk/core": "3.598.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.600.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.598.0",
|