com.aliyun.ens20171110.models.DescribeClusterKubeConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DescribeClusterKubeConfigResponseBody extends TeaModel {
/**
* The cluster ID.
*
* example:
* c8f0377146d104687ac562eef9403****
*/
@NameInMap("ClusterId")
public String clusterId;
/**
* The cluster certificate.
*
* example:
* apiVersion: v1
* clusters:
*
* - cluster:
* certificate-authority-data:***
* server: https://****:6443
* name: kubernetes
* contexts:
* - context:
* cluster: kubernetes
* user: "2580306074811*****"
* name: 258*******
* kind: Config
* users:
* - name: "2580306074811*****"
* user:
* client-certificate-data:***
* client-key-data: ***
*
*/
@NameInMap("Kubeconfig")
public String kubeconfig;
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeClusterKubeConfigResponseBody build(java.util.Map map) throws Exception {
DescribeClusterKubeConfigResponseBody self = new DescribeClusterKubeConfigResponseBody();
return TeaModel.build(map, self);
}
public DescribeClusterKubeConfigResponseBody setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public DescribeClusterKubeConfigResponseBody setKubeconfig(String kubeconfig) {
this.kubeconfig = kubeconfig;
return this;
}
public String getKubeconfig() {
return this.kubeconfig;
}
public DescribeClusterKubeConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy