com.aliyun.cs20151215.models.ListClusterChecksRequest 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 ListClusterChecksRequest extends TeaModel {
/**
* The targets to check.
*
* example:
* ngw-bp19ay6nnvd4cexxxx
*/
@NameInMap("target")
public String target;
/**
* The check method.
*
* example:
* ClusterUpgrade
*/
@NameInMap("type")
public String type;
public static ListClusterChecksRequest build(java.util.Map map) throws Exception {
ListClusterChecksRequest self = new ListClusterChecksRequest();
return TeaModel.build(map, self);
}
public ListClusterChecksRequest setTarget(String target) {
this.target = target;
return this;
}
public String getTarget() {
return this.target;
}
public ListClusterChecksRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}