com.aliyun.cs20151215.models.Addon 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 Addon extends TeaModel {
/**
* example:
* {"IngressSlbNetworkType":"internet"}
*/
@NameInMap("config")
public String config;
/**
* example:
* false
*/
@NameInMap("disabled")
public Boolean disabled;
/**
* example:
* nginx-ingress-controller
*/
@NameInMap("name")
public String name;
/**
* example:
* v1.9.3-aliyun.1
*/
@NameInMap("version")
public String version;
public static Addon build(java.util.Map map) throws Exception {
Addon self = new Addon();
return TeaModel.build(map, self);
}
public Addon setConfig(String config) {
this.config = config;
return this;
}
public String getConfig() {
return this.config;
}
public Addon setDisabled(Boolean disabled) {
this.disabled = disabled;
return this;
}
public Boolean getDisabled() {
return this.disabled;
}
public Addon setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public Addon setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}