com.aliyun.cs20151215.models.RunClusterCheckRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class RunClusterCheckRequest extends TeaModel {
/**
* The cluster check items.
*/
@NameInMap("options")
public java.util.Map options;
/**
* 检查目标。
*
* example:
* np1f6779297c4444a3a1cdd29be8e5****
*/
@NameInMap("target")
public String target;
/**
* The check method.
* This parameter is required.
*
* example:
* ClusterUpgrade
*/
@NameInMap("type")
public String type;
public static RunClusterCheckRequest build(java.util.Map map) throws Exception {
RunClusterCheckRequest self = new RunClusterCheckRequest();
return TeaModel.build(map, self);
}
public RunClusterCheckRequest setOptions(java.util.Map options) {
this.options = options;
return this;
}
public java.util.Map getOptions() {
return this.options;
}
public RunClusterCheckRequest setTarget(String target) {
this.target = target;
return this;
}
public String getTarget() {
return this.target;
}
public RunClusterCheckRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}