@alicloud/ros-cdk-ecs 1.0.18 → 1.0.19
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/lib/ecs.generated.d.ts
CHANGED
|
@@ -3900,6 +3900,10 @@ export declare class RosInstanceGroupClone extends ros.RosResource {
|
|
|
3900
3900
|
* @Attribute PublicIps: Public IP address list of created ecs instances.
|
|
3901
3901
|
*/
|
|
3902
3902
|
readonly attrPublicIps: ros.IResolvable;
|
|
3903
|
+
/**
|
|
3904
|
+
* @Attribute RelatedOrderIds: The related order id list of created ecs instances
|
|
3905
|
+
*/
|
|
3906
|
+
readonly attrRelatedOrderIds: ros.IResolvable;
|
|
3903
3907
|
/**
|
|
3904
3908
|
* @Attribute ZoneIds: Zone id of created instances.
|
|
3905
3909
|
*/
|
|
@@ -5998,6 +6002,11 @@ export interface RosSSHKeyPairAttachmentProps {
|
|
|
5998
6002
|
* @Property keyPairName: SSH key pair name.
|
|
5999
6003
|
*/
|
|
6000
6004
|
readonly keyPairName: string | ros.IResolvable;
|
|
6005
|
+
/**
|
|
6006
|
+
* @Property autoReboot: If the instance is running, whether to reboot the instance for the ssh key to take effect.
|
|
6007
|
+
* Default: false
|
|
6008
|
+
*/
|
|
6009
|
+
readonly autoReboot?: boolean | ros.IResolvable;
|
|
6001
6010
|
}
|
|
6002
6011
|
/**
|
|
6003
6012
|
* A ROS template type: `ALIYUN::ECS::SSHKeyPairAttachment`
|
|
@@ -6020,6 +6029,11 @@ export declare class RosSSHKeyPairAttachment extends ros.RosResource {
|
|
|
6020
6029
|
* @Property keyPairName: SSH key pair name.
|
|
6021
6030
|
*/
|
|
6022
6031
|
keyPairName: string | ros.IResolvable;
|
|
6032
|
+
/**
|
|
6033
|
+
* @Property autoReboot: If the instance is running, whether to reboot the instance for the ssh key to take effect.
|
|
6034
|
+
* Default: false
|
|
6035
|
+
*/
|
|
6036
|
+
autoReboot: boolean | ros.IResolvable | undefined;
|
|
6023
6037
|
/**
|
|
6024
6038
|
* Create a new `ALIYUN::ECS::SSHKeyPairAttachment`.
|
|
6025
6039
|
*
|