![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.sdk.service.cs20151215.models.DescribeSubaccountK8sClusterUserConfigResponseBody 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 DescribeSubaccountK8sClusterUserConfigResponseBody} extends {@link TeaModel}
*
* DescribeSubaccountK8sClusterUserConfigResponseBody
*/
public class DescribeSubaccountK8sClusterUserConfigResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("config")
@com.aliyun.core.annotation.Validation(required = true)
private String config;
@com.aliyun.core.annotation.NameInMap("expiration")
private String expiration;
private DescribeSubaccountK8sClusterUserConfigResponseBody(Builder builder) {
this.config = builder.config;
this.expiration = builder.expiration;
}
public static Builder builder() {
return new Builder();
}
public static DescribeSubaccountK8sClusterUserConfigResponseBody create() {
return builder().build();
}
/**
* @return config
*/
public String getConfig() {
return this.config;
}
/**
* @return expiration
*/
public String getExpiration() {
return this.expiration;
}
public static final class Builder {
private String config;
private String expiration;
/**
* The cluster kubeconfig file. For more information about the content of the kubeconfig file, see [Configure cluster credentials](~~86494~~).
*/
public Builder config(String config) {
this.config = config;
return this;
}
/**
* The expiration date of the kubeconfig file. The value is the UTC time displayed in RFC3339 format.
*/
public Builder expiration(String expiration) {
this.expiration = expiration;
return this;
}
public DescribeSubaccountK8sClusterUserConfigResponseBody build() {
return new DescribeSubaccountK8sClusterUserConfigResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy