com.aliyun.sdk.service.cs20151215.models.DescribeClusterV2UserKubeconfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeClusterV2UserKubeconfigResponseBody} extends {@link TeaModel}
*
* DescribeClusterV2UserKubeconfigResponseBody
*/
public class DescribeClusterV2UserKubeconfigResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("config")
private String config;
private DescribeClusterV2UserKubeconfigResponseBody(Builder builder) {
this.config = builder.config;
}
public static Builder builder() {
return new Builder();
}
public static DescribeClusterV2UserKubeconfigResponseBody create() {
return builder().build();
}
/**
* @return config
*/
public String getConfig() {
return this.config;
}
public static final class Builder {
private String config;
/**
* config.
*/
public Builder config(String config) {
this.config = config;
return this;
}
public DescribeClusterV2UserKubeconfigResponseBody build() {
return new DescribeClusterV2UserKubeconfigResponseBody(this);
}
}
}