All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.cs20151215.models.DescribeExternalAgentResponseBody Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
// 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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy