com.tencentcloudapi.cvm.v20170312.models.ResetInstancesPasswordRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-cvm Show documentation
Show all versions of tencentcloud-sdk-java-cvm Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.cvm.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ResetInstancesPasswordRequest extends AbstractModel{
/**
* 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
*/
@SerializedName("InstanceIds")
@Expose
private String [] InstanceIds;
/**
* 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:
Linux实例密码必须8-30位,推荐使用12位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:
小写字母:[a-z]
大写字母:[A-Z]
数字:0-9
特殊字符: ()\`~!@#$%^&\*-+=\_|{}[]:;'<>,.?/
Windows实例密码必须12~30位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符
小写字母:[a-z]
大写字母:[A-Z]
数字: 0-9
特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
如果实例即包含`Linux`实例又包含`Windows`实例,则密码复杂度限制按照`Windows`实例的限制。
*/
@SerializedName("Password")
@Expose
private String Password;
/**
* 待重置密码的实例操作系统的用户名。不得超过64个字符。
*/
@SerializedName("UserName")
@Expose
private String UserName;
/**
* 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:
TRUE:表示在正常关机失败后进行强制关机
FALSE:表示在正常关机失败后不进行强制关机
默认取值:FALSE。
强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏,请仅在服务器不能正常关机时使用。
*/
@SerializedName("ForceStop")
@Expose
private Boolean ForceStop;
/**
* Get 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
* @return InstanceIds 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
*/
public String [] getInstanceIds() {
return this.InstanceIds;
}
/**
* Set 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
* @param InstanceIds 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728) API返回值中的`InstanceId`获取。每次请求允许操作的实例数量上限是100。
*/
public void setInstanceIds(String [] InstanceIds) {
this.InstanceIds = InstanceIds;
}
/**
* Get 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:
Linux实例密码必须8-30位,推荐使用12位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:
小写字母:[a-z]
大写字母:[A-Z]
数字:0-9
特殊字符: ()\`~!@#$%^&\*-+=\_|{}[]:;'<>,.?/
Windows实例密码必须12~30位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符
小写字母:[a-z]
大写字母:[A-Z]
数字: 0-9
特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
如果实例即包含`Linux`实例又包含`Windows`实例,则密码复杂度限制按照`Windows`实例的限制。
* @return Password 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:
Linux实例密码必须8-30位,推荐使用12位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:
小写字母:[a-z]
大写字母:[A-Z]
数字:0-9
特殊字符: ()\`~!@#$%^&\*-+=\_|{}[]:;'<>,.?/
Windows实例密码必须12~30位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符
小写字母:[a-z]
大写字母:[A-Z]
数字: 0-9
特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
如果实例即包含`Linux`实例又包含`Windows`实例,则密码复杂度限制按照`Windows`实例的限制。
*/
public String getPassword() {
return this.Password;
}
/**
* Set 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:
Linux实例密码必须8-30位,推荐使用12位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:
小写字母:[a-z]
大写字母:[A-Z]
数字:0-9
特殊字符: ()\`~!@#$%^&\*-+=\_|{}[]:;'<>,.?/
Windows实例密码必须12~30位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符
小写字母:[a-z]
大写字母:[A-Z]
数字: 0-9
特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
如果实例即包含`Linux`实例又包含`Windows`实例,则密码复杂度限制按照`Windows`实例的限制。
* @param Password 实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:
Linux实例密码必须8-30位,推荐使用12位以上密码,不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:
小写字母:[a-z]
大写字母:[A-Z]
数字:0-9
特殊字符: ()\`~!@#$%^&\*-+=\_|{}[]:;'<>,.?/
Windows实例密码必须12~30位,不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符
小写字母:[a-z]
大写字母:[A-Z]
数字: 0-9
特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
如果实例即包含`Linux`实例又包含`Windows`实例,则密码复杂度限制按照`Windows`实例的限制。
*/
public void setPassword(String Password) {
this.Password = Password;
}
/**
* Get 待重置密码的实例操作系统的用户名。不得超过64个字符。
* @return UserName 待重置密码的实例操作系统的用户名。不得超过64个字符。
*/
public String getUserName() {
return this.UserName;
}
/**
* Set 待重置密码的实例操作系统的用户名。不得超过64个字符。
* @param UserName 待重置密码的实例操作系统的用户名。不得超过64个字符。
*/
public void setUserName(String UserName) {
this.UserName = UserName;
}
/**
* Get 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:
TRUE:表示在正常关机失败后进行强制关机
FALSE:表示在正常关机失败后不进行强制关机
默认取值:FALSE。
强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏,请仅在服务器不能正常关机时使用。
* @return ForceStop 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:
TRUE:表示在正常关机失败后进行强制关机
FALSE:表示在正常关机失败后不进行强制关机
默认取值:FALSE。
强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏,请仅在服务器不能正常关机时使用。
*/
public Boolean getForceStop() {
return this.ForceStop;
}
/**
* Set 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:
TRUE:表示在正常关机失败后进行强制关机
FALSE:表示在正常关机失败后不进行强制关机
默认取值:FALSE。
强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏,请仅在服务器不能正常关机时使用。
* @param ForceStop 是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再重置用户密码。取值范围:
TRUE:表示在正常关机失败后进行强制关机
FALSE:表示在正常关机失败后不进行强制关机
默认取值:FALSE。
强制关机的效果等同于关闭物理计算机的电源开关。强制关机可能会导致数据丢失或文件系统损坏,请仅在服务器不能正常关机时使用。
*/
public void setForceStop(Boolean ForceStop) {
this.ForceStop = ForceStop;
}
public ResetInstancesPasswordRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ResetInstancesPasswordRequest(ResetInstancesPasswordRequest source) {
if (source.InstanceIds != null) {
this.InstanceIds = new String[source.InstanceIds.length];
for (int i = 0; i < source.InstanceIds.length; i++) {
this.InstanceIds[i] = new String(source.InstanceIds[i]);
}
}
if (source.Password != null) {
this.Password = new String(source.Password);
}
if (source.UserName != null) {
this.UserName = new String(source.UserName);
}
if (source.ForceStop != null) {
this.ForceStop = new Boolean(source.ForceStop);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds);
this.setParamSimple(map, prefix + "Password", this.Password);
this.setParamSimple(map, prefix + "UserName", this.UserName);
this.setParamSimple(map, prefix + "ForceStop", this.ForceStop);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy