@alicloud/ros-cdk-ecs 1.0.19 → 1.0.20

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.
@@ -2264,7 +2264,7 @@ export interface RosInstanceProps {
2264
2264
  */
2265
2265
  readonly spotStrategy?: string | ros.IResolvable;
2266
2266
  /**
2267
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto
2267
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry
2268
2268
  */
2269
2269
  readonly systemDiskCategory?: string | ros.IResolvable;
2270
2270
  /**
@@ -2488,7 +2488,7 @@ export declare class RosInstance extends ros.RosResource {
2488
2488
  */
2489
2489
  spotStrategy: string | ros.IResolvable | undefined;
2490
2490
  /**
2491
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto
2491
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry
2492
2492
  */
2493
2493
  systemDiskCategory: string | ros.IResolvable | undefined;
2494
2494
  /**
@@ -3088,7 +3088,7 @@ export interface RosInstanceGroupProps {
3088
3088
  */
3089
3089
  readonly systemDiskBurstingEnabled?: boolean | ros.IResolvable;
3090
3090
  /**
3091
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto.Old instances will not be changed.
3091
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry.Old instances will not be changed.
3092
3092
  */
3093
3093
  readonly systemDiskCategory?: string | ros.IResolvable;
3094
3094
  /**
@@ -3211,6 +3211,10 @@ export declare class RosInstanceGroup extends ros.RosResource {
3211
3211
  * @Attribute PublicIps: Public IP address list of created ecs instances.
3212
3212
  */
3213
3213
  readonly attrPublicIps: ros.IResolvable;
3214
+ /**
3215
+ * @Attribute RelatedOrderIds: The related order id list of created ecs instances
3216
+ */
3217
+ readonly attrRelatedOrderIds: ros.IResolvable;
3214
3218
  /**
3215
3219
  * @Attribute ZoneIds: Zone id of created instances.
3216
3220
  */
@@ -3417,7 +3421,7 @@ export declare class RosInstanceGroup extends ros.RosResource {
3417
3421
  */
3418
3422
  systemDiskBurstingEnabled: boolean | ros.IResolvable | undefined;
3419
3423
  /**
3420
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto.Old instances will not be changed.
3424
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry.Old instances will not be changed.
3421
3425
  */
3422
3426
  systemDiskCategory: string | ros.IResolvable | undefined;
3423
3427
  /**
@@ -3801,7 +3805,7 @@ export interface RosInstanceGroupCloneProps {
3801
3805
  */
3802
3806
  readonly systemDiskBurstingEnabled?: boolean | ros.IResolvable;
3803
3807
  /**
3804
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto.Old instances will not be changed.
3808
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry.Old instances will not be changed.
3805
3809
  */
3806
3810
  readonly systemDiskCategory?: string | ros.IResolvable;
3807
3811
  /**
@@ -4065,7 +4069,7 @@ export declare class RosInstanceGroupClone extends ros.RosResource {
4065
4069
  */
4066
4070
  systemDiskBurstingEnabled: boolean | ros.IResolvable | undefined;
4067
4071
  /**
4068
- * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto.Old instances will not be changed.
4072
+ * @Property systemDiskCategory: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd|cloud_auto|cloud_essd_entry.Old instances will not be changed.
4069
4073
  */
4070
4074
  systemDiskCategory: string | ros.IResolvable | undefined;
4071
4075
  /**
@@ -5176,6 +5180,10 @@ export interface RosNetworkInterfaceAttachmentProps {
5176
5180
  * @Property networkInterfaceId: Network interface id
5177
5181
  */
5178
5182
  readonly networkInterfaceId: string | ros.IResolvable;
5183
+ /**
5184
+ * @Property ecsRestartOption: Control whether to restart the ECS instance when binding an elastic network card.Only effective for ENI that does not support hot swapping.
5185
+ */
5186
+ readonly ecsRestartOption?: string | ros.IResolvable;
5179
5187
  /**
5180
5188
  * @Property trunkNetworkInstanceId: undefined
5181
5189
  */
@@ -5214,6 +5222,10 @@ export declare class RosNetworkInterfaceAttachment extends ros.RosResource {
5214
5222
  * @Property networkInterfaceId: Network interface id
5215
5223
  */
5216
5224
  networkInterfaceId: string | ros.IResolvable;
5225
+ /**
5226
+ * @Property ecsRestartOption: Control whether to restart the ECS instance when binding an elastic network card.Only effective for ENI that does not support hot swapping.
5227
+ */
5228
+ ecsRestartOption: string | ros.IResolvable | undefined;
5217
5229
  /**
5218
5230
  * @Property trunkNetworkInstanceId: undefined
5219
5231
  */