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

com.aliyun.sdk.service.cloudapi20160714.models.DescribePluginsResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribePluginsResponseBody} extends {@link TeaModel}
 *
 * 

DescribePluginsResponseBody

*/ public class DescribePluginsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("PageNumber") private Integer pageNumber; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("Plugins") private Plugins plugins; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCount") private Integer totalCount; private DescribePluginsResponseBody(Builder builder) { this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.plugins = builder.plugins; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribePluginsResponseBody create() { return builder().build(); } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return plugins */ public Plugins getPlugins() { return this.plugins; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer pageNumber; private Integer pageSize; private Plugins plugins; private String requestId; private Integer totalCount; /** *

The page number of the returned page.

* * example: *

1

*/ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** *

The number of entries returned per page.

* * example: *

10

*/ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** *

The returned information about the plug-in. It is an array consisting of PluginAttribute data.

*/ public Builder plugins(Plugins plugins) { this.plugins = plugins; return this; } /** *

The ID of the request.

* * example: *

46373DC4-19F1-4DC8-8C31-1107289BB5E0

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

The total number of returned entries.

* * example: *

1

*/ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribePluginsResponseBody build() { return new DescribePluginsResponseBody(this); } } /** * * {@link DescribePluginsResponseBody} extends {@link TeaModel} * *

DescribePluginsResponseBody

*/ public static class TagInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("Key") private String key; @com.aliyun.core.annotation.NameInMap("Value") private String value; private TagInfo(Builder builder) { this.key = builder.key; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static TagInfo create() { return builder().build(); } /** * @return key */ public String getKey() { return this.key; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String key; private String value; /** *

The key of the tag.

* * example: *

testkey

*/ public Builder key(String key) { this.key = key; return this; } /** *

The value of the tag.

* * example: *

tetstvalue

*/ public Builder value(String value) { this.value = value; return this; } public TagInfo build() { return new TagInfo(this); } } } /** * * {@link DescribePluginsResponseBody} extends {@link TeaModel} * *

DescribePluginsResponseBody

*/ public static class Tags extends TeaModel { @com.aliyun.core.annotation.NameInMap("TagInfo") private java.util.List tagInfo; private Tags(Builder builder) { this.tagInfo = builder.tagInfo; } public static Builder builder() { return new Builder(); } public static Tags create() { return builder().build(); } /** * @return tagInfo */ public java.util.List getTagInfo() { return this.tagInfo; } public static final class Builder { private java.util.List tagInfo; /** * TagInfo. */ public Builder tagInfo(java.util.List tagInfo) { this.tagInfo = tagInfo; return this; } public Tags build() { return new Tags(this); } } } /** * * {@link DescribePluginsResponseBody} extends {@link TeaModel} * *

DescribePluginsResponseBody

*/ public static class PluginAttribute extends TeaModel { @com.aliyun.core.annotation.NameInMap("CreatedTime") private String createdTime; @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("ModifiedTime") private String modifiedTime; @com.aliyun.core.annotation.NameInMap("PluginData") private String pluginData; @com.aliyun.core.annotation.NameInMap("PluginId") private String pluginId; @com.aliyun.core.annotation.NameInMap("PluginName") private String pluginName; @com.aliyun.core.annotation.NameInMap("PluginType") private String pluginType; @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.NameInMap("Tags") private Tags tags; private PluginAttribute(Builder builder) { this.createdTime = builder.createdTime; this.description = builder.description; this.modifiedTime = builder.modifiedTime; this.pluginData = builder.pluginData; this.pluginId = builder.pluginId; this.pluginName = builder.pluginName; this.pluginType = builder.pluginType; this.regionId = builder.regionId; this.tags = builder.tags; } public static Builder builder() { return new Builder(); } public static PluginAttribute create() { return builder().build(); } /** * @return createdTime */ public String getCreatedTime() { return this.createdTime; } /** * @return description */ public String getDescription() { return this.description; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return pluginData */ public String getPluginData() { return this.pluginData; } /** * @return pluginId */ public String getPluginId() { return this.pluginId; } /** * @return pluginName */ public String getPluginName() { return this.pluginName; } /** * @return pluginType */ public String getPluginType() { return this.pluginType; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return tags */ public Tags getTags() { return this.tags; } public static final class Builder { private String createdTime; private String description; private String modifiedTime; private String pluginData; private String pluginId; private String pluginName; private String pluginType; private String regionId; private Tags tags; /** *

The creation time (UTC) of the plug-in.

* * example: *

2019-01-11T09:29:58Z

*/ public Builder createdTime(String createdTime) { this.createdTime = createdTime; return this; } /** *

The plug-in description.

* * example: *

Throttling

*/ public Builder description(String description) { this.description = description; return this; } /** *

The last modification time (UTC) of the plug-in.

* * example: *

2019-01-11T09:29:58Z

*/ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** *

The definition statement of the plug-in.

* * example: *

{"unit":"MINUTE","apiDefault":20}

*/ public Builder pluginData(String pluginData) { this.pluginData = pluginData; return this; } /** *

The ID of the plug-in.

* * example: *

9a3f1a5279434f2ba74ccd91c295af9f

*/ public Builder pluginId(String pluginId) { this.pluginId = pluginId; return this; } /** *

The name of the plug-in.

* * example: *

firstPlugin

*/ public Builder pluginName(String pluginName) { this.pluginName = pluginName; return this; } /** *

The type of the plug-in.

* * example: *

trafficControl

*/ public Builder pluginType(String pluginType) { this.pluginType = pluginType; return this; } /** *

The region where the plug-in is located.

* * example: *

cn-qingdao

*/ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** *

The tags.

*/ public Builder tags(Tags tags) { this.tags = tags; return this; } public PluginAttribute build() { return new PluginAttribute(this); } } } /** * * {@link DescribePluginsResponseBody} extends {@link TeaModel} * *

DescribePluginsResponseBody

*/ public static class Plugins extends TeaModel { @com.aliyun.core.annotation.NameInMap("PluginAttribute") private java.util.List pluginAttribute; private Plugins(Builder builder) { this.pluginAttribute = builder.pluginAttribute; } public static Builder builder() { return new Builder(); } public static Plugins create() { return builder().build(); } /** * @return pluginAttribute */ public java.util.List getPluginAttribute() { return this.pluginAttribute; } public static final class Builder { private java.util.List pluginAttribute; /** * PluginAttribute. */ public Builder pluginAttribute(java.util.List pluginAttribute) { this.pluginAttribute = pluginAttribute; return this; } public Plugins build() { return new Plugins(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy