com.aliyun.sdk.service.cs20151215.models.DescribeExternalAgentResponseBody 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 DescribeExternalAgentResponseBody} extends {@link TeaModel}
*
* DescribeExternalAgentResponseBody
*/
public class DescribeExternalAgentResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("config")
private String config;
private DescribeExternalAgentResponseBody(Builder builder) {
this.config = builder.config;
}
public static Builder builder() {
return new Builder();
}
public static DescribeExternalAgentResponseBody create() {
return builder().build();
}
/**
* @return config
*/
public String getConfig() {
return this.config;
}
public static final class Builder {
private String config;
/**
* The agent configurations in the YAML format.
*/
public Builder config(String config) {
this.config = config;
return this;
}
public DescribeExternalAgentResponseBody build() {
return new DescribeExternalAgentResponseBody(this);
}
}
}