@aws-sdk/client-auto-scaling 3.817.0 → 3.820.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/index.js CHANGED
@@ -473,6 +473,7 @@ var BurstablePerformance = {
473
473
  var CpuManufacturer = {
474
474
  AMAZON_WEB_SERVICES: "amazon-web-services",
475
475
  AMD: "amd",
476
+ APPLE: "apple",
476
477
  INTEL: "intel"
477
478
  };
478
479
  var InstanceGeneration = {
@@ -121,6 +121,7 @@ export const BurstablePerformance = {
121
121
  export const CpuManufacturer = {
122
122
  AMAZON_WEB_SERVICES: "amazon-web-services",
123
123
  AMD: "amd",
124
+ APPLE: "apple",
124
125
  INTEL: "intel",
125
126
  };
126
127
  export const InstanceGeneration = {
@@ -78,7 +78,7 @@ declare const CreateAutoScalingGroupCommand_base: {
78
78
  * Max: Number("int"),
79
79
  * },
80
80
  * CpuManufacturers: [ // CpuManufacturers
81
- * "intel" || "amd" || "amazon-web-services",
81
+ * "intel" || "amd" || "amazon-web-services" || "apple",
82
82
  * ],
83
83
  * MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
84
84
  * Min: Number("double"),
@@ -91,7 +91,7 @@ declare const DescribeAutoScalingGroupsCommand_base: {
91
91
  * // Max: Number("int"),
92
92
  * // },
93
93
  * // CpuManufacturers: [ // CpuManufacturers
94
- * // "intel" || "amd" || "amazon-web-services",
94
+ * // "intel" || "amd" || "amazon-web-services" || "apple",
95
95
  * // ],
96
96
  * // MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
97
97
  * // Min: Number("double"),
@@ -122,7 +122,7 @@ declare const DescribeInstanceRefreshesCommand_base: {
122
122
  * // Max: Number("int"),
123
123
  * // },
124
124
  * // CpuManufacturers: [ // CpuManufacturers
125
- * // "intel" || "amd" || "amazon-web-services",
125
+ * // "intel" || "amd" || "amazon-web-services" || "apple",
126
126
  * // ],
127
127
  * // MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
128
128
  * // Min: Number("double"),
@@ -87,7 +87,7 @@ declare const StartInstanceRefreshCommand_base: {
87
87
  * Max: Number("int"),
88
88
  * },
89
89
  * CpuManufacturers: [ // CpuManufacturers
90
- * "intel" || "amd" || "amazon-web-services",
90
+ * "intel" || "amd" || "amazon-web-services" || "apple",
91
91
  * ],
92
92
  * MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
93
93
  * Min: Number("double"),
@@ -107,7 +107,7 @@ declare const UpdateAutoScalingGroupCommand_base: {
107
107
  * Max: Number("int"),
108
108
  * },
109
109
  * CpuManufacturers: [ // CpuManufacturers
110
- * "intel" || "amd" || "amazon-web-services",
110
+ * "intel" || "amd" || "amazon-web-services" || "apple",
111
111
  * ],
112
112
  * MemoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
113
113
  * Min: Number("double"),
@@ -1201,6 +1201,7 @@ export type BurstablePerformance = (typeof BurstablePerformance)[keyof typeof Bu
1201
1201
  export declare const CpuManufacturer: {
1202
1202
  readonly AMAZON_WEB_SERVICES: "amazon-web-services";
1203
1203
  readonly AMD: "amd";
1204
+ readonly APPLE: "apple";
1204
1205
  readonly INTEL: "intel";
1205
1206
  };
1206
1207
  /**
@@ -1286,7 +1287,7 @@ export interface MemoryMiBRequest {
1286
1287
  * the minimum bandwidth. Amazon EC2 will identify instance types that support the specified
1287
1288
  * minimum bandwidth, but the actual bandwidth of your instance might go below the
1288
1289
  * specified minimum at times. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth">Available instance bandwidth</a> in the
1289
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1290
+ * <i>Amazon EC2 User Guide</i>.</p>
1290
1291
  * </note>
1291
1292
  * @public
1292
1293
  */
@@ -1385,7 +1386,7 @@ export interface VCpuCountRequest {
1385
1386
  * selection</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>. For help determining
1386
1387
  * which instance types match your attributes before you apply them to your Auto Scaling group, see
1387
1388
  * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-get-instance-types-from-instance-requirements">Preview instance types with specified attributes</a> in the
1388
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1389
+ * <i>Amazon EC2 User Guide</i>.</p>
1389
1390
  * @public
1390
1391
  */
1391
1392
  export interface InstanceRequirements {
@@ -1412,6 +1413,10 @@ export interface InstanceRequirements {
1412
1413
  * <p>For instance types with Amazon Web Services CPUs, specify
1413
1414
  * <code>amazon-web-services</code>.</p>
1414
1415
  * </li>
1416
+ * <li>
1417
+ * <p>For instance types with Apple CPUs, specify
1418
+ * <code>apple</code>.</p>
1419
+ * </li>
1415
1420
  * </ul>
1416
1421
  * <note>
1417
1422
  * <p>Don't confuse the CPU hardware manufacturer with the CPU hardware architecture.
@@ -1453,7 +1458,7 @@ export interface InstanceRequirements {
1453
1458
  * current generation includes EC2 instance types currently recommended for use.
1454
1459
  * This typically includes the latest two to three generations in each instance
1455
1460
  * family. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html">Instance types</a> in
1456
- * the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1461
+ * the <i>Amazon EC2 User Guide</i>.</p>
1457
1462
  * </li>
1458
1463
  * <li>
1459
1464
  * <p>For previous generation instance types, specify <code>previous</code>.</p>
@@ -1544,7 +1549,7 @@ export interface InstanceRequirements {
1544
1549
  /**
1545
1550
  * <p>Indicates whether burstable performance instance types are included, excluded, or
1546
1551
  * required. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html">Burstable
1547
- * performance instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1552
+ * performance instances</a> in the <i>Amazon EC2 User Guide</i>.</p>
1548
1553
  * <p>Default: <code>excluded</code>
1549
1554
  * </p>
1550
1555
  * @public
@@ -1567,7 +1572,7 @@ export interface InstanceRequirements {
1567
1572
  /**
1568
1573
  * <p>Indicates whether instance types with instance store volumes are included, excluded,
1569
1574
  * or required. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html">Amazon EC2 instance store</a> in
1570
- * the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1575
+ * the <i>Amazon EC2 User Guide</i>.</p>
1571
1576
  * <p>Default: <code>included</code>
1572
1577
  * </p>
1573
1578
  * @public
@@ -1598,7 +1603,7 @@ export interface InstanceRequirements {
1598
1603
  /**
1599
1604
  * <p>The minimum and maximum baseline bandwidth performance for an instance type, in Mbps.
1600
1605
  * For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html">Amazon EBS–optimized instances</a>
1601
- * in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1606
+ * in the <i>Amazon EC2 User Guide</i>.</p>
1602
1607
  * <p>Default: No minimum or maximum limits</p>
1603
1608
  * @public
1604
1609
  */
@@ -1749,7 +1754,7 @@ export interface LaunchTemplateOverrides {
1749
1754
  /**
1750
1755
  * <p>The instance type, such as <code>m3.xlarge</code>. You must specify an instance type
1751
1756
  * that is supported in your requested Region and Availability Zones. For more information,
1752
- * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html">Instance types</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
1757
+ * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html">Instance types</a> in the <i>Amazon EC2 User Guide</i>.</p>
1753
1758
  * <p>You can specify up to 40 instance types per Auto Scaling group.</p>
1754
1759
  * @public
1755
1760
  */
@@ -2019,7 +2024,7 @@ export interface CreateAutoScalingGroupType {
2019
2024
  /**
2020
2025
  * <p>The name of the placement group into which to launch your instances. For more
2021
2026
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html">Placement groups</a> in the
2022
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2027
+ * <i>Amazon EC2 User Guide</i>.</p>
2023
2028
  * <note>
2024
2029
  * <p>A <i>cluster</i> placement group is a logical grouping of instances
2025
2030
  * within a single Availability Zone. You cannot specify multiple Availability Zones
@@ -2305,7 +2310,7 @@ export interface BlockDeviceMapping {
2305
2310
  /**
2306
2311
  * <p>The device name assigned to the volume (for example, <code>/dev/sdh</code> or
2307
2312
  * <code>xvdh</code>). For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/device_naming.html">Device naming on Linux
2308
- * instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2313
+ * instances</a> in the <i>Amazon EC2 User Guide</i>.</p>
2309
2314
  * <note>
2310
2315
  * <p>To define a block device mapping, set the device name and exactly one of the
2311
2316
  * following properties: <code>Ebs</code>, <code>NoDevice</code>, or
@@ -2417,7 +2422,7 @@ export interface CreateLaunchConfigurationType {
2417
2422
  /**
2418
2423
  * <p>The ID of the Amazon Machine Image (AMI) that was assigned during registration. For
2419
2424
  * more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html">Find a Linux AMI</a> in the
2420
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2425
+ * <i>Amazon EC2 User Guide</i>.</p>
2421
2426
  * <p>If you specify <code>InstanceId</code>, an <code>ImageId</code> is not
2422
2427
  * required.</p>
2423
2428
  * @public
@@ -2425,7 +2430,7 @@ export interface CreateLaunchConfigurationType {
2425
2430
  ImageId?: string | undefined;
2426
2431
  /**
2427
2432
  * <p>The name of the key pair. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key pairs and Amazon EC2
2428
- * instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2433
+ * instances</a> in the <i>Amazon EC2 User Guide</i>.</p>
2429
2434
  * @public
2430
2435
  */
2431
2436
  KeyName?: string | undefined;
@@ -2470,7 +2475,7 @@ export interface CreateLaunchConfigurationType {
2470
2475
  /**
2471
2476
  * <p>Specifies the instance type of the EC2 instance. For information about available
2472
2477
  * instance types, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes">Available
2473
- * instance types</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2478
+ * instance types</a> in the <i>Amazon EC2 User Guide</i>.</p>
2474
2479
  * <p>If you specify <code>InstanceId</code>, an <code>InstanceType</code> is not
2475
2480
  * required.</p>
2476
2481
  * @public
@@ -2481,7 +2486,7 @@ export interface CreateLaunchConfigurationType {
2481
2486
  * <note>
2482
2487
  * <p>We recommend that you use PV-GRUB instead of kernels and RAM disks. For more
2483
2488
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html">User provided
2484
- * kernels</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2489
+ * kernels</a> in the <i>Amazon EC2 User Guide</i>.</p>
2485
2490
  * </note>
2486
2491
  * @public
2487
2492
  */
@@ -2491,7 +2496,7 @@ export interface CreateLaunchConfigurationType {
2491
2496
  * <note>
2492
2497
  * <p>We recommend that you use PV-GRUB instead of kernels and RAM disks. For more
2493
2498
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html">User provided
2494
- * kernels</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2499
+ * kernels</a> in the <i>Amazon EC2 User Guide</i>.</p>
2495
2500
  * </note>
2496
2501
  * @public
2497
2502
  */
@@ -2500,7 +2505,7 @@ export interface CreateLaunchConfigurationType {
2500
2505
  * <p>The block device mapping entries that define the block devices to attach to the
2501
2506
  * instances at launch. By default, the block devices specified in the block device mapping
2502
2507
  * for the AMI are used. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html">Block device
2503
- * mappings</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2508
+ * mappings</a> in the <i>Amazon EC2 User Guide</i>.</p>
2504
2509
  * @public
2505
2510
  */
2506
2511
  BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
@@ -2548,7 +2553,7 @@ export interface CreateLaunchConfigurationType {
2548
2553
  * performance. This optimization is not available with all instance types. Additional fees
2549
2554
  * are incurred when you enable EBS optimization for an instance type that is not
2550
2555
  * EBS-optimized by default. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html">Amazon EBS-optimized instances</a>
2551
- * in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
2556
+ * in the <i>Amazon EC2 User Guide</i>.</p>
2552
2557
  * <p>The default value is <code>false</code>.</p>
2553
2558
  * @public
2554
2559
  */
@@ -4132,14 +4137,14 @@ export interface LaunchConfiguration {
4132
4137
  /**
4133
4138
  * <p>The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more
4134
4139
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html">Find a Linux AMI</a> in the
4135
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
4140
+ * <i>Amazon EC2 User Guide</i>.</p>
4136
4141
  * @public
4137
4142
  */
4138
4143
  ImageId: string | undefined;
4139
4144
  /**
4140
4145
  * <p>The name of the key pair.</p>
4141
4146
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key pairs and Amazon EC2
4142
- * instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
4147
+ * instances</a> in the <i>Amazon EC2 User Guide</i>.</p>
4143
4148
  * @public
4144
4149
  */
4145
4150
  KeyName?: string | undefined;
@@ -4163,8 +4168,8 @@ export interface LaunchConfiguration {
4163
4168
  ClassicLinkVPCSecurityGroups?: string[] | undefined;
4164
4169
  /**
4165
4170
  * <p>The user data to make available to the launched EC2 instances. For more information,
4166
- * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> (Linux) and <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html">Instance metadata and
4167
- * user data</a> (Windows). If you are using a command line tool, base64-encoding
4171
+ * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> in the <i>Amazon EC2 User Guide</i>.
4172
+ * If you are using a command line tool, base64-encoding
4168
4173
  * is performed for you, and you can load the text from a file. Otherwise, you must provide
4169
4174
  * base64-encoded text. User data is limited to 16 KB.</p>
4170
4175
  * @public
@@ -4173,7 +4178,7 @@ export interface LaunchConfiguration {
4173
4178
  /**
4174
4179
  * <p>The instance type for the instances. For information about available instance types,
4175
4180
  * see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes">Available
4176
- * instance types</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
4181
+ * instance types</a> in the <i>Amazon EC2 User Guide</i>.</p>
4177
4182
  * @public
4178
4183
  */
4179
4184
  InstanceType: string | undefined;
@@ -4191,7 +4196,7 @@ export interface LaunchConfiguration {
4191
4196
  * <p>The block device mapping entries that define the block devices to attach to the
4192
4197
  * instances at launch. By default, the block devices specified in the block device mapping
4193
4198
  * for the AMI are used. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html">Block device
4194
- * mappings</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
4199
+ * mappings</a> in the <i>Amazon EC2 User Guide</i>.</p>
4195
4200
  * @public
4196
4201
  */
4197
4202
  BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
@@ -4228,7 +4233,7 @@ export interface LaunchConfiguration {
4228
4233
  /**
4229
4234
  * <p>Specifies whether the launch configuration is optimized for EBS I/O
4230
4235
  * (<code>true</code>) or not (<code>false</code>). For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html">Amazon EBS-optimized instances</a> in the
4231
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
4236
+ * <i>Amazon EC2 User Guide</i>.</p>
4232
4237
  * @public
4233
4238
  */
4234
4239
  EbsOptimized?: boolean | undefined;
@@ -7687,7 +7692,7 @@ export interface UpdateAutoScalingGroupType {
7687
7692
  /**
7688
7693
  * <p>The name of an existing placement group into which to launch your instances. To remove the placement group setting, pass an empty string for <code>placement-group</code>. For more
7689
7694
  * information about placement groups, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html">Placement groups</a> in the
7690
- * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
7695
+ * <i>Amazon EC2 User Guide</i>.</p>
7691
7696
  * <note>
7692
7697
  * <p>A <i>cluster</i> placement group is a logical grouping of instances
7693
7698
  * within a single Availability Zone. You cannot specify multiple Availability Zones
@@ -277,6 +277,7 @@ export type BurstablePerformance =
277
277
  export declare const CpuManufacturer: {
278
278
  readonly AMAZON_WEB_SERVICES: "amazon-web-services";
279
279
  readonly AMD: "amd";
280
+ readonly APPLE: "apple";
280
281
  readonly INTEL: "intel";
281
282
  };
282
283
  export type CpuManufacturer =
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.817.0",
4
+ "version": "3.820.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-auto-scaling",