All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.cs20151215.models.ListClusterChecksRequest Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy