@aws-sdk/client-auto-scaling 3.300.0 → 3.301.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 (59) hide show
  1. package/dist-types/commands/AttachInstancesCommand.d.ts +2 -2
  2. package/dist-types/commands/AttachLoadBalancerTargetGroupsCommand.d.ts +2 -2
  3. package/dist-types/commands/AttachLoadBalancersCommand.d.ts +2 -2
  4. package/dist-types/commands/AttachTrafficSourcesCommand.d.ts +3 -3
  5. package/dist-types/commands/BatchDeleteScheduledActionCommand.d.ts +2 -2
  6. package/dist-types/commands/BatchPutScheduledUpdateGroupActionCommand.d.ts +3 -3
  7. package/dist-types/commands/CancelInstanceRefreshCommand.d.ts +1 -1
  8. package/dist-types/commands/CompleteLifecycleActionCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateAutoScalingGroupCommand.d.ts +36 -40
  10. package/dist-types/commands/CreateLaunchConfigurationCommand.d.ts +8 -8
  11. package/dist-types/commands/CreateOrUpdateTagsCommand.d.ts +3 -3
  12. package/dist-types/commands/DeleteAutoScalingGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteLaunchConfigurationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteLifecycleHookCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteNotificationConfigurationCommand.d.ts +1 -1
  16. package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteScheduledActionCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteTagsCommand.d.ts +3 -3
  19. package/dist-types/commands/DeleteWarmPoolCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeAutoScalingGroupsCommand.d.ts +5 -5
  21. package/dist-types/commands/DescribeAutoScalingInstancesCommand.d.ts +2 -2
  22. package/dist-types/commands/DescribeInstanceRefreshesCommand.d.ts +2 -2
  23. package/dist-types/commands/DescribeLaunchConfigurationsCommand.d.ts +2 -2
  24. package/dist-types/commands/DescribeLifecycleHooksCommand.d.ts +2 -2
  25. package/dist-types/commands/DescribeLoadBalancerTargetGroupsCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeNotificationConfigurationsCommand.d.ts +2 -2
  28. package/dist-types/commands/DescribePoliciesCommand.d.ts +3 -3
  29. package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +2 -2
  30. package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +2 -2
  31. package/dist-types/commands/DescribeTagsCommand.d.ts +4 -4
  32. package/dist-types/commands/DescribeTrafficSourcesCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeWarmPoolCommand.d.ts +1 -1
  34. package/dist-types/commands/DetachInstancesCommand.d.ts +2 -2
  35. package/dist-types/commands/DetachLoadBalancerTargetGroupsCommand.d.ts +2 -2
  36. package/dist-types/commands/DetachLoadBalancersCommand.d.ts +2 -2
  37. package/dist-types/commands/DetachTrafficSourcesCommand.d.ts +3 -3
  38. package/dist-types/commands/DisableMetricsCollectionCommand.d.ts +2 -2
  39. package/dist-types/commands/EnableMetricsCollectionCommand.d.ts +2 -2
  40. package/dist-types/commands/EnterStandbyCommand.d.ts +2 -2
  41. package/dist-types/commands/ExecutePolicyCommand.d.ts +1 -1
  42. package/dist-types/commands/ExitStandbyCommand.d.ts +2 -2
  43. package/dist-types/commands/GetPredictiveScalingForecastCommand.d.ts +1 -1
  44. package/dist-types/commands/PutLifecycleHookCommand.d.ts +1 -1
  45. package/dist-types/commands/PutNotificationConfigurationCommand.d.ts +2 -2
  46. package/dist-types/commands/PutScalingPolicyCommand.d.ts +27 -33
  47. package/dist-types/commands/PutScheduledUpdateGroupActionCommand.d.ts +1 -1
  48. package/dist-types/commands/PutWarmPoolCommand.d.ts +2 -2
  49. package/dist-types/commands/RecordLifecycleActionHeartbeatCommand.d.ts +1 -1
  50. package/dist-types/commands/ResumeProcessesCommand.d.ts +2 -2
  51. package/dist-types/commands/RollbackInstanceRefreshCommand.d.ts +1 -1
  52. package/dist-types/commands/SetDesiredCapacityCommand.d.ts +1 -1
  53. package/dist-types/commands/SetInstanceHealthCommand.d.ts +1 -1
  54. package/dist-types/commands/SetInstanceProtectionCommand.d.ts +2 -2
  55. package/dist-types/commands/StartInstanceRefreshCommand.d.ts +29 -33
  56. package/dist-types/commands/SuspendProcessesCommand.d.ts +2 -2
  57. package/dist-types/commands/TerminateInstanceInAutoScalingGroupCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateAutoScalingGroupCommand.d.ts +28 -32
  59. package/package.json +3 -3
@@ -69,50 +69,46 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {
69
69
  * import { AutoScalingClient, UpdateAutoScalingGroupCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import
70
70
  * // const { AutoScalingClient, UpdateAutoScalingGroupCommand } = require("@aws-sdk/client-auto-scaling"); // CommonJS import
71
71
  * const client = new AutoScalingClient(config);
72
- * const input = {
72
+ * const input = { // UpdateAutoScalingGroupType
73
73
  * AutoScalingGroupName: "STRING_VALUE", // required
74
74
  * LaunchConfigurationName: "STRING_VALUE",
75
- * LaunchTemplate: {
75
+ * LaunchTemplate: { // LaunchTemplateSpecification
76
76
  * LaunchTemplateId: "STRING_VALUE",
77
77
  * LaunchTemplateName: "STRING_VALUE",
78
78
  * Version: "STRING_VALUE",
79
79
  * },
80
- * MixedInstancesPolicy: {
81
- * LaunchTemplate: {
80
+ * MixedInstancesPolicy: { // MixedInstancesPolicy
81
+ * LaunchTemplate: { // LaunchTemplate
82
82
  * LaunchTemplateSpecification: {
83
83
  * LaunchTemplateId: "STRING_VALUE",
84
84
  * LaunchTemplateName: "STRING_VALUE",
85
85
  * Version: "STRING_VALUE",
86
86
  * },
87
- * Overrides: [
88
- * {
87
+ * Overrides: [ // Overrides
88
+ * { // LaunchTemplateOverrides
89
89
  * InstanceType: "STRING_VALUE",
90
90
  * WeightedCapacity: "STRING_VALUE",
91
- * LaunchTemplateSpecification: {
92
- * LaunchTemplateId: "<LaunchTemplateSpecification>",
93
- * LaunchTemplateName: "<LaunchTemplateSpecification>",
94
- * Version: "<LaunchTemplateSpecification>",
95
- * },
96
- * InstanceRequirements: {
97
- * VCpuCount: {
91
+ * LaunchTemplateSpecification: "<LaunchTemplateSpecification>",
92
+ * InstanceRequirements: { // InstanceRequirements
93
+ * VCpuCount: { // VCpuCountRequest
98
94
  * Min: Number("int"), // required
99
95
  * Max: Number("int"),
100
96
  * },
101
- * MemoryMiB: {
97
+ * MemoryMiB: { // MemoryMiBRequest
102
98
  * Min: Number("int"), // required
103
99
  * Max: Number("int"),
104
100
  * },
105
- * CpuManufacturers: [
101
+ * CpuManufacturers: [ // CpuManufacturers
106
102
  * "intel" || "amd" || "amazon-web-services",
107
103
  * ],
108
- * MemoryGiBPerVCpu: {
104
+ * MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
109
105
  * Min: Number("double"),
110
106
  * Max: Number("double"),
111
107
  * },
112
- * ExcludedInstanceTypes: [
108
+ * ExcludedInstanceTypes: [ // ExcludedInstanceTypes
113
109
  * "STRING_VALUE",
114
110
  * ],
115
- * InstanceGenerations: [
111
+ * InstanceGenerations: [ // InstanceGenerations
116
112
  * "current" || "previous",
117
113
  * ],
118
114
  * SpotMaxPricePercentageOverLowestPrice: Number("int"),
@@ -120,51 +116,51 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {
120
116
  * BareMetal: "included" || "excluded" || "required",
121
117
  * BurstablePerformance: "included" || "excluded" || "required",
122
118
  * RequireHibernateSupport: true || false,
123
- * NetworkInterfaceCount: {
119
+ * NetworkInterfaceCount: { // NetworkInterfaceCountRequest
124
120
  * Min: Number("int"),
125
121
  * Max: Number("int"),
126
122
  * },
127
123
  * LocalStorage: "included" || "excluded" || "required",
128
- * LocalStorageTypes: [
124
+ * LocalStorageTypes: [ // LocalStorageTypes
129
125
  * "hdd" || "ssd",
130
126
  * ],
131
- * TotalLocalStorageGB: {
127
+ * TotalLocalStorageGB: { // TotalLocalStorageGBRequest
132
128
  * Min: Number("double"),
133
129
  * Max: Number("double"),
134
130
  * },
135
- * BaselineEbsBandwidthMbps: {
131
+ * BaselineEbsBandwidthMbps: { // BaselineEbsBandwidthMbpsRequest
136
132
  * Min: Number("int"),
137
133
  * Max: Number("int"),
138
134
  * },
139
- * AcceleratorTypes: [
135
+ * AcceleratorTypes: [ // AcceleratorTypes
140
136
  * "gpu" || "fpga" || "inference",
141
137
  * ],
142
- * AcceleratorCount: {
138
+ * AcceleratorCount: { // AcceleratorCountRequest
143
139
  * Min: Number("int"),
144
140
  * Max: Number("int"),
145
141
  * },
146
- * AcceleratorManufacturers: [
142
+ * AcceleratorManufacturers: [ // AcceleratorManufacturers
147
143
  * "nvidia" || "amd" || "amazon-web-services" || "xilinx",
148
144
  * ],
149
- * AcceleratorNames: [
145
+ * AcceleratorNames: [ // AcceleratorNames
150
146
  * "a100" || "v100" || "k80" || "t4" || "m60" || "radeon-pro-v520" || "vu9p",
151
147
  * ],
152
- * AcceleratorTotalMemoryMiB: {
148
+ * AcceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
153
149
  * Min: Number("int"),
154
150
  * Max: Number("int"),
155
151
  * },
156
- * NetworkBandwidthGbps: {
152
+ * NetworkBandwidthGbps: { // NetworkBandwidthGbpsRequest
157
153
  * Min: Number("double"),
158
154
  * Max: Number("double"),
159
155
  * },
160
- * AllowedInstanceTypes: [
156
+ * AllowedInstanceTypes: [ // AllowedInstanceTypes
161
157
  * "STRING_VALUE",
162
158
  * ],
163
159
  * },
164
160
  * },
165
161
  * ],
166
162
  * },
167
- * InstancesDistribution: {
163
+ * InstancesDistribution: { // InstancesDistribution
168
164
  * OnDemandAllocationStrategy: "STRING_VALUE",
169
165
  * OnDemandBaseCapacity: Number("int"),
170
166
  * OnDemandPercentageAboveBaseCapacity: Number("int"),
@@ -177,14 +173,14 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {
177
173
  * MaxSize: Number("int"),
178
174
  * DesiredCapacity: Number("int"),
179
175
  * DefaultCooldown: Number("int"),
180
- * AvailabilityZones: [
176
+ * AvailabilityZones: [ // AvailabilityZones
181
177
  * "STRING_VALUE",
182
178
  * ],
183
179
  * HealthCheckType: "STRING_VALUE",
184
180
  * HealthCheckGracePeriod: Number("int"),
185
181
  * PlacementGroup: "STRING_VALUE",
186
182
  * VPCZoneIdentifier: "STRING_VALUE",
187
- * TerminationPolicies: [
183
+ * TerminationPolicies: [ // TerminationPolicies
188
184
  * "STRING_VALUE",
189
185
  * ],
190
186
  * NewInstancesProtectedFromScaleIn: true || false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-auto-scaling",
3
3
  "description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",