ResetPassword
Reset passwords for AlibabaCloud ECS instances in bulk. Requires instance restart after password update to ensure security and synchronization across resources.
Instructions
批量修改ECS实例的密码,请注意,本操作将会重启ECS实例
Input Schema
Name | Required | Description | Default |
---|---|---|---|
InstanceIds | Yes | AlibabaCloud ECS instance ID List | |
Password | Yes | The password of the ECS instance must be 8-30 characters and must contain only the following characters: lowercase letters, uppercase letters, numbers, and special characters only.()~!@#$%^&*-_+=(40:<>,?/ | |
RegionId | No | AlibabaCloud region ID | cn-hangzhou |
Input Schema (JSON Schema)
{
"properties": {
"InstanceIds": {
"description": "AlibabaCloud ECS instance ID List",
"items": {
"type": "string"
},
"title": "Instanceids",
"type": "array"
},
"Password": {
"description": "The password of the ECS instance must be 8-30 characters and must contain only the following characters: lowercase letters, uppercase letters, numbers, and special characters only.()~!@#$%^&*-_+=(40:<>,?/",
"title": "Password",
"type": "string"
},
"RegionId": {
"default": "cn-hangzhou",
"description": "AlibabaCloud region ID",
"title": "Regionid",
"type": "string"
}
},
"required": [
"InstanceIds",
"Password"
],
"title": "ResetPasswordArguments",
"type": "object"
}