index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListDownloadUrlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListDownloadUrlResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListDownloadUrlResponseBody</p>
*/
public class DescribeNameListDownloadUrlResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeNameListDownloadUrlResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListDownloadUrlResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeNameListDownloadUrlResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeNameListDownloadUrlResponseBody build() {
return new DescribeNameListDownloadUrlResponseBody(this);
}
}
/**
*
* {@link DescribeNameListDownloadUrlResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListDownloadUrlResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("downloadFileUrl")
private String downloadFileUrl;
private ResultObject(Builder builder) {
this.downloadFileUrl = builder.downloadFileUrl;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return downloadFileUrl
*/
public String getDownloadFileUrl() {
return this.downloadFileUrl;
}
public static final class Builder {
private String downloadFileUrl;
private Builder() {
}
private Builder(ResultObject model) {
this.downloadFileUrl = model.downloadFileUrl;
}
/**
* <p>Download URL.</p>
*
* <strong>example:</strong>
* <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D</a></p>
*/
public Builder downloadFileUrl(String downloadFileUrl) {
this.downloadFileUrl = downloadFileUrl;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListLimitRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListLimitRequest} extends {@link RequestModel}
*
* <p>DescribeNameListLimitRequest</p>
*/
public class DescribeNameListLimitRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("createType")
private String createType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeNameListLimitRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListLimitRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return createType
*/
public String getCreateType() {
return this.createType;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeNameListLimitRequest, Builder> {
private String lang;
private String createType;
private String regId;
private Builder() {
super();
}
private Builder(DescribeNameListLimitRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.regId = request.regId;
}
/**
* <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Creation type</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeNameListLimitRequest build() {
return new DescribeNameListLimitRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListLimitResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListLimitResponse} extends {@link TeaModel}
*
* <p>DescribeNameListLimitResponse</p>
*/
public class DescribeNameListLimitResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeNameListLimitResponseBody body;
private DescribeNameListLimitResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeNameListLimitResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeNameListLimitResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeNameListLimitResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeNameListLimitResponseBody body);
@Override
DescribeNameListLimitResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeNameListLimitResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeNameListLimitResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeNameListLimitResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeNameListLimitResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeNameListLimitResponse build() {
return new DescribeNameListLimitResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListLimitResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListLimitResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListLimitResponseBody</p>
*/
public class DescribeNameListLimitResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeNameListLimitResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListLimitResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeNameListLimitResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeNameListLimitResponseBody build() {
return new DescribeNameListLimitResponseBody(this);
}
}
/**
*
* {@link DescribeNameListLimitResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListLimitResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("limit")
private Boolean limit;
@com.aliyun.core.annotation.NameInMap("maxTotalItem")
private Long maxTotalItem;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
private ResultObject(Builder builder) {
this.limit = builder.limit;
this.maxTotalItem = builder.maxTotalItem;
this.totalItem = builder.totalItem;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return limit
*/
public Boolean getLimit() {
return this.limit;
}
/**
* @return maxTotalItem
*/
public Long getMaxTotalItem() {
return this.maxTotalItem;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
public static final class Builder {
private Boolean limit;
private Long maxTotalItem;
private Long totalItem;
private Builder() {
}
private Builder(ResultObject model) {
this.limit = model.limit;
this.maxTotalItem = model.maxTotalItem;
this.totalItem = model.totalItem;
}
/**
* <p>Whether it exceeds the maximum quantity</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder limit(Boolean limit) {
this.limit = limit;
return this;
}
/**
* <p>Maximum number of creatable items</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder maxTotalItem(Long maxTotalItem) {
this.maxTotalItem = maxTotalItem;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>101</p>
*/
public Builder totalItem(Long totalItem) {
this.totalItem = totalItem;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListPageListRequest} extends {@link RequestModel}
*
* <p>DescribeNameListPageListRequest</p>
*/
public class DescribeNameListPageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("updateBeginTime")
private Long updateBeginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("updateEndTime")
private Long updateEndTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("value")
private String value;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("variableId")
@com.aliyun.core.annotation.Validation(required = true)
private Long variableId;
private DescribeNameListPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.updateBeginTime = builder.updateBeginTime;
this.updateEndTime = builder.updateEndTime;
this.value = builder.value;
this.variableId = builder.variableId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListPageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return updateBeginTime
*/
public Long getUpdateBeginTime() {
return this.updateBeginTime;
}
/**
* @return updateEndTime
*/
public Long getUpdateEndTime() {
return this.updateEndTime;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
/**
* @return variableId
*/
public Long getVariableId() {
return this.variableId;
}
public static final class Builder extends Request.Builder<DescribeNameListPageListRequest, Builder> {
private String lang;
private Integer currentPage;
private Integer pageSize;
private String regId;
private Long updateBeginTime;
private Long updateEndTime;
private String value;
private Long variableId;
private Builder() {
super();
}
private Builder(DescribeNameListPageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.updateBeginTime = request.updateBeginTime;
this.updateEndTime = request.updateEndTime;
this.value = request.value;
this.variableId = request.variableId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder currentPage(Integer currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Update start time.</p>
*
* <strong>example:</strong>
* <p>1753372800000</p>
*/
public Builder updateBeginTime(Long updateBeginTime) {
this.putQueryParameter("updateBeginTime", updateBeginTime);
this.updateBeginTime = updateBeginTime;
return this;
}
/**
* <p>Update end time.</p>
*
* <strong>example:</strong>
* <p>1753459199059</p>
*/
public Builder updateEndTime(Long updateEndTime) {
this.putQueryParameter("updateEndTime", updateEndTime);
this.updateEndTime = updateEndTime;
return this;
}
/**
* <p>Variable name/description</p>
*
* <strong>example:</strong>
* <p>白名单</p>
*/
public Builder value(String value) {
this.putQueryParameter("value", value);
this.value = value;
return this;
}
/**
* <p>Variable ID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>762</p>
*/
public Builder variableId(Long variableId) {
this.putQueryParameter("variableId", variableId);
this.variableId = variableId;
return this;
}
@Override
public DescribeNameListPageListRequest build() {
return new DescribeNameListPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListPageListResponse} extends {@link TeaModel}
*
* <p>DescribeNameListPageListResponse</p>
*/
public class DescribeNameListPageListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeNameListPageListResponseBody body;
private DescribeNameListPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeNameListPageListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeNameListPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeNameListPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeNameListPageListResponseBody body);
@Override
DescribeNameListPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeNameListPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeNameListPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeNameListPageListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeNameListPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeNameListPageListResponse build() {
return new DescribeNameListPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListPageListResponseBody</p>
*/
public class DescribeNameListPageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("currentPage")
private String currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private String pageSize;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private String totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private String totalPage;
private DescribeNameListPageListResponseBody(Builder builder) {
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListPageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return currentPage
*/
public String getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public String getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public String getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String currentPage;
private String pageSize;
private String requestId;
private java.util.List<ResultObject> resultObject;
private String totalItem;
private String totalPage;
private Builder() {
}
private Builder(DescribeNameListPageListResponseBody model) {
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(String currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(String pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>101</p>
*/
public Builder totalItem(String totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages</p>
*
* <strong>example:</strong>
* <p>9</p>
*/
public Builder totalPage(String totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeNameListPageListResponseBody build() {
return new DescribeNameListPageListResponseBody(this);
}
}
/**
*
* {@link DescribeNameListPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListPageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("nameListType")
private String nameListType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("userId")
private String userId;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
@com.aliyun.core.annotation.NameInMap("variableId")
private Long variableId;
private ResultObject(Builder builder) {
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.memo = builder.memo;
this.name = builder.name;
this.nameListType = builder.nameListType;
this.title = builder.title;
this.userId = builder.userId;
this.value = builder.value;
this.variableId = builder.variableId;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nameListType
*/
public String getNameListType() {
return this.nameListType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
/**
* @return variableId
*/
public Long getVariableId() {
return this.variableId;
}
public static final class Builder {
private Long gmtCreate;
private Long gmtModified;
private Long id;
private String memo;
private String name;
private String nameListType;
private String title;
private String userId;
private String value;
private Long variableId;
private Builder() {
}
private Builder(ResultObject model) {
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.memo = model.memo;
this.name = model.name;
this.nameListType = model.nameListType;
this.title = model.title;
this.userId = model.userId;
this.value = model.value;
this.variableId = model.variableId;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Modification time.</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>ID of the list variable content data</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>NameList Content memo</p>
*
* <strong>example:</strong>
* <p>名单内容描述</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Variable name</p>
*
* <strong>example:</strong>
* <p>nl_UN8otElLb490</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Variable type</p>
*
* <strong>example:</strong>
* <p>accountId</p>
*/
public Builder nameListType(String nameListType) {
this.nameListType = nameListType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>白名单</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>User UID</p>
*
* <strong>example:</strong>
* <p>130433202307074287</p>
*/
public Builder userId(String userId) {
this.userId = userId;
return this;
}
/**
* <p>Variable value</p>
*
* <strong>example:</strong>
* <p>130433202307074287</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>762</p>
*/
public Builder variableId(Long variableId) {
this.variableId = variableId;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListRequest} extends {@link RequestModel}
*
* <p>DescribeNameListRequest</p>
*/
public class DescribeNameListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("createType")
private String createType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private String currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private String pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("value")
private String value;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("variableId")
private String variableId;
private DescribeNameListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.value = builder.value;
this.variableId = builder.variableId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return createType
*/
public String getCreateType() {
return this.createType;
}
/**
* @return currentPage
*/
public String getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
/**
* @return variableId
*/
public String getVariableId() {
return this.variableId;
}
public static final class Builder extends Request.Builder<DescribeNameListRequest, Builder> {
private String lang;
private String createType;
private String currentPage;
private String pageSize;
private String regId;
private String value;
private String variableId;
private Builder() {
super();
}
private Builder(DescribeNameListRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.currentPage = request.currentPage;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.value = request.value;
this.variableId = request.variableId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Creation type.</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(String currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(String pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Search value.</p>
*
* <strong>example:</strong>
* <p>白名单</p>
*/
public Builder value(String value) {
this.putQueryParameter("value", value);
this.value = value;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>393314</p>
*/
public Builder variableId(String variableId) {
this.putQueryParameter("variableId", variableId);
this.variableId = variableId;
return this;
}
@Override
public DescribeNameListRequest build() {
return new DescribeNameListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListResponse} extends {@link TeaModel}
*
* <p>DescribeNameListResponse</p>
*/
public class DescribeNameListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeNameListResponseBody body;
private DescribeNameListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeNameListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeNameListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeNameListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeNameListResponseBody body);
@Override
DescribeNameListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeNameListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeNameListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeNameListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeNameListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeNameListResponse build() {
return new DescribeNameListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListResponseBody</p>
*/
public class DescribeNameListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Integer totalPage;
private DescribeNameListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Integer currentPage;
private Integer pageSize;
private java.util.List<ResultObject> resultObject;
private Integer totalItem;
private Integer totalPage;
private Builder() {
}
private Builder(DescribeNameListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Returned object.</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items.</p>
*
* <strong>example:</strong>
* <p>6</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeNameListResponseBody build() {
return new DescribeNameListResponseBody(this);
}
}
/**
*
* {@link DescribeNameListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("identifier")
private String identifier;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
@com.aliyun.core.annotation.NameInMap("variableId")
private Long variableId;
private ResultObject(Builder builder) {
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.identifier = builder.identifier;
this.title = builder.title;
this.value = builder.value;
this.variableId = builder.variableId;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return identifier
*/
public String getIdentifier() {
return this.identifier;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
/**
* @return variableId
*/
public Long getVariableId() {
return this.variableId;
}
public static final class Builder {
private Long gmtCreate;
private Long gmtModified;
private Long id;
private String identifier;
private String title;
private String value;
private Long variableId;
private Builder() {
}
private Builder(ResultObject model) {
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.identifier = model.identifier;
this.title = model.title;
this.value = model.value;
this.variableId = model.variableId;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Modification time.</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Name list content ID.</p>
*
* <strong>example:</strong>
* <p>30</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Variable identifier.</p>
*
* <strong>example:</strong>
* <p>NAME_LIST</p>
*/
public Builder identifier(String identifier) {
this.identifier = identifier;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>变量的title</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Value.</p>
*
* <strong>example:</strong>
* <p>321311193502064288</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
/**
* <p>Variable ID.</p>
*
* <strong>example:</strong>
* <p>393314</p>
*/
public Builder variableId(Long variableId) {
this.variableId = variableId;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListTypeListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListTypeListRequest} extends {@link RequestModel}
*
* <p>DescribeNameListTypeListRequest</p>
*/
public class DescribeNameListTypeListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeNameListTypeListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListTypeListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeNameListTypeListRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeNameListTypeListRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeNameListTypeListRequest build() {
return new DescribeNameListTypeListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListTypeListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListTypeListResponse} extends {@link TeaModel}
*
* <p>DescribeNameListTypeListResponse</p>
*/
public class DescribeNameListTypeListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeNameListTypeListResponseBody body;
private DescribeNameListTypeListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeNameListTypeListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeNameListTypeListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeNameListTypeListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeNameListTypeListResponseBody body);
@Override
DescribeNameListTypeListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeNameListTypeListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeNameListTypeListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeNameListTypeListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeNameListTypeListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeNameListTypeListResponse build() {
return new DescribeNameListTypeListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListTypeListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListTypeListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListTypeListResponseBody</p>
*/
public class DescribeNameListTypeListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeNameListTypeListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListTypeListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeNameListTypeListResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeNameListTypeListResponseBody build() {
return new DescribeNameListTypeListResponseBody(this);
}
}
/**
*
* {@link DescribeNameListTypeListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListTypeListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("key")
private String key;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private ResultObject(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject 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;
private Builder() {
}
private Builder(ResultObject model) {
this.key = model.key;
this.value = model.value;
}
/**
* <p>Match Key.</p>
*
* <strong>example:</strong>
* <p>accountId</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>Variable value</p>
*
* <strong>example:</strong>
* <p>账号ID</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListVariablePageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListVariablePageListRequest} extends {@link RequestModel}
*
* <p>DescribeNameListVariablePageListRequest</p>
*/
public class DescribeNameListVariablePageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("nameListType")
private String nameListType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private DescribeNameListVariablePageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.name = builder.name;
this.nameListType = builder.nameListType;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListVariablePageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nameListType
*/
public String getNameListType() {
return this.nameListType;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder extends Request.Builder<DescribeNameListVariablePageListRequest, Builder> {
private String lang;
private Integer currentPage;
private String name;
private String nameListType;
private Integer pageSize;
private String regId;
private String value;
private Builder() {
super();
}
private Builder(DescribeNameListVariablePageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.name = request.name;
this.nameListType = request.nameListType;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.value = request.value;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Variable name</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder name(String name) {
this.putQueryParameter("name", name);
this.name = name;
return this;
}
/**
* <p>Variable type</p>
*
* <strong>example:</strong>
* <p>accountId</p>
*/
public Builder nameListType(String nameListType) {
this.putQueryParameter("nameListType", nameListType);
this.nameListType = nameListType;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Name list value</p>
*
* <strong>example:</strong>
* <p>valuexxx</p>
*/
public Builder value(String value) {
this.putQueryParameter("value", value);
this.value = value;
return this;
}
@Override
public DescribeNameListVariablePageListRequest build() {
return new DescribeNameListVariablePageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListVariablePageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListVariablePageListResponse} extends {@link TeaModel}
*
* <p>DescribeNameListVariablePageListResponse</p>
*/
public class DescribeNameListVariablePageListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeNameListVariablePageListResponseBody body;
private DescribeNameListVariablePageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeNameListVariablePageListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeNameListVariablePageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeNameListVariablePageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeNameListVariablePageListResponseBody body);
@Override
DescribeNameListVariablePageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeNameListVariablePageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeNameListVariablePageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeNameListVariablePageListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeNameListVariablePageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeNameListVariablePageListResponse build() {
return new DescribeNameListVariablePageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeNameListVariablePageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeNameListVariablePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListVariablePageListResponseBody</p>
*/
public class DescribeNameListVariablePageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Integer totalPage;
private DescribeNameListVariablePageListResponseBody(Builder builder) {
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeNameListVariablePageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Integer currentPage;
private Integer pageSize;
private String requestId;
private java.util.List<ResultObject> resultObject;
private Integer totalItem;
private Integer totalPage;
private Builder() {
}
private Builder(DescribeNameListVariablePageListResponseBody model) {
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>101</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeNameListVariablePageListResponseBody build() {
return new DescribeNameListVariablePageListResponseBody(this);
}
}
/**
*
* {@link DescribeNameListVariablePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeNameListVariablePageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("capacity")
private Long capacity;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("leftCapacity")
private Long leftCapacity;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("nameListType")
private String nameListType;
@com.aliyun.core.annotation.NameInMap("refObjId")
private String refObjId;
@com.aliyun.core.annotation.NameInMap("refObjType")
private Long refObjType;
@com.aliyun.core.annotation.NameInMap("sourceType")
private String sourceType;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("userId")
private Long userId;
private ResultObject(Builder builder) {
this.capacity = builder.capacity;
this.description = builder.description;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.leftCapacity = builder.leftCapacity;
this.name = builder.name;
this.nameListType = builder.nameListType;
this.refObjId = builder.refObjId;
this.refObjType = builder.refObjType;
this.sourceType = builder.sourceType;
this.title = builder.title;
this.type = builder.type;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return capacity
*/
public Long getCapacity() {
return this.capacity;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return leftCapacity
*/
public Long getLeftCapacity() {
return this.leftCapacity;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nameListType
*/
public String getNameListType() {
return this.nameListType;
}
/**
* @return refObjId
*/
public String getRefObjId() {
return this.refObjId;
}
/**
* @return refObjType
*/
public Long getRefObjType() {
return this.refObjType;
}
/**
* @return sourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return userId
*/
public Long getUserId() {
return this.userId;
}
public static final class Builder {
private Long capacity;
private String description;
private Long gmtCreate;
private Long gmtModified;
private Long id;
private Long leftCapacity;
private String name;
private String nameListType;
private String refObjId;
private Long refObjType;
private String sourceType;
private String title;
private String type;
private Long userId;
private Builder() {
}
private Builder(ResultObject model) {
this.capacity = model.capacity;
this.description = model.description;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.leftCapacity = model.leftCapacity;
this.name = model.name;
this.nameListType = model.nameListType;
this.refObjId = model.refObjId;
this.refObjType = model.refObjType;
this.sourceType = model.sourceType;
this.title = model.title;
this.type = model.type;
this.userId = model.userId;
}
/**
* <p>Used capacity</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder capacity(Long capacity) {
this.capacity = capacity;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>变量描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Modification time</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Name list ID</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Remaining capacity</p>
*
* <strong>example:</strong>
* <p>99997</p>
*/
public Builder leftCapacity(Long leftCapacity) {
this.leftCapacity = leftCapacity;
return this;
}
/**
* <p>Parameter name.</p>
*
* <strong>example:</strong>
* <p>nl_UN8otElLb490</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Name list type</p>
*
* <strong>example:</strong>
* <p>手机号</p>
*/
public Builder nameListType(String nameListType) {
this.nameListType = nameListType;
return this;
}
/**
* <p>Associated event eventCode</p>
*
* <strong>example:</strong>
* <p>-1</p>
*/
public Builder refObjId(String refObjId) {
this.refObjId = refObjId;
return this;
}
/**
* <p>Association type</p>
*
* <strong>example:</strong>
* <p>EVENT</p>
*/
public Builder refObjType(Long refObjType) {
this.refObjType = refObjType;
return this;
}
/**
* <p>Data source</p>
*
* <strong>example:</strong>
* <p>SAF</p>
*/
public Builder sourceType(String sourceType) {
this.sourceType = sourceType;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>白名单</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* <p>Variable type</p>
*
* <strong>example:</strong>
* <p>NAME_LIST</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* <p>User UID</p>
*
* <strong>example:</strong>
* <p>180650758xxxxxxx</p>
*/
public Builder userId(Long userId) {
this.userId = userId;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogMonitoringRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogMonitoringRequest} extends {@link RequestModel}
*
* <p>DescribeOperationLogMonitoringRequest</p>
*/
public class DescribeOperationLogMonitoringRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endDate")
private String endDate;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("startDate")
private String startDate;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("userNameSearch")
private String userNameSearch;
private DescribeOperationLogMonitoringRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.endDate = builder.endDate;
this.regId = builder.regId;
this.startDate = builder.startDate;
this.userNameSearch = builder.userNameSearch;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperationLogMonitoringRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return endDate
*/
public String getEndDate() {
return this.endDate;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return startDate
*/
public String getStartDate() {
return this.startDate;
}
/**
* @return userNameSearch
*/
public String getUserNameSearch() {
return this.userNameSearch;
}
public static final class Builder extends Request.Builder<DescribeOperationLogMonitoringRequest, Builder> {
private String lang;
private String endDate;
private String regId;
private String startDate;
private String userNameSearch;
private Builder() {
super();
}
private Builder(DescribeOperationLogMonitoringRequest request) {
super(request);
this.lang = request.lang;
this.endDate = request.endDate;
this.regId = request.regId;
this.startDate = request.startDate;
this.userNameSearch = request.userNameSearch;
}
/**
* <p>Language type of the returned message. Values:</p>
* <ul>
* <li><strong>zh</strong> (default): Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>End date (in yyyy-MM-dd format, and the interval from the start date cannot exceed 90 days)</p>
*
* <strong>example:</strong>
* <p>2025-07-30</p>
*/
public Builder endDate(String endDate) {
this.putQueryParameter("endDate", endDate);
this.endDate = endDate;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Start date (in yyyy-MM-dd format, and the interval from the current date cannot exceed 90 days)</p>
*
* <strong>example:</strong>
* <p>2025-07-19</p>
*/
public Builder startDate(String startDate) {
this.putQueryParameter("startDate", startDate);
this.startDate = startDate;
return this;
}
/**
* <p>Operator.</p>
*
* <strong>example:</strong>
* <p>root</p>
*/
public Builder userNameSearch(String userNameSearch) {
this.putQueryParameter("userNameSearch", userNameSearch);
this.userNameSearch = userNameSearch;
return this;
}
@Override
public DescribeOperationLogMonitoringRequest build() {
return new DescribeOperationLogMonitoringRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogMonitoringResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogMonitoringResponse} extends {@link TeaModel}
*
* <p>DescribeOperationLogMonitoringResponse</p>
*/
public class DescribeOperationLogMonitoringResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOperationLogMonitoringResponseBody body;
private DescribeOperationLogMonitoringResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOperationLogMonitoringResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOperationLogMonitoringResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOperationLogMonitoringResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOperationLogMonitoringResponseBody body);
@Override
DescribeOperationLogMonitoringResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOperationLogMonitoringResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOperationLogMonitoringResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOperationLogMonitoringResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOperationLogMonitoringResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOperationLogMonitoringResponse build() {
return new DescribeOperationLogMonitoringResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogMonitoringResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogMonitoringResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperationLogMonitoringResponseBody</p>
*/
public class DescribeOperationLogMonitoringResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeOperationLogMonitoringResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperationLogMonitoringResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeOperationLogMonitoringResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object.</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeOperationLogMonitoringResponseBody build() {
return new DescribeOperationLogMonitoringResponseBody(this);
}
}
/**
*
* {@link DescribeOperationLogMonitoringResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperationLogMonitoringResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("dateGrouped")
private String dateGrouped;
@com.aliyun.core.annotation.NameInMap("totalCount")
private String totalCount;
private ResultObject(Builder builder) {
this.dateGrouped = builder.dateGrouped;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return dateGrouped
*/
public String getDateGrouped() {
return this.dateGrouped;
}
/**
* @return totalCount
*/
public String getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private String dateGrouped;
private String totalCount;
private Builder() {
}
private Builder(ResultObject model) {
this.dateGrouped = model.dateGrouped;
this.totalCount = model.totalCount;
}
/**
* <p>Time axis slice.</p>
*
* <strong>example:</strong>
* <p>2025-07-19</p>
*/
public Builder dateGrouped(String dateGrouped) {
this.dateGrouped = dateGrouped;
return this;
}
/**
* <p>Total count.</p>
*
* <strong>example:</strong>
* <p>2</p>
*/
public Builder totalCount(String totalCount) {
this.totalCount = totalCount;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogPageListRequest} extends {@link RequestModel}
*
* <p>DescribeOperationLogPageListRequest</p>
*/
public class DescribeOperationLogPageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endDate")
private Long endDate;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("operationSummary")
private String operationSummary;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("startDate")
private Long startDate;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("userNameSearch")
private String userNameSearch;
private DescribeOperationLogPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.endDate = builder.endDate;
this.operationSummary = builder.operationSummary;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.startDate = builder.startDate;
this.userNameSearch = builder.userNameSearch;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperationLogPageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return endDate
*/
public Long getEndDate() {
return this.endDate;
}
/**
* @return operationSummary
*/
public String getOperationSummary() {
return this.operationSummary;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return startDate
*/
public Long getStartDate() {
return this.startDate;
}
/**
* @return userNameSearch
*/
public String getUserNameSearch() {
return this.userNameSearch;
}
public static final class Builder extends Request.Builder<DescribeOperationLogPageListRequest, Builder> {
private String lang;
private Integer currentPage;
private Long endDate;
private String operationSummary;
private Integer pageSize;
private String regId;
private Long startDate;
private String userNameSearch;
private Builder() {
super();
}
private Builder(DescribeOperationLogPageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.endDate = request.endDate;
this.operationSummary = request.operationSummary;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.startDate = request.startDate;
this.userNameSearch = request.userNameSearch;
}
/**
* <p>Set the language type for request and response messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>End time.</p>
*
* <strong>example:</strong>
* <p>1733364850919</p>
*/
public Builder endDate(Long endDate) {
this.putQueryParameter("endDate", endDate);
this.endDate = endDate;
return this;
}
/**
* <p>Operation Summary.</p>
*
* <strong>example:</strong>
* <p>Update</p>
*/
public Builder operationSummary(String operationSummary) {
this.putQueryParameter("operationSummary", operationSummary);
this.operationSummary = operationSummary;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Start time.</p>
*
* <strong>example:</strong>
* <p>1733364850919</p>
*/
public Builder startDate(Long startDate) {
this.putQueryParameter("startDate", startDate);
this.startDate = startDate;
return this;
}
/**
* <p>User Name Search.</p>
*
* <strong>example:</strong>
* <p>root</p>
*/
public Builder userNameSearch(String userNameSearch) {
this.putQueryParameter("userNameSearch", userNameSearch);
this.userNameSearch = userNameSearch;
return this;
}
@Override
public DescribeOperationLogPageListRequest build() {
return new DescribeOperationLogPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogPageListResponse} extends {@link TeaModel}
*
* <p>DescribeOperationLogPageListResponse</p>
*/
public class DescribeOperationLogPageListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOperationLogPageListResponseBody body;
private DescribeOperationLogPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOperationLogPageListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOperationLogPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOperationLogPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOperationLogPageListResponseBody body);
@Override
DescribeOperationLogPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOperationLogPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOperationLogPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOperationLogPageListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOperationLogPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOperationLogPageListResponse build() {
return new DescribeOperationLogPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperationLogPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperationLogPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperationLogPageListResponseBody</p>
*/
public class DescribeOperationLogPageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Integer totalPage;
private DescribeOperationLogPageListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperationLogPageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Integer currentPage;
private Integer pageSize;
private java.util.List<ResultObject> resultObject;
private Integer totalItem;
private Integer totalPage;
private Builder() {
}
private Builder(DescribeOperationLogPageListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeOperationLogPageListResponseBody build() {
return new DescribeOperationLogPageListResponseBody(this);
}
}
/**
*
* {@link DescribeOperationLogPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperationLogPageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("clientIp")
private String clientIp;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("newContent")
private String newContent;
@com.aliyun.core.annotation.NameInMap("oldContent")
private String oldContent;
@com.aliyun.core.annotation.NameInMap("operationSummary")
private String operationSummary;
@com.aliyun.core.annotation.NameInMap("operationType")
private String operationType;
@com.aliyun.core.annotation.NameInMap("userName")
private String userName;
private ResultObject(Builder builder) {
this.clientIp = builder.clientIp;
this.gmtCreate = builder.gmtCreate;
this.newContent = builder.newContent;
this.oldContent = builder.oldContent;
this.operationSummary = builder.operationSummary;
this.operationType = builder.operationType;
this.userName = builder.userName;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return clientIp
*/
public String getClientIp() {
return this.clientIp;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return newContent
*/
public String getNewContent() {
return this.newContent;
}
/**
* @return oldContent
*/
public String getOldContent() {
return this.oldContent;
}
/**
* @return operationSummary
*/
public String getOperationSummary() {
return this.operationSummary;
}
/**
* @return operationType
*/
public String getOperationType() {
return this.operationType;
}
/**
* @return userName
*/
public String getUserName() {
return this.userName;
}
public static final class Builder {
private String clientIp;
private Long gmtCreate;
private String newContent;
private String oldContent;
private String operationSummary;
private String operationType;
private String userName;
private Builder() {
}
private Builder(ResultObject model) {
this.clientIp = model.clientIp;
this.gmtCreate = model.gmtCreate;
this.newContent = model.newContent;
this.oldContent = model.oldContent;
this.operationSummary = model.operationSummary;
this.operationType = model.operationType;
this.userName = model.userName;
}
/**
* <p>Client IP.</p>
*
* <strong>example:</strong>
* <p>100.68.***.166</p>
*/
public Builder clientIp(String clientIp) {
this.clientIp = clientIp;
return this;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Content after operation</p>
*
* <strong>example:</strong>
* <p>@selfvariable_02</p>
*/
public Builder newContent(String newContent) {
this.newContent = newContent;
return this;
}
/**
* <p>Content before operation</p>
*
* <strong>example:</strong>
* <p>@selfvariable_02 + 1001</p>
*/
public Builder oldContent(String oldContent) {
this.oldContent = oldContent;
return this;
}
/**
* <p>Operation summary</p>
*
* <strong>example:</strong>
* <p>更新事件:决策引擎可观测性持续建设_事件A(de_afghcf6411)</p>
*/
public Builder operationSummary(String operationSummary) {
this.operationSummary = operationSummary;
return this;
}
/**
* <p>Operation type.</p>
*
* <strong>example:</strong>
* <p>CREATE_EVENT</p>
*/
public Builder operationType(String operationType) {
this.operationType = operationType;
return this;
}
/**
* <p>Operator</p>
*
* <strong>example:</strong>
* <p>root</p>
*/
public Builder userName(String userName) {
this.userName = userName;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListBySceneRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListBySceneRequest} extends {@link RequestModel}
*
* <p>DescribeOperatorListBySceneRequest</p>
*/
public class DescribeOperatorListBySceneRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("scene")
private String scene;
private DescribeOperatorListBySceneRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.scene = builder.scene;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListBySceneRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return scene
*/
public String getScene() {
return this.scene;
}
public static final class Builder extends Request.Builder<DescribeOperatorListBySceneRequest, Builder> {
private String lang;
private String regId;
private String scene;
private Builder() {
super();
}
private Builder(DescribeOperatorListBySceneRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.scene = request.scene;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Scene type.</p>
*
* <strong>example:</strong>
* <p>VELOCITY</p>
*/
public Builder scene(String scene) {
this.putQueryParameter("scene", scene);
this.scene = scene;
return this;
}
@Override
public DescribeOperatorListBySceneRequest build() {
return new DescribeOperatorListBySceneRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListBySceneResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListBySceneResponse} extends {@link TeaModel}
*
* <p>DescribeOperatorListBySceneResponse</p>
*/
public class DescribeOperatorListBySceneResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOperatorListBySceneResponseBody body;
private DescribeOperatorListBySceneResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOperatorListBySceneResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOperatorListBySceneResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOperatorListBySceneResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOperatorListBySceneResponseBody body);
@Override
DescribeOperatorListBySceneResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOperatorListBySceneResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOperatorListBySceneResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOperatorListBySceneResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOperatorListBySceneResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOperatorListBySceneResponse build() {
return new DescribeOperatorListBySceneResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListBySceneResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListBySceneResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListBySceneResponseBody</p>
*/
public class DescribeOperatorListBySceneResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeOperatorListBySceneResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListBySceneResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeOperatorListBySceneResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeOperatorListBySceneResponseBody build() {
return new DescribeOperatorListBySceneResponseBody(this);
}
}
/**
*
* {@link DescribeOperatorListBySceneResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListBySceneResponseBody</p>
*/
public static class RightVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldName")
private String fieldName;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("fieldValue")
private String fieldValue;
private RightVariables(Builder builder) {
this.fieldName = builder.fieldName;
this.fieldType = builder.fieldType;
this.fieldValue = builder.fieldValue;
}
public static Builder builder() {
return new Builder();
}
public static RightVariables create() {
return builder().build();
}
/**
* @return fieldName
*/
public String getFieldName() {
return this.fieldName;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return fieldValue
*/
public String getFieldValue() {
return this.fieldValue;
}
public static final class Builder {
private String fieldName;
private String fieldType;
private String fieldValue;
private Builder() {
}
private Builder(RightVariables model) {
this.fieldName = model.fieldName;
this.fieldType = model.fieldType;
this.fieldValue = model.fieldValue;
}
/**
* <p>Field name.</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder fieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>INT</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Field value.</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
public Builder fieldValue(String fieldValue) {
this.fieldValue = fieldValue;
return this;
}
public RightVariables build() {
return new RightVariables(this);
}
}
}
/**
*
* {@link DescribeOperatorListBySceneResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListBySceneResponseBody</p>
*/
public static class Operators extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("hasRightVariable")
private Boolean hasRightVariable;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("rightVariables")
private java.util.List<RightVariables> rightVariables;
private Operators(Builder builder) {
this.code = builder.code;
this.hasRightVariable = builder.hasRightVariable;
this.memo = builder.memo;
this.name = builder.name;
this.rightVariables = builder.rightVariables;
}
public static Builder builder() {
return new Builder();
}
public static Operators create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return hasRightVariable
*/
public Boolean getHasRightVariable() {
return this.hasRightVariable;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return rightVariables
*/
public java.util.List<RightVariables> getRightVariables() {
return this.rightVariables;
}
public static final class Builder {
private String code;
private Boolean hasRightVariable;
private String memo;
private String name;
private java.util.List<RightVariables> rightVariables;
private Builder() {
}
private Builder(Operators model) {
this.code = model.code;
this.hasRightVariable = model.hasRightVariable;
this.memo = model.memo;
this.name = model.name;
this.rightVariables = model.rightVariables;
}
/**
* <p>Operator code</p>
*
* <strong>example:</strong>
* <p>equals</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Whether it contains a right variable</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder hasRightVariable(Boolean hasRightVariable) {
this.hasRightVariable = hasRightVariable;
return this;
}
/**
* <p>Description</p>
*
* <strong>example:</strong>
* <p>等于</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Operator name</p>
*
* <strong>example:</strong>
* <p>等于</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Right variable object</p>
*/
public Builder rightVariables(java.util.List<RightVariables> rightVariables) {
this.rightVariables = rightVariables;
return this;
}
public Operators build() {
return new Operators(this);
}
}
}
/**
*
* {@link DescribeOperatorListBySceneResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListBySceneResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("operators")
private java.util.List<Operators> operators;
private ResultObject(Builder builder) {
this.fieldType = builder.fieldType;
this.operators = builder.operators;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return operators
*/
public java.util.List<Operators> getOperators() {
return this.operators;
}
public static final class Builder {
private String fieldType;
private java.util.List<Operators> operators;
private Builder() {
}
private Builder(ResultObject model) {
this.fieldType = model.fieldType;
this.operators = model.operators;
}
/**
* <p>Return value type</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Operator list</p>
*/
public Builder operators(java.util.List<Operators> operators) {
this.operators = operators;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListByTypeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListByTypeRequest} extends {@link RequestModel}
*
* <p>DescribeOperatorListByTypeRequest</p>
*/
public class DescribeOperatorListByTypeRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeOperatorListByTypeRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListByTypeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeOperatorListByTypeRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeOperatorListByTypeRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeOperatorListByTypeRequest build() {
return new DescribeOperatorListByTypeRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListByTypeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListByTypeResponse} extends {@link TeaModel}
*
* <p>DescribeOperatorListByTypeResponse</p>
*/
public class DescribeOperatorListByTypeResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOperatorListByTypeResponseBody body;
private DescribeOperatorListByTypeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOperatorListByTypeResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOperatorListByTypeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOperatorListByTypeResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOperatorListByTypeResponseBody body);
@Override
DescribeOperatorListByTypeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOperatorListByTypeResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOperatorListByTypeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOperatorListByTypeResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOperatorListByTypeResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOperatorListByTypeResponse build() {
return new DescribeOperatorListByTypeResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListByTypeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListByTypeResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListByTypeResponseBody</p>
*/
public class DescribeOperatorListByTypeResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeOperatorListByTypeResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListByTypeResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeOperatorListByTypeResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeOperatorListByTypeResponseBody build() {
return new DescribeOperatorListByTypeResponseBody(this);
}
}
/**
*
* {@link DescribeOperatorListByTypeResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListByTypeResponseBody</p>
*/
public static class Operators extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("hasRightVariable")
private Boolean hasRightVariable;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
private Operators(Builder builder) {
this.code = builder.code;
this.hasRightVariable = builder.hasRightVariable;
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static Operators create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return hasRightVariable
*/
public Boolean getHasRightVariable() {
return this.hasRightVariable;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder {
private String code;
private Boolean hasRightVariable;
private String name;
private Builder() {
}
private Builder(Operators model) {
this.code = model.code;
this.hasRightVariable = model.hasRightVariable;
this.name = model.name;
}
/**
* <p>Operator code</p>
*
* <strong>example:</strong>
* <p>equals</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Whether it contains a right variable</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder hasRightVariable(Boolean hasRightVariable) {
this.hasRightVariable = hasRightVariable;
return this;
}
/**
* <p>Operator name</p>
*
* <strong>example:</strong>
* <p>等于</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
public Operators build() {
return new Operators(this);
}
}
}
/**
*
* {@link DescribeOperatorListByTypeResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListByTypeResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("operators")
private java.util.List<Operators> operators;
private ResultObject(Builder builder) {
this.fieldType = builder.fieldType;
this.operators = builder.operators;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return operators
*/
public java.util.List<Operators> getOperators() {
return this.operators;
}
public static final class Builder {
private String fieldType;
private java.util.List<Operators> operators;
private Builder() {
}
private Builder(ResultObject model) {
this.fieldType = model.fieldType;
this.operators = model.operators;
}
/**
* <p>Return value type</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Operator list</p>
*/
public Builder operators(java.util.List<Operators> operators) {
this.operators = operators;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListRequest} extends {@link RequestModel}
*
* <p>DescribeOperatorListRequest</p>
*/
public class DescribeOperatorListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeOperatorListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeOperatorListRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeOperatorListRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Set the language type for request and response messages, default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeOperatorListRequest build() {
return new DescribeOperatorListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListResponse} extends {@link TeaModel}
*
* <p>DescribeOperatorListResponse</p>
*/
public class DescribeOperatorListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOperatorListResponseBody body;
private DescribeOperatorListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOperatorListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOperatorListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOperatorListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOperatorListResponseBody body);
@Override
DescribeOperatorListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOperatorListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOperatorListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOperatorListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOperatorListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOperatorListResponse build() {
return new DescribeOperatorListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOperatorListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOperatorListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListResponseBody</p>
*/
public class DescribeOperatorListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeOperatorListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOperatorListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeOperatorListResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeOperatorListResponseBody build() {
return new DescribeOperatorListResponseBody(this);
}
}
/**
*
* {@link DescribeOperatorListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListResponseBody</p>
*/
public static class RightVariables extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldName")
private String fieldName;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("fieldValue")
private String fieldValue;
private RightVariables(Builder builder) {
this.fieldName = builder.fieldName;
this.fieldType = builder.fieldType;
this.fieldValue = builder.fieldValue;
}
public static Builder builder() {
return new Builder();
}
public static RightVariables create() {
return builder().build();
}
/**
* @return fieldName
*/
public String getFieldName() {
return this.fieldName;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return fieldValue
*/
public String getFieldValue() {
return this.fieldValue;
}
public static final class Builder {
private String fieldName;
private String fieldType;
private String fieldValue;
private Builder() {
}
private Builder(RightVariables model) {
this.fieldName = model.fieldName;
this.fieldType = model.fieldType;
this.fieldValue = model.fieldValue;
}
/**
* <p>Field name.</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder fieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
/**
* <p>Field type.</p>
*
* <strong>example:</strong>
* <p>INT</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Field value.</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
public Builder fieldValue(String fieldValue) {
this.fieldValue = fieldValue;
return this;
}
public RightVariables build() {
return new RightVariables(this);
}
}
}
/**
*
* {@link DescribeOperatorListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListResponseBody</p>
*/
public static class Operators extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("hasRightVariable")
private Boolean hasRightVariable;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("rightVariables")
private java.util.List<RightVariables> rightVariables;
private Operators(Builder builder) {
this.code = builder.code;
this.hasRightVariable = builder.hasRightVariable;
this.memo = builder.memo;
this.name = builder.name;
this.rightVariables = builder.rightVariables;
}
public static Builder builder() {
return new Builder();
}
public static Operators create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return hasRightVariable
*/
public Boolean getHasRightVariable() {
return this.hasRightVariable;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return rightVariables
*/
public java.util.List<RightVariables> getRightVariables() {
return this.rightVariables;
}
public static final class Builder {
private String code;
private Boolean hasRightVariable;
private String memo;
private String name;
private java.util.List<RightVariables> rightVariables;
private Builder() {
}
private Builder(Operators model) {
this.code = model.code;
this.hasRightVariable = model.hasRightVariable;
this.memo = model.memo;
this.name = model.name;
this.rightVariables = model.rightVariables;
}
/**
* <p>Operator code</p>
*
* <strong>example:</strong>
* <p>equals</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Whether it contains a right variable</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder hasRightVariable(Boolean hasRightVariable) {
this.hasRightVariable = hasRightVariable;
return this;
}
/**
* <p>Description</p>
*
* <strong>example:</strong>
* <p>等于</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Operator name</p>
*
* <strong>example:</strong>
* <p>等于</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Right variable object</p>
*/
public Builder rightVariables(java.util.List<RightVariables> rightVariables) {
this.rightVariables = rightVariables;
return this;
}
public Operators build() {
return new Operators(this);
}
}
}
/**
*
* {@link DescribeOperatorListResponseBody} extends {@link TeaModel}
*
* <p>DescribeOperatorListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("operators")
private java.util.List<Operators> operators;
private ResultObject(Builder builder) {
this.fieldType = builder.fieldType;
this.operators = builder.operators;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return operators
*/
public java.util.List<Operators> getOperators() {
return this.operators;
}
public static final class Builder {
private String fieldType;
private java.util.List<Operators> operators;
private Builder() {
}
private Builder(ResultObject model) {
this.fieldType = model.fieldType;
this.operators = model.operators;
}
/**
* <p>Return value type</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Operator list</p>
*/
public Builder operators(java.util.List<Operators> operators) {
this.operators = operators;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssAuthStatusRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssAuthStatusRequest} extends {@link RequestModel}
*
* <p>DescribeOssAuthStatusRequest</p>
*/
public class DescribeOssAuthStatusRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeOssAuthStatusRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssAuthStatusRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeOssAuthStatusRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeOssAuthStatusRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and responses, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeOssAuthStatusRequest build() {
return new DescribeOssAuthStatusRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssAuthStatusResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssAuthStatusResponse} extends {@link TeaModel}
*
* <p>DescribeOssAuthStatusResponse</p>
*/
public class DescribeOssAuthStatusResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOssAuthStatusResponseBody body;
private DescribeOssAuthStatusResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOssAuthStatusResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOssAuthStatusResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOssAuthStatusResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOssAuthStatusResponseBody body);
@Override
DescribeOssAuthStatusResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOssAuthStatusResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOssAuthStatusResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOssAuthStatusResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOssAuthStatusResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOssAuthStatusResponse build() {
return new DescribeOssAuthStatusResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssAuthStatusResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssAuthStatusResponseBody} extends {@link TeaModel}
*
* <p>DescribeOssAuthStatusResponseBody</p>
*/
public class DescribeOssAuthStatusResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private String resultObject;
private DescribeOssAuthStatusResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssAuthStatusResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public String getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private String resultObject;
private Builder() {
}
private Builder(DescribeOssAuthStatusResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(String resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeOssAuthStatusResponseBody build() {
return new DescribeOssAuthStatusResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssPolicyRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssPolicyRequest} extends {@link RequestModel}
*
* <p>DescribeOssPolicyRequest</p>
*/
public class DescribeOssPolicyRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("scene")
@com.aliyun.core.annotation.Validation(required = true)
private String scene;
private DescribeOssPolicyRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.scene = builder.scene;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssPolicyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return scene
*/
public String getScene() {
return this.scene;
}
public static final class Builder extends Request.Builder<DescribeOssPolicyRequest, Builder> {
private String lang;
private String regId;
private String scene;
private Builder() {
super();
}
private Builder(DescribeOssPolicyRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.scene = request.scene;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Scene</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>NAME_LIST</p>
*/
public Builder scene(String scene) {
this.putQueryParameter("scene", scene);
this.scene = scene;
return this;
}
@Override
public DescribeOssPolicyRequest build() {
return new DescribeOssPolicyRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssPolicyResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssPolicyResponse} extends {@link TeaModel}
*
* <p>DescribeOssPolicyResponse</p>
*/
public class DescribeOssPolicyResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOssPolicyResponseBody body;
private DescribeOssPolicyResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOssPolicyResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOssPolicyResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOssPolicyResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOssPolicyResponseBody body);
@Override
DescribeOssPolicyResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOssPolicyResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOssPolicyResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOssPolicyResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOssPolicyResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOssPolicyResponse build() {
return new DescribeOssPolicyResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssPolicyResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssPolicyResponseBody} extends {@link TeaModel}
*
* <p>DescribeOssPolicyResponseBody</p>
*/
public class DescribeOssPolicyResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("AccessId")
private String accessId;
@com.aliyun.core.annotation.NameInMap("Host")
private String host;
@com.aliyun.core.annotation.NameInMap("Key")
private String key;
@com.aliyun.core.annotation.NameInMap("Policy")
private String policy;
@com.aliyun.core.annotation.NameInMap("Signature")
private String signature;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
private DescribeOssPolicyResponseBody(Builder builder) {
this.accessId = builder.accessId;
this.host = builder.host;
this.key = builder.key;
this.policy = builder.policy;
this.signature = builder.signature;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssPolicyResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return accessId
*/
public String getAccessId() {
return this.accessId;
}
/**
* @return host
*/
public String getHost() {
return this.host;
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return policy
*/
public String getPolicy() {
return this.policy;
}
/**
* @return signature
*/
public String getSignature() {
return this.signature;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String accessId;
private String host;
private String key;
private String policy;
private String signature;
private String requestId;
private Builder() {
}
private Builder(DescribeOssPolicyResponseBody model) {
this.accessId = model.accessId;
this.host = model.host;
this.key = model.key;
this.policy = model.policy;
this.signature = model.signature;
this.requestId = model.requestId;
}
/**
* <p>accessId, a parameter used in OSS SDK uploads, corresponding to OSSAccessKeyId</p>
*
* <strong>example:</strong>
* <p>LTAxxxxxxxxxxxx</p>
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* <p>OSS host ID.</p>
*
* <strong>example:</strong>
* <p>testvm.biubiubiuu.com</p>
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* <p>Key required for file upload.</p>
*
* <strong>example:</strong>
* <p>saf/a/uid/ccc</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>OSS security policy</p>
*
* <strong>example:</strong>
* <p>eyJleHBpxxxxxx</p>
*/
public Builder policy(String policy) {
this.policy = policy;
return this;
}
/**
* <p>Signature data.</p>
*
* <strong>example:</strong>
* <p>tzl1wL4q8rR/xxxxxx</p>
*/
public Builder signature(String signature) {
this.signature = signature;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DescribeOssPolicyResponseBody build() {
return new DescribeOssPolicyResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssTokenRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssTokenRequest} extends {@link RequestModel}
*
* <p>DescribeOssTokenRequest</p>
*/
public class DescribeOssTokenRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("fileName")
private String fileName;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("uploadType")
private String uploadType;
private DescribeOssTokenRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.fileName = builder.fileName;
this.regId = builder.regId;
this.uploadType = builder.uploadType;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssTokenRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return fileName
*/
public String getFileName() {
return this.fileName;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return uploadType
*/
public String getUploadType() {
return this.uploadType;
}
public static final class Builder extends Request.Builder<DescribeOssTokenRequest, Builder> {
private String lang;
private String fileName;
private String regId;
private String uploadType;
private Builder() {
super();
}
private Builder(DescribeOssTokenRequest request) {
super(request);
this.lang = request.lang;
this.fileName = request.fileName;
this.regId = request.regId;
this.uploadType = request.uploadType;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>File name.</p>
*
* <strong>example:</strong>
* <p>test.csv</p>
*/
public Builder fileName(String fileName) {
this.putQueryParameter("fileName", fileName);
this.fileName = fileName;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Upload type</p>
*
* <strong>example:</strong>
* <p>COMMUNITY_SAMPLE</p>
*/
public Builder uploadType(String uploadType) {
this.putQueryParameter("uploadType", uploadType);
this.uploadType = uploadType;
return this;
}
@Override
public DescribeOssTokenRequest build() {
return new DescribeOssTokenRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssTokenResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssTokenResponse} extends {@link TeaModel}
*
* <p>DescribeOssTokenResponse</p>
*/
public class DescribeOssTokenResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeOssTokenResponseBody body;
private DescribeOssTokenResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeOssTokenResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeOssTokenResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeOssTokenResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeOssTokenResponseBody body);
@Override
DescribeOssTokenResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeOssTokenResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeOssTokenResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeOssTokenResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeOssTokenResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeOssTokenResponse build() {
return new DescribeOssTokenResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeOssTokenResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeOssTokenResponseBody} extends {@link TeaModel}
*
* <p>DescribeOssTokenResponseBody</p>
*/
public class DescribeOssTokenResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("AccessId")
private String accessId;
@com.aliyun.core.annotation.NameInMap("Host")
private String host;
@com.aliyun.core.annotation.NameInMap("Key")
private String key;
@com.aliyun.core.annotation.NameInMap("Policy")
private String policy;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Signature")
private String signature;
@com.aliyun.core.annotation.NameInMap("StsToken")
private String stsToken;
private DescribeOssTokenResponseBody(Builder builder) {
this.accessId = builder.accessId;
this.host = builder.host;
this.key = builder.key;
this.policy = builder.policy;
this.requestId = builder.requestId;
this.signature = builder.signature;
this.stsToken = builder.stsToken;
}
public static Builder builder() {
return new Builder();
}
public static DescribeOssTokenResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return accessId
*/
public String getAccessId() {
return this.accessId;
}
/**
* @return host
*/
public String getHost() {
return this.host;
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return policy
*/
public String getPolicy() {
return this.policy;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return signature
*/
public String getSignature() {
return this.signature;
}
/**
* @return stsToken
*/
public String getStsToken() {
return this.stsToken;
}
public static final class Builder {
private String accessId;
private String host;
private String key;
private String policy;
private String requestId;
private String signature;
private String stsToken;
private Builder() {
}
private Builder(DescribeOssTokenResponseBody model) {
this.accessId = model.accessId;
this.host = model.host;
this.key = model.key;
this.policy = model.policy;
this.requestId = model.requestId;
this.signature = model.signature;
this.stsToken = model.stsToken;
}
/**
* <p>AccessKeyId for OSS file upload.</p>
*
* <strong>example:</strong>
* <p>LTAxxxxxxxxxxxx</p>
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* <p>Host address.</p>
*
* <strong>example:</strong>
* <p>kf.sunwoosoft.com</p>
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* <p>The Key required for file upload.</p>
*
* <strong>example:</strong>
* <p>saf/de/namelist/e924/ufzgsedX9bd3a7</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>Permission policy for ossbucket.</p>
*
* <strong>example:</strong>
* <p>eyJleHBpcmF0aW9uIjoiMjAyNS0wNy0zMFQwNjowNTo0OS45NTRaIiwiY29uZGl0aW9ucyI6W1siY29udGVudC1sZW5ndGgtcmFuZ2UiLDAsMTA0ODU3NjAwMF0sWyJlcSIsIiRrZXkiLCJzYWZcL2RlXC9uYW1lbGlzdFwvZTkyNFwvdWZ6Z3NlZFg5Ymxxxxxxxxxxx</p>
*/
public Builder policy(String policy) {
this.policy = policy;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>OSS signature.</p>
*
* <strong>example:</strong>
* <p>n29by5MWBmAjcweVoPEY/OHktog=</p>
*/
public Builder signature(String signature) {
this.signature = signature;
return this;
}
/**
* <p>Temporary identity credential.</p>
*
* <strong>example:</strong>
* <p>tT44bMQxxxxxxxxxxxxxxx</p>
*/
public Builder stsToken(String stsToken) {
this.stsToken = stsToken;
return this;
}
public DescribeOssTokenResponseBody build() {
return new DescribeOssTokenResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeParamByEventCodesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeParamByEventCodesRequest} extends {@link RequestModel}
*
* <p>DescribeParamByEventCodesRequest</p>
*/
public class DescribeParamByEventCodesRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
@com.aliyun.core.annotation.Validation(required = true)
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("parma")
private String parma;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeParamByEventCodesRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.eventCodes = builder.eventCodes;
this.parma = builder.parma;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeParamByEventCodesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return parma
*/
public String getParma() {
return this.parma;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeParamByEventCodesRequest, Builder> {
private String lang;
private String eventCodes;
private String parma;
private String regId;
private Builder() {
super();
}
private Builder(DescribeParamByEventCodesRequest request) {
super(request);
this.lang = request.lang;
this.eventCodes = request.eventCodes;
this.parma = request.parma;
this.regId = request.regId;
}
/**
* <p>Set the language type for request and response, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Event code.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>account_abuse_pro,account_abuse</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Query condition</p>
*
* <strong>example:</strong>
* <p>标题/描述</p>
*/
public Builder parma(String parma) {
this.putQueryParameter("parma", parma);
this.parma = parma;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeParamByEventCodesRequest build() {
return new DescribeParamByEventCodesRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeParamByEventCodesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeParamByEventCodesResponse} extends {@link TeaModel}
*
* <p>DescribeParamByEventCodesResponse</p>
*/
public class DescribeParamByEventCodesResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeParamByEventCodesResponseBody body;
private DescribeParamByEventCodesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeParamByEventCodesResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeParamByEventCodesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeParamByEventCodesResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeParamByEventCodesResponseBody body);
@Override
DescribeParamByEventCodesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeParamByEventCodesResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeParamByEventCodesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeParamByEventCodesResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeParamByEventCodesResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeParamByEventCodesResponse build() {
return new DescribeParamByEventCodesResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeParamByEventCodesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeParamByEventCodesResponseBody} extends {@link TeaModel}
*
* <p>DescribeParamByEventCodesResponseBody</p>
*/
public class DescribeParamByEventCodesResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
private DescribeParamByEventCodesResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeParamByEventCodesResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private java.util.List<ResultObject> resultObject;
private Builder() {
}
private Builder(DescribeParamByEventCodesResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeParamByEventCodesResponseBody build() {
return new DescribeParamByEventCodesResponseBody(this);
}
}
/**
*
* {@link DescribeParamByEventCodesResponseBody} extends {@link TeaModel}
*
* <p>DescribeParamByEventCodesResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
private ResultObject(Builder builder) {
this.code = builder.code;
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder {
private String code;
private String name;
private Builder() {
}
private Builder(ResultObject model) {
this.code = model.code;
this.name = model.name;
}
/**
* <p>Return code.</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>Name</p>
*
* <strong>example:</strong>
* <p>年龄</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocOssTokenRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocOssTokenRequest} extends {@link RequestModel}
*
* <p>DescribePocOssTokenRequest</p>
*/
public class DescribePocOssTokenRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribePocOssTokenRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribePocOssTokenRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribePocOssTokenRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribePocOssTokenRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribePocOssTokenRequest build() {
return new DescribePocOssTokenRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocOssTokenResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocOssTokenResponse} extends {@link TeaModel}
*
* <p>DescribePocOssTokenResponse</p>
*/
public class DescribePocOssTokenResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribePocOssTokenResponseBody body;
private DescribePocOssTokenResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribePocOssTokenResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribePocOssTokenResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribePocOssTokenResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribePocOssTokenResponseBody body);
@Override
DescribePocOssTokenResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribePocOssTokenResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribePocOssTokenResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribePocOssTokenResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribePocOssTokenResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribePocOssTokenResponse build() {
return new DescribePocOssTokenResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocOssTokenResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocOssTokenResponseBody} extends {@link TeaModel}
*
* <p>DescribePocOssTokenResponseBody</p>
*/
public class DescribePocOssTokenResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("AccessId")
private String accessId;
@com.aliyun.core.annotation.NameInMap("Host")
private String host;
@com.aliyun.core.annotation.NameInMap("Key")
private String key;
@com.aliyun.core.annotation.NameInMap("Policy")
private String policy;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Signature")
private String signature;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribePocOssTokenResponseBody(Builder builder) {
this.accessId = builder.accessId;
this.host = builder.host;
this.key = builder.key;
this.policy = builder.policy;
this.requestId = builder.requestId;
this.signature = builder.signature;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribePocOssTokenResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return accessId
*/
public String getAccessId() {
return this.accessId;
}
/**
* @return host
*/
public String getHost() {
return this.host;
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return policy
*/
public String getPolicy() {
return this.policy;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return signature
*/
public String getSignature() {
return this.signature;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String accessId;
private String host;
private String key;
private String policy;
private String requestId;
private String signature;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribePocOssTokenResponseBody model) {
this.accessId = model.accessId;
this.host = model.host;
this.key = model.key;
this.policy = model.policy;
this.requestId = model.requestId;
this.signature = model.signature;
this.resultObject = model.resultObject;
}
/**
* <p>AccessKeyId for OSS file upload</p>
*
* <strong>example:</strong>
* <p>LTAxxxxxxxxxxxx</p>
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* <p>Host address.</p>
*
* <strong>example:</strong>
* <p>192.168.34.191</p>
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* <p>The Key required for file upload.</p>
*
* <strong>example:</strong>
* <p>saf/de/namelist/e924/ufzgsedX9bd3a7</p>
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* <p>OSS security policy.</p>
*
* <strong>example:</strong>
* <p>eyJleHBpcmF0aW9uIjoiMjAyNS0wNy0zMFQwNjowNTo0OS45NTRaIiwiY29uZGl0aW9ucyI6W1siY29udGVudC1sZW5ndGgtcmFuZ2UiLDAsMTA0ODU3NjAwMF0sWyJlcSIsIiRrZXkiLCJzYWZcL2RlXC9uYW1lbGlzdFwvZTkyNFwvdWZ6Z3NlZFg5Ymxxxxxxxxxxx</p>
*/
public Builder policy(String policy) {
this.policy = policy;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Upload signature information.</p>
*
* <strong>example:</strong>
* <p>0lxQEWM0BqHd476JJE0fNXdS3UA=</p>
*/
public Builder signature(String signature) {
this.signature = signature;
return this;
}
/**
* <p>Return result.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribePocOssTokenResponseBody build() {
return new DescribePocOssTokenResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocTaskListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocTaskListRequest} extends {@link RequestModel}
*
* <p>DescribePocTaskListRequest</p>
*/
public class DescribePocTaskListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private DescribePocTaskListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribePocTaskListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribePocTaskListRequest, Builder> {
private String lang;
private Integer currentPage;
private Integer pageSize;
private String regId;
private String type;
private Builder() {
super();
}
private Builder(DescribePocTaskListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.type = request.type;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Query type.</p>
*
* <strong>example:</strong>
* <p>SAF_CONSOLE</p>
*/
public Builder type(String type) {
this.putQueryParameter("type", type);
this.type = type;
return this;
}
@Override
public DescribePocTaskListRequest build() {
return new DescribePocTaskListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocTaskListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocTaskListResponse} extends {@link TeaModel}
*
* <p>DescribePocTaskListResponse</p>
*/
public class DescribePocTaskListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribePocTaskListResponseBody body;
private DescribePocTaskListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribePocTaskListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribePocTaskListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribePocTaskListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribePocTaskListResponseBody body);
@Override
DescribePocTaskListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribePocTaskListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribePocTaskListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribePocTaskListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribePocTaskListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribePocTaskListResponse build() {
return new DescribePocTaskListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePocTaskListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePocTaskListResponseBody} extends {@link TeaModel}
*
* <p>DescribePocTaskListResponseBody</p>
*/
public class DescribePocTaskListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Integer totalPage;
private DescribePocTaskListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribePocTaskListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Integer currentPage;
private Integer pageSize;
private java.util.List<ResultObject> resultObject;
private Integer totalItem;
private Integer totalPage;
private Builder() {
}
private Builder(DescribePocTaskListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Returned object.</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items.</p>
*
* <strong>example:</strong>
* <p>6</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribePocTaskListResponseBody build() {
return new DescribePocTaskListResponseBody(this);
}
}
/**
*
* {@link DescribePocTaskListResponseBody} extends {@link TeaModel}
*
* <p>DescribePocTaskListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("createTime")
private String createTime;
@com.aliyun.core.annotation.NameInMap("downloadUrl")
private String downloadUrl;
@com.aliyun.core.annotation.NameInMap("fileType")
private String fileType;
@com.aliyun.core.annotation.NameInMap("serviceName")
private String serviceName;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("taskId")
private String taskId;
@com.aliyun.core.annotation.NameInMap("taskName")
private String taskName;
@com.aliyun.core.annotation.NameInMap("updateTime")
private String updateTime;
private ResultObject(Builder builder) {
this.createTime = builder.createTime;
this.downloadUrl = builder.downloadUrl;
this.fileType = builder.fileType;
this.serviceName = builder.serviceName;
this.status = builder.status;
this.taskId = builder.taskId;
this.taskName = builder.taskName;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return downloadUrl
*/
public String getDownloadUrl() {
return this.downloadUrl;
}
/**
* @return fileType
*/
public String getFileType() {
return this.fileType;
}
/**
* @return serviceName
*/
public String getServiceName() {
return this.serviceName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
/**
* @return taskName
*/
public String getTaskName() {
return this.taskName;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String createTime;
private String downloadUrl;
private String fileType;
private String serviceName;
private String status;
private String taskId;
private String taskName;
private String updateTime;
private Builder() {
}
private Builder(ResultObject model) {
this.createTime = model.createTime;
this.downloadUrl = model.downloadUrl;
this.fileType = model.fileType;
this.serviceName = model.serviceName;
this.status = model.status;
this.taskId = model.taskId;
this.taskName = model.taskName;
this.updateTime = model.updateTime;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1753804800000</p>
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* <p>Download URL.</p>
*
* <strong>example:</strong>
* <p><a href="https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D">https://xxxxx-oss-xxxxx.xxxxxx.aliyuncs.com/xx/xx/xxx/xxxxxx.csv?Expires=1753433384&OSSAccessKeyId=xxxxxxxxx&Signature=%2F%xxxxxxxxxxxx%3D</a></p>
*/
public Builder downloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
return this;
}
/**
* <p>File type.</p>
*
* <strong>example:</strong>
* <p>EXCEL</p>
*/
public Builder fileType(String fileType) {
this.fileType = fileType;
return this;
}
/**
* <p>Service name.</p>
*
* <strong>example:</strong>
* <p>注册风险识别</p>
*/
public Builder serviceName(String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>WAIT_CHECK</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>Task ID.</p>
*
* <strong>example:</strong>
* <p>7</p>
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
/**
* <p>Task name.</p>
*
* <strong>example:</strong>
* <p>任务</p>
*/
public Builder taskName(String taskName) {
this.taskName = taskName;
return this;
}
/**
* <p>Last modified time.</p>
*
* <strong>example:</strong>
* <p>1753804800000</p>
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePrivateStackRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePrivateStackRequest} extends {@link RequestModel}
*
* <p>DescribePrivateStackRequest</p>
*/
public class DescribePrivateStackRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribePrivateStackRequest(Builder builder) {
super(builder);
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribePrivateStackRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribePrivateStackRequest, Builder> {
private String regId;
private Builder() {
super();
}
private Builder(DescribePrivateStackRequest request) {
super(request);
this.regId = request.regId;
}
/**
* <p>Region Code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribePrivateStackRequest build() {
return new DescribePrivateStackRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePrivateStackResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePrivateStackResponse} extends {@link TeaModel}
*
* <p>DescribePrivateStackResponse</p>
*/
public class DescribePrivateStackResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribePrivateStackResponseBody body;
private DescribePrivateStackResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribePrivateStackResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribePrivateStackResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribePrivateStackResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribePrivateStackResponseBody body);
@Override
DescribePrivateStackResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribePrivateStackResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribePrivateStackResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribePrivateStackResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribePrivateStackResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribePrivateStackResponse build() {
return new DescribePrivateStackResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribePrivateStackResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribePrivateStackResponseBody} extends {@link TeaModel}
*
* <p>DescribePrivateStackResponseBody</p>
*/
public class DescribePrivateStackResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribePrivateStackResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribePrivateStackResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribePrivateStackResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return Object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribePrivateStackResponseBody build() {
return new DescribePrivateStackResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariableDetailRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariableDetailRequest} extends {@link RequestModel}
*
* <p>DescribeQueryVariableDetailRequest</p>
*/
public class DescribeQueryVariableDetailRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("id")
@com.aliyun.core.annotation.Validation(required = true)
private Long id;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeQueryVariableDetailRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.id = builder.id;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQueryVariableDetailRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeQueryVariableDetailRequest, Builder> {
private String lang;
private Long id;
private String regId;
private Builder() {
super();
}
private Builder(DescribeQueryVariableDetailRequest request) {
super(request);
this.lang = request.lang;
this.id = request.id;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Variable ID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>355</p>
*/
public Builder id(Long id) {
this.putQueryParameter("id", id);
this.id = id;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeQueryVariableDetailRequest build() {
return new DescribeQueryVariableDetailRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariableDetailResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariableDetailResponse} extends {@link TeaModel}
*
* <p>DescribeQueryVariableDetailResponse</p>
*/
public class DescribeQueryVariableDetailResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeQueryVariableDetailResponseBody body;
private DescribeQueryVariableDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeQueryVariableDetailResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeQueryVariableDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeQueryVariableDetailResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeQueryVariableDetailResponseBody body);
@Override
DescribeQueryVariableDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeQueryVariableDetailResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeQueryVariableDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeQueryVariableDetailResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeQueryVariableDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeQueryVariableDetailResponse build() {
return new DescribeQueryVariableDetailResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariableDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariableDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeQueryVariableDetailResponseBody</p>
*/
public class DescribeQueryVariableDetailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeQueryVariableDetailResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQueryVariableDetailResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeQueryVariableDetailResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeQueryVariableDetailResponseBody build() {
return new DescribeQueryVariableDetailResponseBody(this);
}
}
/**
*
* {@link DescribeQueryVariableDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeQueryVariableDetailResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("dataSourceCode")
private Long dataSourceCode;
@com.aliyun.core.annotation.NameInMap("dataSourceName")
private String dataSourceName;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("expression")
private String expression;
@com.aliyun.core.annotation.NameInMap("expressionTitle")
private String expressionTitle;
@com.aliyun.core.annotation.NameInMap("expressionVariable")
private String expressionVariable;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("outlier")
private String outlier;
@com.aliyun.core.annotation.NameInMap("outputs")
private String outputs;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
private ResultObject(Builder builder) {
this.dataSourceCode = builder.dataSourceCode;
this.dataSourceName = builder.dataSourceName;
this.description = builder.description;
this.eventCode = builder.eventCode;
this.expression = builder.expression;
this.expressionTitle = builder.expressionTitle;
this.expressionVariable = builder.expressionVariable;
this.id = builder.id;
this.outlier = builder.outlier;
this.outputs = builder.outputs;
this.title = builder.title;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return dataSourceCode
*/
public Long getDataSourceCode() {
return this.dataSourceCode;
}
/**
* @return dataSourceName
*/
public String getDataSourceName() {
return this.dataSourceName;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return expression
*/
public String getExpression() {
return this.expression;
}
/**
* @return expressionTitle
*/
public String getExpressionTitle() {
return this.expressionTitle;
}
/**
* @return expressionVariable
*/
public String getExpressionVariable() {
return this.expressionVariable;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return outlier
*/
public String getOutlier() {
return this.outlier;
}
/**
* @return outputs
*/
public String getOutputs() {
return this.outputs;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
public static final class Builder {
private Long dataSourceCode;
private String dataSourceName;
private String description;
private String eventCode;
private String expression;
private String expressionTitle;
private String expressionVariable;
private Long id;
private String outlier;
private String outputs;
private String title;
private Builder() {
}
private Builder(ResultObject model) {
this.dataSourceCode = model.dataSourceCode;
this.dataSourceName = model.dataSourceName;
this.description = model.description;
this.eventCode = model.eventCode;
this.expression = model.expression;
this.expressionTitle = model.expressionTitle;
this.expressionVariable = model.expressionVariable;
this.id = model.id;
this.outlier = model.outlier;
this.outputs = model.outputs;
this.title = model.title;
}
/**
* <p>Data source code.</p>
*
* <strong>example:</strong>
* <p>ds_vcaoii1697</p>
*/
public Builder dataSourceCode(Long dataSourceCode) {
this.dataSourceCode = dataSourceCode;
return this;
}
/**
* <p>Data source name</p>
*
* <strong>example:</strong>
* <p>名称数据源</p>
*/
public Builder dataSourceName(String dataSourceName) {
this.dataSourceName = dataSourceName;
return this;
}
/**
* <p>Description.</p>
*
* <strong>example:</strong>
* <p>变量描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_aszbjb7236</p>
*/
public Builder eventCode(String eventCode) {
this.eventCode = eventCode;
return this;
}
/**
* <p>Expression.</p>
*
* <strong>example:</strong>
* <p>SELECT AVG( $source )\nFROM ds_vcaoii1697 \nWHERE $age > 0</p>
*/
public Builder expression(String expression) {
this.expression = expression;
return this;
}
/**
* <p>Expression title.</p>
*
* <strong>example:</strong>
* <p>SELECT AVG( $source )\nFROM testCase\nWHERE $age > 0</p>
*/
public Builder expressionTitle(String expressionTitle) {
this.expressionTitle = expressionTitle;
return this;
}
/**
* <p>Expression variable.</p>
*
* <strong>example:</strong>
* <p>[96426]</p>
*/
public Builder expressionVariable(String expressionVariable) {
this.expressionVariable = expressionVariable;
return this;
}
/**
* <p>Variable ID</p>
*
* <strong>example:</strong>
* <p>355</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Outlier</p>
*
* <strong>example:</strong>
* <p>-1</p>
*/
public Builder outlier(String outlier) {
this.outlier = outlier;
return this;
}
/**
* <p>Output results.</p>
*
* <strong>example:</strong>
* <p>DOUBLE</p>
*/
public Builder outputs(String outputs) {
this.outputs = outputs;
return this;
}
/**
* <p>Title.</p>
*
* <strong>example:</strong>
* <p>自定义查询变量标题</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariablePageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariablePageListRequest} extends {@link RequestModel}
*
* <p>DescribeQueryVariablePageListRequest</p>
*/
public class DescribeQueryVariablePageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("dataSourceCode")
private String dataSourceCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeQueryVariablePageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.dataSourceCode = builder.dataSourceCode;
this.eventCode = builder.eventCode;
this.name = builder.name;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQueryVariablePageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return dataSourceCode
*/
public String getDataSourceCode() {
return this.dataSourceCode;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeQueryVariablePageListRequest, Builder> {
private String lang;
private Long currentPage;
private String dataSourceCode;
private String eventCode;
private String name;
private Long pageSize;
private String regId;
private Builder() {
super();
}
private Builder(DescribeQueryVariablePageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.dataSourceCode = request.dataSourceCode;
this.eventCode = request.eventCode;
this.name = request.name;
this.pageSize = request.pageSize;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Data source code</p>
*
* <strong>example:</strong>
* <p>ds_vcaoii1697</p>
*/
public Builder dataSourceCode(String dataSourceCode) {
this.putQueryParameter("dataSourceCode", dataSourceCode);
this.dataSourceCode = dataSourceCode;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_ahpayh4121</p>
*/
public Builder eventCode(String eventCode) {
this.putQueryParameter("eventCode", eventCode);
this.eventCode = eventCode;
return this;
}
/**
* <p>Query variable name</p>
*
* <strong>example:</strong>
* <p>名称</p>
*/
public Builder name(String name) {
this.putQueryParameter("name", name);
this.name = name;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeQueryVariablePageListRequest build() {
return new DescribeQueryVariablePageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariablePageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariablePageListResponse} extends {@link TeaModel}
*
* <p>DescribeQueryVariablePageListResponse</p>
*/
public class DescribeQueryVariablePageListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeQueryVariablePageListResponseBody body;
private DescribeQueryVariablePageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeQueryVariablePageListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeQueryVariablePageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeQueryVariablePageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeQueryVariablePageListResponseBody body);
@Override
DescribeQueryVariablePageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeQueryVariablePageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeQueryVariablePageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeQueryVariablePageListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeQueryVariablePageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeQueryVariablePageListResponse build() {
return new DescribeQueryVariablePageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeQueryVariablePageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeQueryVariablePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeQueryVariablePageListResponseBody</p>
*/
public class DescribeQueryVariablePageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Long currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Long pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Long totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Long totalPage;
private DescribeQueryVariablePageListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQueryVariablePageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Long getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Long getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Long getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Long currentPage;
private Long pageSize;
private java.util.List<ResultObject> resultObject;
private Long totalItem;
private Long totalPage;
private Builder() {
}
private Builder(DescribeQueryVariablePageListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Pagination parameter, current page.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, default value is 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total items</p>
*
* <strong>example:</strong>
* <p>6</p>
*/
public Builder totalItem(Long totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total pages</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Long totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeQueryVariablePageListResponseBody build() {
return new DescribeQueryVariablePageListResponseBody(this);
}
}
/**
*
* {@link DescribeQueryVariablePageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeQueryVariablePageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("dataSourceCode")
private Long dataSourceCode;
@com.aliyun.core.annotation.NameInMap("dataSourceName")
private String dataSourceName;
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("fieldType")
private String fieldType;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("total")
private Long total;
@com.aliyun.core.annotation.NameInMap("version")
private Long version;
private ResultObject(Builder builder) {
this.dataSourceCode = builder.dataSourceCode;
this.dataSourceName = builder.dataSourceName;
this.description = builder.description;
this.eventName = builder.eventName;
this.fieldType = builder.fieldType;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.name = builder.name;
this.status = builder.status;
this.total = builder.total;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return dataSourceCode
*/
public Long getDataSourceCode() {
return this.dataSourceCode;
}
/**
* @return dataSourceName
*/
public String getDataSourceName() {
return this.dataSourceName;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return fieldType
*/
public String getFieldType() {
return this.fieldType;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return total
*/
public Long getTotal() {
return this.total;
}
/**
* @return version
*/
public Long getVersion() {
return this.version;
}
public static final class Builder {
private Long dataSourceCode;
private String dataSourceName;
private String description;
private String eventName;
private String fieldType;
private Long gmtCreate;
private Long gmtModified;
private Long id;
private String name;
private String status;
private Long total;
private Long version;
private Builder() {
}
private Builder(ResultObject model) {
this.dataSourceCode = model.dataSourceCode;
this.dataSourceName = model.dataSourceName;
this.description = model.description;
this.eventName = model.eventName;
this.fieldType = model.fieldType;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.id = model.id;
this.name = model.name;
this.status = model.status;
this.total = model.total;
this.version = model.version;
}
/**
* <p>Data source code.</p>
*
* <strong>example:</strong>
* <p>ds_vcaoii1697</p>
*/
public Builder dataSourceCode(Long dataSourceCode) {
this.dataSourceCode = dataSourceCode;
return this;
}
/**
* <p>Data source name.</p>
*
* <strong>example:</strong>
* <p>姓名数据源</p>
*/
public Builder dataSourceName(String dataSourceName) {
this.dataSourceName = dataSourceName;
return this;
}
/**
* <p>Description information.</p>
*
* <strong>example:</strong>
* <p>变量描述</p>
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册风险</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* <p>Return value type</p>
*
* <strong>example:</strong>
* <p>STRING</p>
*/
public Builder fieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Modification time</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Query variable primary key ID</p>
*
* <strong>example:</strong>
* <p>497</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Query variable name</p>
*
* <strong>example:</strong>
* <p>查询变量名称</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>ENABLE</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>Total count</p>
*
* <strong>example:</strong>
* <p>24</p>
*/
public Builder total(Long total) {
this.total = total;
return this;
}
/**
* <p>Version number.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder version(Long version) {
this.version = version;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendSceneVariablesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendSceneVariablesRequest} extends {@link RequestModel}
*
* <p>DescribeRecommendSceneVariablesRequest</p>
*/
public class DescribeRecommendSceneVariablesRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("sampleId")
@com.aliyun.core.annotation.Validation(required = true)
private Long sampleId;
private DescribeRecommendSceneVariablesRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.sampleId = builder.sampleId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendSceneVariablesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return sampleId
*/
public Long getSampleId() {
return this.sampleId;
}
public static final class Builder extends Request.Builder<DescribeRecommendSceneVariablesRequest, Builder> {
private String lang;
private String regId;
private Long sampleId;
private Builder() {
super();
}
private Builder(DescribeRecommendSceneVariablesRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.sampleId = request.sampleId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region Code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Sample ID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>5467</p>
*/
public Builder sampleId(Long sampleId) {
this.putQueryParameter("sampleId", sampleId);
this.sampleId = sampleId;
return this;
}
@Override
public DescribeRecommendSceneVariablesRequest build() {
return new DescribeRecommendSceneVariablesRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendSceneVariablesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendSceneVariablesResponse} extends {@link TeaModel}
*
* <p>DescribeRecommendSceneVariablesResponse</p>
*/
public class DescribeRecommendSceneVariablesResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRecommendSceneVariablesResponseBody body;
private DescribeRecommendSceneVariablesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRecommendSceneVariablesResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRecommendSceneVariablesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRecommendSceneVariablesResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRecommendSceneVariablesResponseBody body);
@Override
DescribeRecommendSceneVariablesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRecommendSceneVariablesResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRecommendSceneVariablesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRecommendSceneVariablesResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRecommendSceneVariablesResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRecommendSceneVariablesResponse build() {
return new DescribeRecommendSceneVariablesResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendSceneVariablesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendSceneVariablesResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendSceneVariablesResponseBody</p>
*/
public class DescribeRecommendSceneVariablesResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeRecommendSceneVariablesResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendSceneVariablesResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribeRecommendSceneVariablesResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return Object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRecommendSceneVariablesResponseBody build() {
return new DescribeRecommendSceneVariablesResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskDetailRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskDetailRequest} extends {@link RequestModel}
*
* <p>DescribeRecommendTaskDetailRequest</p>
*/
public class DescribeRecommendTaskDetailRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("taskId")
private Long taskId;
private DescribeRecommendTaskDetailRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendTaskDetailRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
public static final class Builder extends Request.Builder<DescribeRecommendTaskDetailRequest, Builder> {
private String lang;
private String regId;
private Long taskId;
private Builder() {
super();
}
private Builder(DescribeRecommendTaskDetailRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.taskId = request.taskId;
}
/**
* <p>Sets the language type for requests and responses, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Task ID.</p>
*
* <strong>example:</strong>
* <p>887</p>
*/
public Builder taskId(Long taskId) {
this.putQueryParameter("taskId", taskId);
this.taskId = taskId;
return this;
}
@Override
public DescribeRecommendTaskDetailRequest build() {
return new DescribeRecommendTaskDetailRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskDetailResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskDetailResponse} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponse</p>
*/
public class DescribeRecommendTaskDetailResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRecommendTaskDetailResponseBody body;
private DescribeRecommendTaskDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRecommendTaskDetailResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRecommendTaskDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRecommendTaskDetailResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRecommendTaskDetailResponseBody body);
@Override
DescribeRecommendTaskDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRecommendTaskDetailResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRecommendTaskDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRecommendTaskDetailResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRecommendTaskDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRecommendTaskDetailResponse build() {
return new DescribeRecommendTaskDetailResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponseBody</p>
*/
public class DescribeRecommendTaskDetailResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeRecommendTaskDetailResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendTaskDetailResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeRecommendTaskDetailResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return result</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRecommendTaskDetailResponseBody build() {
return new DescribeRecommendTaskDetailResponseBody(this);
}
}
/**
*
* {@link DescribeRecommendTaskDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponseBody</p>
*/
public static class RecommendRules extends TeaModel {
@com.aliyun.core.annotation.NameInMap("left")
private String left;
@com.aliyun.core.annotation.NameInMap("operator")
private String operator;
@com.aliyun.core.annotation.NameInMap("right")
private String right;
private RecommendRules(Builder builder) {
this.left = builder.left;
this.operator = builder.operator;
this.right = builder.right;
}
public static Builder builder() {
return new Builder();
}
public static RecommendRules create() {
return builder().build();
}
/**
* @return left
*/
public String getLeft() {
return this.left;
}
/**
* @return operator
*/
public String getOperator() {
return this.operator;
}
/**
* @return right
*/
public String getRight() {
return this.right;
}
public static final class Builder {
private String left;
private String operator;
private String right;
private Builder() {
}
private Builder(RecommendRules model) {
this.left = model.left;
this.operator = model.operator;
this.right = model.right;
}
/**
* <p>Left variable</p>
*
* <strong>example:</strong>
* <p>age</p>
*/
public Builder left(String left) {
this.left = left;
return this;
}
/**
* <p>Operator</p>
*
* <strong>example:</strong>
* <p>equals</p>
*/
public Builder operator(String operator) {
this.operator = operator;
return this;
}
/**
* <p>Right variable</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
public Builder right(String right) {
this.right = right;
return this;
}
public RecommendRules build() {
return new RecommendRules(this);
}
}
}
/**
*
* {@link DescribeRecommendTaskDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponseBody</p>
*/
public static class RecommendRuleDTOs extends TeaModel {
@com.aliyun.core.annotation.NameInMap("computeExpression")
private String computeExpression;
@com.aliyun.core.annotation.NameInMap("hitSample")
private Long hitSample;
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("notHitSample")
private Long notHitSample;
@com.aliyun.core.annotation.NameInMap("recommendRules")
private java.util.List<RecommendRules> recommendRules;
@com.aliyun.core.annotation.NameInMap("ruleId")
private String ruleId;
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
@com.aliyun.core.annotation.NameInMap("velocities")
private String velocities;
private RecommendRuleDTOs(Builder builder) {
this.computeExpression = builder.computeExpression;
this.hitSample = builder.hitSample;
this.id = builder.id;
this.notHitSample = builder.notHitSample;
this.recommendRules = builder.recommendRules;
this.ruleId = builder.ruleId;
this.ruleName = builder.ruleName;
this.status = builder.status;
this.velocities = builder.velocities;
}
public static Builder builder() {
return new Builder();
}
public static RecommendRuleDTOs create() {
return builder().build();
}
/**
* @return computeExpression
*/
public String getComputeExpression() {
return this.computeExpression;
}
/**
* @return hitSample
*/
public Long getHitSample() {
return this.hitSample;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return notHitSample
*/
public Long getNotHitSample() {
return this.notHitSample;
}
/**
* @return recommendRules
*/
public java.util.List<RecommendRules> getRecommendRules() {
return this.recommendRules;
}
/**
* @return ruleId
*/
public String getRuleId() {
return this.ruleId;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return velocities
*/
public String getVelocities() {
return this.velocities;
}
public static final class Builder {
private String computeExpression;
private Long hitSample;
private Long id;
private Long notHitSample;
private java.util.List<RecommendRules> recommendRules;
private String ruleId;
private String ruleName;
private String status;
private String velocities;
private Builder() {
}
private Builder(RecommendRuleDTOs model) {
this.computeExpression = model.computeExpression;
this.hitSample = model.hitSample;
this.id = model.id;
this.notHitSample = model.notHitSample;
this.recommendRules = model.recommendRules;
this.ruleId = model.ruleId;
this.ruleName = model.ruleName;
this.status = model.status;
this.velocities = model.velocities;
}
/**
* <p>Calculation path</p>
*
* <strong>example:</strong>
* <p>1&2</p>
*/
public Builder computeExpression(String computeExpression) {
this.computeExpression = computeExpression;
return this;
}
/**
* <p>Number of hit samples</p>
*
* <strong>example:</strong>
* <p>99</p>
*/
public Builder hitSample(Long hitSample) {
this.hitSample = hitSample;
return this;
}
/**
* <p>Primary key ID of the rule</p>
*
* <strong>example:</strong>
* <p>30</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Number of unhit samples</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder notHitSample(Long notHitSample) {
this.notHitSample = notHitSample;
return this;
}
/**
* <p>List of candidate rules</p>
*/
public Builder recommendRules(java.util.List<RecommendRules> recommendRules) {
this.recommendRules = recommendRules;
return this;
}
/**
* <p>Strategy ID</p>
*
* <strong>example:</strong>
* <p>102224</p>
*/
public Builder ruleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* <p>Rule name</p>
*
* <strong>example:</strong>
* <p>营销风险识别评分_高风险_拒绝_副本</p>
*/
public Builder ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* <p>Status</p>
*
* <strong>example:</strong>
* <p>NO_RULE</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* <p>List of indicators in JSON string format</p>
*
* <strong>example:</strong>
* <p>[{"key":"dxkkLw8fe18","value":"2"}]</p>
*/
public Builder velocities(String velocities) {
this.velocities = velocities;
return this;
}
public RecommendRuleDTOs build() {
return new RecommendRuleDTOs(this);
}
}
}
/**
*
* {@link DescribeRecommendTaskDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponseBody</p>
*/
public static class RecommendVariableDTOs extends TeaModel {
@com.aliyun.core.annotation.NameInMap("id")
private Long id;
@com.aliyun.core.annotation.NameInMap("title")
private String title;
private RecommendVariableDTOs(Builder builder) {
this.id = builder.id;
this.title = builder.title;
}
public static Builder builder() {
return new Builder();
}
public static RecommendVariableDTOs create() {
return builder().build();
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
public static final class Builder {
private Long id;
private String title;
private Builder() {
}
private Builder(RecommendVariableDTOs model) {
this.id = model.id;
this.title = model.title;
}
/**
* <p>Primary key ID</p>
*
* <strong>example:</strong>
* <p>234</p>
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* <p>Title</p>
*
* <strong>example:</strong>
* <p>手机号</p>
*/
public Builder title(String title) {
this.title = title;
return this;
}
public RecommendVariableDTOs build() {
return new RecommendVariableDTOs(this);
}
}
}
/**
*
* {@link DescribeRecommendTaskDetailResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskDetailResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("expectVelocities")
private java.util.List<String> expectVelocities;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("normalSize")
private Long normalSize;
@com.aliyun.core.annotation.NameInMap("recommendRuleDTOs")
private java.util.List<RecommendRuleDTOs> recommendRuleDTOs;
@com.aliyun.core.annotation.NameInMap("recommendVariableDTOs")
private java.util.List<RecommendVariableDTOs> recommendVariableDTOs;
@com.aliyun.core.annotation.NameInMap("riskSize")
private Long riskSize;
@com.aliyun.core.annotation.NameInMap("sampleName")
private String sampleName;
@com.aliyun.core.annotation.NameInMap("sampleScene")
private String sampleScene;
@com.aliyun.core.annotation.NameInMap("sampleSceneName")
private String sampleSceneName;
@com.aliyun.core.annotation.NameInMap("taskId")
private Long taskId;
@com.aliyun.core.annotation.NameInMap("taskName")
private String taskName;
@com.aliyun.core.annotation.NameInMap("taskStatus")
private String taskStatus;
private ResultObject(Builder builder) {
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.expectVelocities = builder.expectVelocities;
this.gmtCreate = builder.gmtCreate;
this.normalSize = builder.normalSize;
this.recommendRuleDTOs = builder.recommendRuleDTOs;
this.recommendVariableDTOs = builder.recommendVariableDTOs;
this.riskSize = builder.riskSize;
this.sampleName = builder.sampleName;
this.sampleScene = builder.sampleScene;
this.sampleSceneName = builder.sampleSceneName;
this.taskId = builder.taskId;
this.taskName = builder.taskName;
this.taskStatus = builder.taskStatus;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return expectVelocities
*/
public java.util.List<String> getExpectVelocities() {
return this.expectVelocities;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return normalSize
*/
public Long getNormalSize() {
return this.normalSize;
}
/**
* @return recommendRuleDTOs
*/
public java.util.List<RecommendRuleDTOs> getRecommendRuleDTOs() {
return this.recommendRuleDTOs;
}
/**
* @return recommendVariableDTOs
*/
public java.util.List<RecommendVariableDTOs> getRecommendVariableDTOs() {
return this.recommendVariableDTOs;
}
/**
* @return riskSize
*/
public Long getRiskSize() {
return this.riskSize;
}
/**
* @return sampleName
*/
public String getSampleName() {
return this.sampleName;
}
/**
* @return sampleScene
*/
public String getSampleScene() {
return this.sampleScene;
}
/**
* @return sampleSceneName
*/
public String getSampleSceneName() {
return this.sampleSceneName;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
/**
* @return taskName
*/
public String getTaskName() {
return this.taskName;
}
/**
* @return taskStatus
*/
public String getTaskStatus() {
return this.taskStatus;
}
public static final class Builder {
private String eventCode;
private String eventName;
private java.util.List<String> expectVelocities;
private Long gmtCreate;
private Long normalSize;
private java.util.List<RecommendRuleDTOs> recommendRuleDTOs;
private java.util.List<RecommendVariableDTOs> recommendVariableDTOs;
private Long riskSize;
private String sampleName;
private String sampleScene;
private String sampleSceneName;
private Long taskId;
private String taskName;
private String taskStatus;
private Builder() {
}
private Builder(ResultObject model) {
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.expectVelocities = model.expectVelocities;
this.gmtCreate = model.gmtCreate;
this.normalSize = model.normalSize;
this.recommendRuleDTOs = model.recommendRuleDTOs;
this.recommendVariableDTOs = model.recommendVariableDTOs;
this.riskSize = model.riskSize;
this.sampleName = model.sampleName;
this.sampleScene = model.sampleScene;
this.sampleSceneName = model.sampleSceneName;
this.taskId = model.taskId;
this.taskName = model.taskName;
this.taskStatus = model.taskStatus;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_aszbjb7236</p>
*/
public Builder eventCode(String eventCode) {
this.eventCode = eventCode;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册风险</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* <p>Comparison indicators</p>
*/
public Builder expectVelocities(java.util.List<String> expectVelocities) {
this.expectVelocities = expectVelocities;
return this;
}
/**
* <p>Creation time</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Number of normal samples</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder normalSize(Long normalSize) {
this.normalSize = normalSize;
return this;
}
/**
* <p>Recommended strategy list</p>
*/
public Builder recommendRuleDTOs(java.util.List<RecommendRuleDTOs> recommendRuleDTOs) {
this.recommendRuleDTOs = recommendRuleDTOs;
return this;
}
/**
* <p>Selected variable list</p>
*/
public Builder recommendVariableDTOs(java.util.List<RecommendVariableDTOs> recommendVariableDTOs) {
this.recommendVariableDTOs = recommendVariableDTOs;
return this;
}
/**
* <p>Number of risk samples</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder riskSize(Long riskSize) {
this.riskSize = riskSize;
return this;
}
/**
* <p>Sample name</p>
*
* <strong>example:</strong>
* <p>白样本</p>
*/
public Builder sampleName(String sampleName) {
this.sampleName = sampleName;
return this;
}
/**
* <p>Sample scenario</p>
*
* <strong>example:</strong>
* <p>account_abuse_detection</p>
*/
public Builder sampleScene(String sampleScene) {
this.sampleScene = sampleScene;
return this;
}
/**
* <p>Sample scenario name</p>
*
* <strong>example:</strong>
* <p>防虚假账号</p>
*/
public Builder sampleSceneName(String sampleSceneName) {
this.sampleSceneName = sampleSceneName;
return this;
}
/**
* <p>Task ID</p>
*
* <strong>example:</strong>
* <p>887</p>
*/
public Builder taskId(Long taskId) {
this.taskId = taskId;
return this;
}
/**
* <p>Task name</p>
*
* <strong>example:</strong>
* <p>策略推荐任务</p>
*/
public Builder taskName(String taskName) {
this.taskName = taskName;
return this;
}
/**
* <p>Task status.</p>
*
* <strong>example:</strong>
* <p>CREATE</p>
*/
public Builder taskStatus(String taskStatus) {
this.taskStatus = taskStatus;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskPageListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskPageListRequest} extends {@link RequestModel}
*
* <p>DescribeRecommendTaskPageListRequest</p>
*/
public class DescribeRecommendTaskPageListRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("currentPage")
private String currentPage;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("pageSize")
private String pageSize;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("taskName")
private String taskName;
private DescribeRecommendTaskPageListRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.regId = builder.regId;
this.taskName = builder.taskName;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendTaskPageListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return currentPage
*/
public String getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return taskName
*/
public String getTaskName() {
return this.taskName;
}
public static final class Builder extends Request.Builder<DescribeRecommendTaskPageListRequest, Builder> {
private String lang;
private String currentPage;
private String pageSize;
private String regId;
private String taskName;
private Builder() {
super();
}
private Builder(DescribeRecommendTaskPageListRequest request) {
super(request);
this.lang = request.lang;
this.currentPage = request.currentPage;
this.pageSize = request.pageSize;
this.regId = request.regId;
this.taskName = request.taskName;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Current page number</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(String currentPage) {
this.putQueryParameter("currentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(String pageSize) {
this.putQueryParameter("pageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Task name</p>
*
* <strong>example:</strong>
* <p>策略推荐任务</p>
*/
public Builder taskName(String taskName) {
this.putQueryParameter("taskName", taskName);
this.taskName = taskName;
return this;
}
@Override
public DescribeRecommendTaskPageListRequest build() {
return new DescribeRecommendTaskPageListRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskPageListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskPageListResponse} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskPageListResponse</p>
*/
public class DescribeRecommendTaskPageListResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRecommendTaskPageListResponseBody body;
private DescribeRecommendTaskPageListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRecommendTaskPageListResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRecommendTaskPageListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRecommendTaskPageListResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRecommendTaskPageListResponseBody body);
@Override
DescribeRecommendTaskPageListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRecommendTaskPageListResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRecommendTaskPageListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRecommendTaskPageListResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRecommendTaskPageListResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRecommendTaskPageListResponse build() {
return new DescribeRecommendTaskPageListResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendTaskPageListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendTaskPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskPageListResponseBody</p>
*/
public class DescribeRecommendTaskPageListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("currentPage")
private Integer currentPage;
@com.aliyun.core.annotation.NameInMap("pageSize")
private Integer pageSize;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
@com.aliyun.core.annotation.NameInMap("totalPage")
private Integer totalPage;
private DescribeRecommendTaskPageListResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.resultObject = builder.resultObject;
this.totalItem = builder.totalItem;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendTaskPageListResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String requestId;
private Integer currentPage;
private Integer pageSize;
private java.util.List<ResultObject> resultObject;
private Integer totalItem;
private Integer totalPage;
private Builder() {
}
private Builder(DescribeRecommendTaskPageListResponseBody model) {
this.requestId = model.requestId;
this.currentPage = model.currentPage;
this.pageSize = model.pageSize;
this.resultObject = model.resultObject;
this.totalItem = model.totalItem;
this.totalPage = model.totalPage;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Current page number</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* <p>Page size, with a default value of 10</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>3</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
/**
* <p>Total number of pages.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public DescribeRecommendTaskPageListResponseBody build() {
return new DescribeRecommendTaskPageListResponseBody(this);
}
}
/**
*
* {@link DescribeRecommendTaskPageListResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendTaskPageListResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("expectVelocities")
private java.util.List<String> expectVelocities;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("normalCount")
private Long normalCount;
@com.aliyun.core.annotation.NameInMap("normalSize")
private Long normalSize;
@com.aliyun.core.annotation.NameInMap("riskCount")
private Long riskCount;
@com.aliyun.core.annotation.NameInMap("riskSize")
private Long riskSize;
@com.aliyun.core.annotation.NameInMap("sampleName")
private String sampleName;
@com.aliyun.core.annotation.NameInMap("sampleScene")
private String sampleScene;
@com.aliyun.core.annotation.NameInMap("taskId")
private Long taskId;
@com.aliyun.core.annotation.NameInMap("taskName")
private String taskName;
@com.aliyun.core.annotation.NameInMap("taskStatus")
private String taskStatus;
private ResultObject(Builder builder) {
this.expectVelocities = builder.expectVelocities;
this.gmtCreate = builder.gmtCreate;
this.normalCount = builder.normalCount;
this.normalSize = builder.normalSize;
this.riskCount = builder.riskCount;
this.riskSize = builder.riskSize;
this.sampleName = builder.sampleName;
this.sampleScene = builder.sampleScene;
this.taskId = builder.taskId;
this.taskName = builder.taskName;
this.taskStatus = builder.taskStatus;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return expectVelocities
*/
public java.util.List<String> getExpectVelocities() {
return this.expectVelocities;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return normalCount
*/
public Long getNormalCount() {
return this.normalCount;
}
/**
* @return normalSize
*/
public Long getNormalSize() {
return this.normalSize;
}
/**
* @return riskCount
*/
public Long getRiskCount() {
return this.riskCount;
}
/**
* @return riskSize
*/
public Long getRiskSize() {
return this.riskSize;
}
/**
* @return sampleName
*/
public String getSampleName() {
return this.sampleName;
}
/**
* @return sampleScene
*/
public String getSampleScene() {
return this.sampleScene;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
/**
* @return taskName
*/
public String getTaskName() {
return this.taskName;
}
/**
* @return taskStatus
*/
public String getTaskStatus() {
return this.taskStatus;
}
public static final class Builder {
private java.util.List<String> expectVelocities;
private Long gmtCreate;
private Long normalCount;
private Long normalSize;
private Long riskCount;
private Long riskSize;
private String sampleName;
private String sampleScene;
private Long taskId;
private String taskName;
private String taskStatus;
private Builder() {
}
private Builder(ResultObject model) {
this.expectVelocities = model.expectVelocities;
this.gmtCreate = model.gmtCreate;
this.normalCount = model.normalCount;
this.normalSize = model.normalSize;
this.riskCount = model.riskCount;
this.riskSize = model.riskSize;
this.sampleName = model.sampleName;
this.sampleScene = model.sampleScene;
this.taskId = model.taskId;
this.taskName = model.taskName;
this.taskStatus = model.taskStatus;
}
/**
* <p>Impact indicators</p>
*/
public Builder expectVelocities(java.util.List<String> expectVelocities) {
this.expectVelocities = expectVelocities;
return this;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Number of samples</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder normalCount(Long normalCount) {
this.normalCount = normalCount;
return this;
}
/**
* <p>Number of normal samples</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder normalSize(Long normalSize) {
this.normalSize = normalSize;
return this;
}
/**
* <p>Number of records displayed on the current page.</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder riskCount(Long riskCount) {
this.riskCount = riskCount;
return this;
}
/**
* <p>Number of risk samples</p>
*
* <strong>example:</strong>
* <p>5</p>
*/
public Builder riskSize(Long riskSize) {
this.riskSize = riskSize;
return this;
}
/**
* <p>Sample name</p>
*
* <strong>example:</strong>
* <p>白样本</p>
*/
public Builder sampleName(String sampleName) {
this.sampleName = sampleName;
return this;
}
/**
* <p>Sample scenario</p>
*
* <strong>example:</strong>
* <p>account_abuse_detection</p>
*/
public Builder sampleScene(String sampleScene) {
this.sampleScene = sampleScene;
return this;
}
/**
* <p>Task ID.</p>
*
* <strong>example:</strong>
* <p>240c93ddffa74e38be3a00375eb3041d</p>
*/
public Builder taskId(Long taskId) {
this.taskId = taskId;
return this;
}
/**
* <p>Task name.</p>
*
* <strong>example:</strong>
* <p>策略推荐任务</p>
*/
public Builder taskName(String taskName) {
this.taskName = taskName;
return this;
}
/**
* <p>Task status.</p>
*
* <strong>example:</strong>
* <p>CREATE</p>
*/
public Builder taskStatus(String taskStatus) {
this.taskStatus = taskStatus;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVariablesVelocityRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVariablesVelocityRequest} extends {@link RequestModel}
*
* <p>DescribeRecommendVariablesVelocityRequest</p>
*/
public class DescribeRecommendVariablesVelocityRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("taskId")
@com.aliyun.core.annotation.Validation(required = true)
private Long taskId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("variableIdsStr")
private String variableIdsStr;
private DescribeRecommendVariablesVelocityRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.taskId = builder.taskId;
this.variableIdsStr = builder.variableIdsStr;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendVariablesVelocityRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
/**
* @return variableIdsStr
*/
public String getVariableIdsStr() {
return this.variableIdsStr;
}
public static final class Builder extends Request.Builder<DescribeRecommendVariablesVelocityRequest, Builder> {
private String lang;
private String regId;
private Long taskId;
private String variableIdsStr;
private Builder() {
super();
}
private Builder(DescribeRecommendVariablesVelocityRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.taskId = request.taskId;
this.variableIdsStr = request.variableIdsStr;
}
/**
* <p>Set the language type for request and response, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region Code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Task ID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>6770764</p>
*/
public Builder taskId(Long taskId) {
this.putQueryParameter("taskId", taskId);
this.taskId = taskId;
return this;
}
/**
* <p>Variable IDs</p>
*
* <strong>example:</strong>
* <p>["232","233"]</p>
*/
public Builder variableIdsStr(String variableIdsStr) {
this.putQueryParameter("variableIdsStr", variableIdsStr);
this.variableIdsStr = variableIdsStr;
return this;
}
@Override
public DescribeRecommendVariablesVelocityRequest build() {
return new DescribeRecommendVariablesVelocityRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVariablesVelocityResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVariablesVelocityResponse} extends {@link TeaModel}
*
* <p>DescribeRecommendVariablesVelocityResponse</p>
*/
public class DescribeRecommendVariablesVelocityResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRecommendVariablesVelocityResponseBody body;
private DescribeRecommendVariablesVelocityResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRecommendVariablesVelocityResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRecommendVariablesVelocityResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRecommendVariablesVelocityResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRecommendVariablesVelocityResponseBody body);
@Override
DescribeRecommendVariablesVelocityResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRecommendVariablesVelocityResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRecommendVariablesVelocityResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRecommendVariablesVelocityResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRecommendVariablesVelocityResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRecommendVariablesVelocityResponse build() {
return new DescribeRecommendVariablesVelocityResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVariablesVelocityResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVariablesVelocityResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendVariablesVelocityResponseBody</p>
*/
public class DescribeRecommendVariablesVelocityResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeRecommendVariablesVelocityResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendVariablesVelocityResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribeRecommendVariablesVelocityResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return Object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRecommendVariablesVelocityResponseBody build() {
return new DescribeRecommendVariablesVelocityResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVelocitiesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVelocitiesRequest} extends {@link RequestModel}
*
* <p>DescribeRecommendVelocitiesRequest</p>
*/
public class DescribeRecommendVelocitiesRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private DescribeRecommendVelocitiesRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.code = builder.code;
this.regId = builder.regId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendVelocitiesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<DescribeRecommendVelocitiesRequest, Builder> {
private String lang;
private String code;
private String regId;
private String type;
private Builder() {
super();
}
private Builder(DescribeRecommendVelocitiesRequest request) {
super(request);
this.lang = request.lang;
this.code = request.code;
this.regId = request.regId;
this.type = request.type;
}
/**
* <p>Sets the language type for requests and responses, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Metric code</p>
*
* <strong>example:</strong>
* <p>coupon_abuse_detection</p>
*/
public Builder code(String code) {
this.putQueryParameter("code", code);
this.code = code;
return this;
}
/**
* <p>Region ID</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Metric type</p>
*
* <strong>example:</strong>
* <p>recommend_velocity</p>
*/
public Builder type(String type) {
this.putQueryParameter("type", type);
this.type = type;
return this;
}
@Override
public DescribeRecommendVelocitiesRequest build() {
return new DescribeRecommendVelocitiesRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVelocitiesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVelocitiesResponse} extends {@link TeaModel}
*
* <p>DescribeRecommendVelocitiesResponse</p>
*/
public class DescribeRecommendVelocitiesResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRecommendVelocitiesResponseBody body;
private DescribeRecommendVelocitiesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRecommendVelocitiesResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRecommendVelocitiesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRecommendVelocitiesResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRecommendVelocitiesResponseBody body);
@Override
DescribeRecommendVelocitiesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRecommendVelocitiesResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRecommendVelocitiesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRecommendVelocitiesResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRecommendVelocitiesResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRecommendVelocitiesResponse build() {
return new DescribeRecommendVelocitiesResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRecommendVelocitiesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRecommendVelocitiesResponseBody} extends {@link TeaModel}
*
* <p>DescribeRecommendVelocitiesResponseBody</p>
*/
public class DescribeRecommendVelocitiesResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeRecommendVelocitiesResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRecommendVelocitiesResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribeRecommendVelocitiesResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRecommendVelocitiesResponseBody build() {
return new DescribeRecommendVelocitiesResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRegionsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRegionsRequest} extends {@link RequestModel}
*
* <p>DescribeRegionsRequest</p>
*/
public class DescribeRegionsRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeRegionsRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRegionsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRegionsRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRegionsRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Set the language type for requests and responses. The default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRegionsRequest build() {
return new DescribeRegionsRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRegionsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRegionsResponse} extends {@link TeaModel}
*
* <p>DescribeRegionsResponse</p>
*/
public class DescribeRegionsResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRegionsResponseBody body;
private DescribeRegionsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRegionsResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRegionsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRegionsResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRegionsResponseBody body);
@Override
DescribeRegionsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRegionsResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRegionsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRegionsResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRegionsResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRegionsResponse build() {
return new DescribeRegionsResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRegionsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRegionsResponseBody} extends {@link TeaModel}
*
* <p>DescribeRegionsResponseBody</p>
*/
public class DescribeRegionsResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private Boolean resultObject;
private DescribeRegionsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRegionsResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public Boolean getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private Boolean resultObject;
private Builder() {
}
private Builder(DescribeRegionsResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder resultObject(Boolean resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRegionsResponseBody build() {
return new DescribeRegionsResponseBody(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestHitRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestHitRequest} extends {@link RequestModel}
*
* <p>DescribeRequestHitRequest</p>
*/
public class DescribeRequestHitRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("sRequestId")
@com.aliyun.core.annotation.Validation(required = true)
private String sRequestId;
private DescribeRequestHitRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
this.sRequestId = builder.sRequestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRequestHitRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return sRequestId
*/
public String getSRequestId() {
return this.sRequestId;
}
public static final class Builder extends Request.Builder<DescribeRequestHitRequest, Builder> {
private String lang;
private String regId;
private String sRequestId;
private Builder() {
super();
}
private Builder(DescribeRequestHitRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
this.sRequestId = request.sRequestId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Request ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>60C97040-D5D5-4906-9522-B9B413730CAA</p>
*/
public Builder sRequestId(String sRequestId) {
this.putQueryParameter("sRequestId", sRequestId);
this.sRequestId = sRequestId;
return this;
}
@Override
public DescribeRequestHitRequest build() {
return new DescribeRequestHitRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestHitResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestHitResponse} extends {@link TeaModel}
*
* <p>DescribeRequestHitResponse</p>
*/
public class DescribeRequestHitResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRequestHitResponseBody body;
private DescribeRequestHitResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRequestHitResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRequestHitResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRequestHitResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRequestHitResponseBody body);
@Override
DescribeRequestHitResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRequestHitResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRequestHitResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRequestHitResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRequestHitResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRequestHitResponse build() {
return new DescribeRequestHitResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestHitResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestHitResponseBody} extends {@link TeaModel}
*
* <p>DescribeRequestHitResponseBody</p>
*/
public class DescribeRequestHitResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeRequestHitResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRequestHitResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeRequestHitResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRequestHitResponseBody build() {
return new DescribeRequestHitResponseBody(this);
}
}
/**
*
* {@link DescribeRequestHitResponseBody} extends {@link TeaModel}
*
* <p>DescribeRequestHitResponseBody</p>
*/
public static class RuleHitRecords extends TeaModel {
@com.aliyun.core.annotation.NameInMap("cost")
private Integer cost;
@com.aliyun.core.annotation.NameInMap("hitSuccessful")
private Boolean hitSuccessful;
@com.aliyun.core.annotation.NameInMap("isShowDetail")
private Boolean isShowDetail;
@com.aliyun.core.annotation.NameInMap("order")
private Integer order;
@com.aliyun.core.annotation.NameInMap("ruleId")
private String ruleId;
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.NameInMap("ruleSnapshotId")
private String ruleSnapshotId;
@com.aliyun.core.annotation.NameInMap("ruleStatus")
private String ruleStatus;
private RuleHitRecords(Builder builder) {
this.cost = builder.cost;
this.hitSuccessful = builder.hitSuccessful;
this.isShowDetail = builder.isShowDetail;
this.order = builder.order;
this.ruleId = builder.ruleId;
this.ruleName = builder.ruleName;
this.ruleSnapshotId = builder.ruleSnapshotId;
this.ruleStatus = builder.ruleStatus;
}
public static Builder builder() {
return new Builder();
}
public static RuleHitRecords create() {
return builder().build();
}
/**
* @return cost
*/
public Integer getCost() {
return this.cost;
}
/**
* @return hitSuccessful
*/
public Boolean getHitSuccessful() {
return this.hitSuccessful;
}
/**
* @return isShowDetail
*/
public Boolean getIsShowDetail() {
return this.isShowDetail;
}
/**
* @return order
*/
public Integer getOrder() {
return this.order;
}
/**
* @return ruleId
*/
public String getRuleId() {
return this.ruleId;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return ruleSnapshotId
*/
public String getRuleSnapshotId() {
return this.ruleSnapshotId;
}
/**
* @return ruleStatus
*/
public String getRuleStatus() {
return this.ruleStatus;
}
public static final class Builder {
private Integer cost;
private Boolean hitSuccessful;
private Boolean isShowDetail;
private Integer order;
private String ruleId;
private String ruleName;
private String ruleSnapshotId;
private String ruleStatus;
private Builder() {
}
private Builder(RuleHitRecords model) {
this.cost = model.cost;
this.hitSuccessful = model.hitSuccessful;
this.isShowDetail = model.isShowDetail;
this.order = model.order;
this.ruleId = model.ruleId;
this.ruleName = model.ruleName;
this.ruleSnapshotId = model.ruleSnapshotId;
this.ruleStatus = model.ruleStatus;
}
/**
* <p>Duration</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder cost(Integer cost) {
this.cost = cost;
return this;
}
/**
* <p>Whether the rule was hit.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder hitSuccessful(Boolean hitSuccessful) {
this.hitSuccessful = hitSuccessful;
return this;
}
/**
* <p>Whether to show details</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder isShowDetail(Boolean isShowDetail) {
this.isShowDetail = isShowDetail;
return this;
}
/**
* <p>Order.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder order(Integer order) {
this.order = order;
return this;
}
/**
* <p>Policy ID</p>
*
* <strong>example:</strong>
* <p>101544</p>
*/
public Builder ruleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* <p>Policy name</p>
*
* <strong>example:</strong>
* <p>注册手机号是11位数字</p>
*/
public Builder ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* <p>Rule snapshot ID</p>
*
* <strong>example:</strong>
* <p>27</p>
*/
public Builder ruleSnapshotId(String ruleSnapshotId) {
this.ruleSnapshotId = ruleSnapshotId;
return this;
}
/**
* <p>Policy status</p>
*
* <strong>example:</strong>
* <p>RUNNING</p>
*/
public Builder ruleStatus(String ruleStatus) {
this.ruleStatus = ruleStatus;
return this;
}
public RuleHitRecords build() {
return new RuleHitRecords(this);
}
}
}
/**
*
* {@link DescribeRequestHitResponseBody} extends {@link TeaModel}
*
* <p>DescribeRequestHitResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("inputs")
private String inputs;
@com.aliyun.core.annotation.NameInMap("outputs")
private String outputs;
@com.aliyun.core.annotation.NameInMap("requestTime")
private Long requestTime;
@com.aliyun.core.annotation.NameInMap("ruleHitRecords")
private java.util.List<RuleHitRecords> ruleHitRecords;
@com.aliyun.core.annotation.NameInMap("sRequestId")
private String sRequestId;
@com.aliyun.core.annotation.NameInMap("totalCost")
private Long totalCost;
private ResultObject(Builder builder) {
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.inputs = builder.inputs;
this.outputs = builder.outputs;
this.requestTime = builder.requestTime;
this.ruleHitRecords = builder.ruleHitRecords;
this.sRequestId = builder.sRequestId;
this.totalCost = builder.totalCost;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return inputs
*/
public String getInputs() {
return this.inputs;
}
/**
* @return outputs
*/
public String getOutputs() {
return this.outputs;
}
/**
* @return requestTime
*/
public Long getRequestTime() {
return this.requestTime;
}
/**
* @return ruleHitRecords
*/
public java.util.List<RuleHitRecords> getRuleHitRecords() {
return this.ruleHitRecords;
}
/**
* @return sRequestId
*/
public String getSRequestId() {
return this.sRequestId;
}
/**
* @return totalCost
*/
public Long getTotalCost() {
return this.totalCost;
}
public static final class Builder {
private String eventCode;
private String eventName;
private String inputs;
private String outputs;
private Long requestTime;
private java.util.List<RuleHitRecords> ruleHitRecords;
private String sRequestId;
private Long totalCost;
private Builder() {
}
private Builder(ResultObject model) {
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.inputs = model.inputs;
this.outputs = model.outputs;
this.requestTime = model.requestTime;
this.ruleHitRecords = model.ruleHitRecords;
this.sRequestId = model.sRequestId;
this.totalCost = model.totalCost;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_aszbjb7236</p>
*/
public Builder eventCode(String eventCode) {
this.eventCode = eventCode;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册风险</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* <p>Input parameters.</p>
*
* <strong>example:</strong>
* <p>{"eventCode":"de_afghcf6411","ip":"196.168.0.1","DEtest222":9007199254740999,"age":20}</p>
*/
public Builder inputs(String inputs) {
this.inputs = inputs;
return this;
}
/**
* <p>Output parameters</p>
*
* <strong>example:</strong>
* <p>{"tags":"rm0102,test_tag,age","score":"30.0","extend":"{\"OUT_V01\":\"Maritime\",\"OUT_V02\":\"Lome\",\"OUT_V03\":\"196.168.0.1_A\"}","finalDecision":"REJECT"}</p>
*/
public Builder outputs(String outputs) {
this.outputs = outputs;
return this;
}
/**
* <p>Timestamp of the request.</p>
*
* <strong>example:</strong>
* <p>1752571330000</p>
*/
public Builder requestTime(Long requestTime) {
this.requestTime = requestTime;
return this;
}
/**
* <p>Details of the executed rules.</p>
*/
public Builder ruleHitRecords(java.util.List<RuleHitRecords> ruleHitRecords) {
this.ruleHitRecords = ruleHitRecords;
return this;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>60C97040-D5D5-4906-9522-B9B413730CAA</p>
*/
public Builder sRequestId(String sRequestId) {
this.sRequestId = sRequestId;
return this;
}
/**
* <p>Total amount of the request</p>
*
* <strong>example:</strong>
* <p>4</p>
*/
public Builder totalCost(Long totalCost) {
this.totalCost = totalCost;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestPeakReportRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestPeakReportRequest} extends {@link RequestModel}
*
* <p>DescribeRequestPeakReportRequest</p>
*/
public class DescribeRequestPeakReportRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeRequestPeakReportRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRequestPeakReportRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRequestPeakReportRequest, Builder> {
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRequestPeakReportRequest request) {
super(request);
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRequestPeakReportRequest build() {
return new DescribeRequestPeakReportRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestPeakReportResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestPeakReportResponse} extends {@link TeaModel}
*
* <p>DescribeRequestPeakReportResponse</p>
*/
public class DescribeRequestPeakReportResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRequestPeakReportResponseBody body;
private DescribeRequestPeakReportResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRequestPeakReportResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRequestPeakReportResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRequestPeakReportResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRequestPeakReportResponseBody body);
@Override
DescribeRequestPeakReportResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRequestPeakReportResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRequestPeakReportResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRequestPeakReportResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRequestPeakReportResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRequestPeakReportResponse build() {
return new DescribeRequestPeakReportResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRequestPeakReportResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRequestPeakReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeRequestPeakReportResponseBody</p>
*/
public class DescribeRequestPeakReportResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeRequestPeakReportResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRequestPeakReportResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private java.util.List<ResultObject> resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeRequestPeakReportResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeRequestPeakReportResponseBody build() {
return new DescribeRequestPeakReportResponseBody(this);
}
}
/**
*
* {@link DescribeRequestPeakReportResponseBody} extends {@link TeaModel}
*
* <p>DescribeRequestPeakReportResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ratio")
private String ratio;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private ResultObject(Builder builder) {
this.ratio = builder.ratio;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return ratio
*/
public String getRatio() {
return this.ratio;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String ratio;
private String value;
private Builder() {
}
private Builder(ResultObject model) {
this.ratio = model.ratio;
this.value = model.value;
}
/**
* <p>Return value</p>
*
* <strong>example:</strong>
* <p>1.0</p>
*/
public Builder ratio(String ratio) {
this.ratio = ratio;
return this;
}
/**
* <p>Return text</p>
*
* <strong>example:</strong>
* <p>1.0 次/秒</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeResultCountRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeResultCountRequest} extends {@link RequestModel}
*
* <p>DescribeResultCountRequest</p>
*/
public class DescribeResultCountRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeResultCountRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeResultCountRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeResultCountRequest, Builder> {
private String lang;
private Long beginTime;
private Long endTime;
private String regId;
private Builder() {
super();
}
private Builder(DescribeResultCountRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Start time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1739841750000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1739843750000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeResultCountRequest build() {
return new DescribeResultCountRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeResultCountResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeResultCountResponse} extends {@link TeaModel}
*
* <p>DescribeResultCountResponse</p>
*/
public class DescribeResultCountResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeResultCountResponseBody body;
private DescribeResultCountResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeResultCountResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeResultCountResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeResultCountResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeResultCountResponseBody body);
@Override
DescribeResultCountResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeResultCountResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeResultCountResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeResultCountResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeResultCountResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeResultCountResponse build() {
return new DescribeResultCountResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeResultCountResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeResultCountResponseBody} extends {@link TeaModel}
*
* <p>DescribeResultCountResponseBody</p>
*/
public class DescribeResultCountResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private java.util.List<ResultObject> resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeResultCountResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeResultCountResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public java.util.List<ResultObject> getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private java.util.List<ResultObject> resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeResultCountResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Return object</p>
*/
public Builder resultObject(java.util.List<ResultObject> resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeResultCountResponseBody build() {
return new DescribeResultCountResponseBody(this);
}
}
/**
*
* {@link DescribeResultCountResponseBody} extends {@link TeaModel}
*
* <p>DescribeResultCountResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("result")
private String result;
@com.aliyun.core.annotation.NameInMap("total")
private String total;
private ResultObject(Builder builder) {
this.result = builder.result;
this.total = builder.total;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return result
*/
public String getResult() {
return this.result;
}
/**
* @return total
*/
public String getTotal() {
return this.total;
}
public static final class Builder {
private String result;
private String total;
private Builder() {
}
private Builder(ResultObject model) {
this.result = model.result;
this.total = model.total;
}
/**
* <p>Execution result</p>
*
* <strong>example:</strong>
* <p>PASS</p>
*/
public Builder result(String result) {
this.result = result;
return this;
}
/**
* <p>Quantity</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder total(String total) {
this.total = total;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskLineChartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskLineChartRequest} extends {@link RequestModel}
*
* <p>DescribeRiskLineChartRequest</p>
*/
public class DescribeRiskLineChartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeRiskLineChartRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.eventCodes = builder.eventCodes;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRiskLineChartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRiskLineChartRequest, Builder> {
private String lang;
private Long beginTime;
private Long endTime;
private String eventCodes;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRiskLineChartRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.eventCodes = request.eventCodes;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Query start time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1739841750000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1748491200000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Event codes, separated by commas (,).</p>
*
* <strong>example:</strong>
* <p>de_afghcf6411,de_awkhwh0314</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRiskLineChartRequest build() {
return new DescribeRiskLineChartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskLineChartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskLineChartResponse} extends {@link TeaModel}
*
* <p>DescribeRiskLineChartResponse</p>
*/
public class DescribeRiskLineChartResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRiskLineChartResponseBody body;
private DescribeRiskLineChartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRiskLineChartResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRiskLineChartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRiskLineChartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRiskLineChartResponseBody body);
@Override
DescribeRiskLineChartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRiskLineChartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRiskLineChartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRiskLineChartResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRiskLineChartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRiskLineChartResponse build() {
return new DescribeRiskLineChartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskLineChartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskLineChartResponseBody</p>
*/
public class DescribeRiskLineChartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeRiskLineChartResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRiskLineChartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeRiskLineChartResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeRiskLineChartResponseBody build() {
return new DescribeRiskLineChartResponseBody(this);
}
}
/**
*
* {@link DescribeRiskLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskLineChartResponseBody</p>
*/
public static class Series extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<String> data;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
private Series(Builder builder) {
this.data = builder.data;
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static Series create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<String> getData() {
return this.data;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder {
private java.util.List<String> data;
private String name;
private Builder() {
}
private Builder(Series model) {
this.data = model.data;
this.name = model.name;
}
/**
* <p>Line chart data</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
/**
* <p>Title of the line segment in the line chart</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
public Series build() {
return new Series(this);
}
}
}
/**
*
* {@link DescribeRiskLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskLineChartResponseBody</p>
*/
public static class Xaxis extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<String> data;
private Xaxis(Builder builder) {
this.data = builder.data;
}
public static Builder builder() {
return new Builder();
}
public static Xaxis create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<String> getData() {
return this.data;
}
public static final class Builder {
private java.util.List<String> data;
private Builder() {
}
private Builder(Xaxis model) {
this.data = model.data;
}
/**
* <p>Returns x-axis data points</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
public Xaxis build() {
return new Xaxis(this);
}
}
}
/**
*
* {@link DescribeRiskLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskLineChartResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("series")
private java.util.List<Series> series;
@com.aliyun.core.annotation.NameInMap("xaxis")
private Xaxis xaxis;
private ResultObject(Builder builder) {
this.series = builder.series;
this.xaxis = builder.xaxis;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return series
*/
public java.util.List<Series> getSeries() {
return this.series;
}
/**
* @return xaxis
*/
public Xaxis getXaxis() {
return this.xaxis;
}
public static final class Builder {
private java.util.List<Series> series;
private Xaxis xaxis;
private Builder() {
}
private Builder(ResultObject model) {
this.series = model.series;
this.xaxis = model.xaxis;
}
/**
* <p>Data list</p>
*/
public Builder series(java.util.List<Series> series) {
this.series = series;
return this;
}
/**
* <p>Details of xaxis node.</p>
*/
public Builder xaxis(Xaxis xaxis) {
this.xaxis = xaxis;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskTagsLineChartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskTagsLineChartRequest} extends {@link RequestModel}
*
* <p>DescribeRiskTagsLineChartRequest</p>
*/
public class DescribeRiskTagsLineChartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("BeginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("EndTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("EventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("RegId")
private String regId;
private DescribeRiskTagsLineChartRequest(Builder builder) {
super(builder);
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.eventCodes = builder.eventCodes;
this.lang = builder.lang;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRiskTagsLineChartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRiskTagsLineChartRequest, Builder> {
private Long beginTime;
private Long endTime;
private String eventCodes;
private String lang;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRiskTagsLineChartRequest request) {
super(request);
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.eventCodes = request.eventCodes;
this.lang = request.lang;
this.regId = request.regId;
}
/**
* <p>Start time of the query, in milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1729563800605</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("BeginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1729563800605</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Event code</p>
*
* <strong>example:</strong>
* <p>de_afghcf6411</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("EventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Sets the language type for the request and response messages. Default value is <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("RegId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRiskTagsLineChartRequest build() {
return new DescribeRiskTagsLineChartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskTagsLineChartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskTagsLineChartResponse} extends {@link TeaModel}
*
* <p>DescribeRiskTagsLineChartResponse</p>
*/
public class DescribeRiskTagsLineChartResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRiskTagsLineChartResponseBody body;
private DescribeRiskTagsLineChartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRiskTagsLineChartResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRiskTagsLineChartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRiskTagsLineChartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRiskTagsLineChartResponseBody body);
@Override
DescribeRiskTagsLineChartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRiskTagsLineChartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRiskTagsLineChartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRiskTagsLineChartResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRiskTagsLineChartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRiskTagsLineChartResponse build() {
return new DescribeRiskTagsLineChartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRiskTagsLineChartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRiskTagsLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskTagsLineChartResponseBody</p>
*/
public class DescribeRiskTagsLineChartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private String code;
@com.aliyun.core.annotation.NameInMap("HttpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("ResultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("Success")
private Boolean success;
private DescribeRiskTagsLineChartResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRiskTagsLineChartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeRiskTagsLineChartResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code. Note: 200 indicates success.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>success</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned result information</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeRiskTagsLineChartResponseBody build() {
return new DescribeRiskTagsLineChartResponseBody(this);
}
}
/**
*
* {@link DescribeRiskTagsLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskTagsLineChartResponseBody</p>
*/
public static class Series extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Data")
private Float data;
@com.aliyun.core.annotation.NameInMap("Name")
private String name;
private Series(Builder builder) {
this.data = builder.data;
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static Series create() {
return builder().build();
}
/**
* @return data
*/
public Float getData() {
return this.data;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder {
private Float data;
private String name;
private Builder() {
}
private Builder(Series model) {
this.data = model.data;
this.name = model.name;
}
/**
* <p>Data</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
public Builder data(Float data) {
this.data = data;
return this;
}
/**
* <p>Name</p>
*
* <strong>example:</strong>
* <p>rm0102</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
public Series build() {
return new Series(this);
}
}
}
/**
*
* {@link DescribeRiskTagsLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskTagsLineChartResponseBody</p>
*/
public static class Xaxis extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Data")
private java.util.List<String> data;
private Xaxis(Builder builder) {
this.data = builder.data;
}
public static Builder builder() {
return new Builder();
}
public static Xaxis create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<String> getData() {
return this.data;
}
public static final class Builder {
private java.util.List<String> data;
private Builder() {
}
private Builder(Xaxis model) {
this.data = model.data;
}
/**
* <p>Data returned by the chart</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
public Xaxis build() {
return new Xaxis(this);
}
}
}
/**
*
* {@link DescribeRiskTagsLineChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRiskTagsLineChartResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Percent")
private java.util.List<Float> percent;
@com.aliyun.core.annotation.NameInMap("Series")
private java.util.List<Series> series;
@com.aliyun.core.annotation.NameInMap("Total")
private java.util.List<Long> total;
@com.aliyun.core.annotation.NameInMap("Xaxis")
private Xaxis xaxis;
private ResultObject(Builder builder) {
this.percent = builder.percent;
this.series = builder.series;
this.total = builder.total;
this.xaxis = builder.xaxis;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return percent
*/
public java.util.List<Float> getPercent() {
return this.percent;
}
/**
* @return series
*/
public java.util.List<Series> getSeries() {
return this.series;
}
/**
* @return total
*/
public java.util.List<Long> getTotal() {
return this.total;
}
/**
* @return xaxis
*/
public Xaxis getXaxis() {
return this.xaxis;
}
public static final class Builder {
private java.util.List<Float> percent;
private java.util.List<Series> series;
private java.util.List<Long> total;
private Xaxis xaxis;
private Builder() {
}
private Builder(ResultObject model) {
this.percent = model.percent;
this.series = model.series;
this.total = model.total;
this.xaxis = model.xaxis;
}
/**
* <p>Call percentage, represented as a decimal</p>
*/
public Builder percent(java.util.List<Float> percent) {
this.percent = percent;
return this;
}
/**
* <p>Chart data</p>
*/
public Builder series(java.util.List<Series> series) {
this.series = series;
return this;
}
/**
* <p>Total number of records.</p>
*/
public Builder total(java.util.List<Long> total) {
this.total = total;
return this;
}
/**
* <p>X-axis data of the chart</p>
*/
public Builder xaxis(Xaxis xaxis) {
this.xaxis = xaxis;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleBarChartRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleBarChartRequest} extends {@link RequestModel}
*
* <p>DescribeRuleBarChartRequest</p>
*/
public class DescribeRuleBarChartRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("beginTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long beginTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("endTime")
@com.aliyun.core.annotation.Validation(required = true)
private Long endTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("eventCodes")
private String eventCodes;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
private DescribeRuleBarChartRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.beginTime = builder.beginTime;
this.endTime = builder.endTime;
this.eventCodes = builder.eventCodes;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleBarChartRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return eventCodes
*/
public String getEventCodes() {
return this.eventCodes;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRuleBarChartRequest, Builder> {
private String lang;
private Long beginTime;
private Long endTime;
private String eventCodes;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRuleBarChartRequest request) {
super(request);
this.lang = request.lang;
this.beginTime = request.beginTime;
this.endTime = request.endTime;
this.eventCodes = request.eventCodes;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Query start time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1739841750000</p>
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("beginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* <p>End time, accurate to milliseconds (ms).</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1750904603000</p>
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("endTime", endTime);
this.endTime = endTime;
return this;
}
/**
* <p>Event codes, separated by commas (,).</p>
*
* <strong>example:</strong>
* <p>account_abuse_pro,account_abuse</p>
*/
public Builder eventCodes(String eventCodes) {
this.putQueryParameter("eventCodes", eventCodes);
this.eventCodes = eventCodes;
return this;
}
/**
* <p>Region code</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRuleBarChartRequest build() {
return new DescribeRuleBarChartRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleBarChartResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleBarChartResponse} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponse</p>
*/
public class DescribeRuleBarChartResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRuleBarChartResponseBody body;
private DescribeRuleBarChartResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRuleBarChartResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRuleBarChartResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRuleBarChartResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRuleBarChartResponseBody body);
@Override
DescribeRuleBarChartResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRuleBarChartResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRuleBarChartResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRuleBarChartResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRuleBarChartResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRuleBarChartResponse build() {
return new DescribeRuleBarChartResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleBarChartResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponseBody</p>
*/
public class DescribeRuleBarChartResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("httpStatusCode")
private String httpStatusCode;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private DescribeRuleBarChartResponseBody(Builder builder) {
this.code = builder.code;
this.httpStatusCode = builder.httpStatusCode;
this.message = builder.message;
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleBarChartResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return httpStatusCode
*/
public String getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String httpStatusCode;
private String message;
private String requestId;
private ResultObject resultObject;
private Boolean success;
private Builder() {
}
private Builder(DescribeRuleBarChartResponseBody model) {
this.code = model.code;
this.httpStatusCode = model.httpStatusCode;
this.message = model.message;
this.requestId = model.requestId;
this.resultObject = model.resultObject;
this.success = model.success;
}
/**
* <p>Status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* <p>HTTP status code.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
/**
* <p>Error message.</p>
*
* <strong>example:</strong>
* <p>The input parameter data is not valid. order_storage_company_num component not found</p>
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>AE7E6105-7DEB-5125-9B24-DCBC139F6CD2</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
/**
* <p>Whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeRuleBarChartResponseBody build() {
return new DescribeRuleBarChartResponseBody(this);
}
}
/**
*
* {@link DescribeRuleBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponseBody</p>
*/
public static class Data extends TeaModel {
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("num")
private Long num;
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.NameInMap("status")
private String status;
private Data(Builder builder) {
this.eventName = builder.eventName;
this.num = builder.num;
this.ruleName = builder.ruleName;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return num
*/
public Long getNum() {
return this.num;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder {
private String eventName;
private Long num;
private String ruleName;
private String status;
private Builder() {
}
private Builder(Data model) {
this.eventName = model.eventName;
this.num = model.num;
this.ruleName = model.ruleName;
this.status = model.status;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>营销事件</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* <p>Number.</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder num(Long num) {
this.num = num;
return this;
}
/**
* <p>Policy name</p>
*
* <strong>example:</strong>
* <p>营销风险识别评分_高风险_拒绝</p>
*/
public Builder ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* <p>Status.</p>
*
* <strong>example:</strong>
* <p>RUNNING</p>
*/
public Builder status(String status) {
this.status = status;
return this;
}
public Data build() {
return new Data(this);
}
}
}
/**
*
* {@link DescribeRuleBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponseBody</p>
*/
public static class Series extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<Data> data;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private Series(Builder builder) {
this.data = builder.data;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static Series create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<Data> getData() {
return this.data;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private java.util.List<Data> data;
private String type;
private Builder() {
}
private Builder(Series model) {
this.data = model.data;
this.type = model.type;
}
/**
* <p>Response data.</p>
*/
public Builder data(java.util.List<Data> data) {
this.data = data;
return this;
}
/**
* <p>Bar chart type</p>
*
* <strong>example:</strong>
* <p>bar</p>
*/
public Builder type(String type) {
this.type = type;
return this;
}
public Series build() {
return new Series(this);
}
}
}
/**
*
* {@link DescribeRuleBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponseBody</p>
*/
public static class Yaxis extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private java.util.List<String> data;
private Yaxis(Builder builder) {
this.data = builder.data;
}
public static Builder builder() {
return new Builder();
}
public static Yaxis create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List<String> getData() {
return this.data;
}
public static final class Builder {
private java.util.List<String> data;
private Builder() {
}
private Builder(Yaxis model) {
this.data = model.data;
}
/**
* <p>yaxis data items</p>
*/
public Builder data(java.util.List<String> data) {
this.data = data;
return this;
}
public Yaxis build() {
return new Yaxis(this);
}
}
}
/**
*
* {@link DescribeRuleBarChartResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleBarChartResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("series")
private java.util.List<Series> series;
@com.aliyun.core.annotation.NameInMap("yaxis")
private Yaxis yaxis;
private ResultObject(Builder builder) {
this.series = builder.series;
this.yaxis = builder.yaxis;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return series
*/
public java.util.List<Series> getSeries() {
return this.series;
}
/**
* @return yaxis
*/
public Yaxis getYaxis() {
return this.yaxis;
}
public static final class Builder {
private java.util.List<Series> series;
private Yaxis yaxis;
private Builder() {
}
private Builder(ResultObject model) {
this.series = model.series;
this.yaxis = model.yaxis;
}
/**
* <p>Data list</p>
*/
public Builder series(java.util.List<Series> series) {
this.series = series;
return this;
}
/**
* <p>yaxis related results.</p>
*/
public Builder yaxis(Yaxis yaxis) {
this.yaxis = yaxis;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleCountByUserIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleCountByUserIdRequest} extends {@link RequestModel}
*
* <p>DescribeRuleCountByUserIdRequest</p>
*/
public class DescribeRuleCountByUserIdRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("createType")
private String createType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
@com.aliyun.core.annotation.Validation(required = true)
private String regId;
private DescribeRuleCountByUserIdRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.createType = builder.createType;
this.regId = builder.regId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleCountByUserIdRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return createType
*/
public String getCreateType() {
return this.createType;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
public static final class Builder extends Request.Builder<DescribeRuleCountByUserIdRequest, Builder> {
private String lang;
private String createType;
private String regId;
private Builder() {
super();
}
private Builder(DescribeRuleCountByUserIdRequest request) {
super(request);
this.lang = request.lang;
this.createType = request.createType;
this.regId = request.regId;
}
/**
* <p>Sets the language type for requests and received messages, with a default value of <strong>zh</strong>. Values: </p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Creation type</p>
*
* <strong>example:</strong>
* <p>NORMAL</p>
*/
public Builder createType(String createType) {
this.putQueryParameter("createType", createType);
this.createType = createType;
return this;
}
/**
* <p>Region code</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
@Override
public DescribeRuleCountByUserIdRequest build() {
return new DescribeRuleCountByUserIdRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleCountByUserIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleCountByUserIdResponse} extends {@link TeaModel}
*
* <p>DescribeRuleCountByUserIdResponse</p>
*/
public class DescribeRuleCountByUserIdResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRuleCountByUserIdResponseBody body;
private DescribeRuleCountByUserIdResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRuleCountByUserIdResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRuleCountByUserIdResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRuleCountByUserIdResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRuleCountByUserIdResponseBody body);
@Override
DescribeRuleCountByUserIdResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRuleCountByUserIdResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRuleCountByUserIdResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRuleCountByUserIdResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRuleCountByUserIdResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRuleCountByUserIdResponse build() {
return new DescribeRuleCountByUserIdResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleCountByUserIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleCountByUserIdResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleCountByUserIdResponseBody</p>
*/
public class DescribeRuleCountByUserIdResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeRuleCountByUserIdResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleCountByUserIdResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeRuleCountByUserIdResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRuleCountByUserIdResponseBody build() {
return new DescribeRuleCountByUserIdResponseBody(this);
}
}
/**
*
* {@link DescribeRuleCountByUserIdResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleCountByUserIdResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("limit")
private Boolean limit;
@com.aliyun.core.annotation.NameInMap("maxTotalItem")
private Integer maxTotalItem;
@com.aliyun.core.annotation.NameInMap("totalItem")
private Integer totalItem;
private ResultObject(Builder builder) {
this.limit = builder.limit;
this.maxTotalItem = builder.maxTotalItem;
this.totalItem = builder.totalItem;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return limit
*/
public Boolean getLimit() {
return this.limit;
}
/**
* @return maxTotalItem
*/
public Integer getMaxTotalItem() {
return this.maxTotalItem;
}
/**
* @return totalItem
*/
public Integer getTotalItem() {
return this.totalItem;
}
public static final class Builder {
private Boolean limit;
private Integer maxTotalItem;
private Integer totalItem;
private Builder() {
}
private Builder(ResultObject model) {
this.limit = model.limit;
this.maxTotalItem = model.maxTotalItem;
this.totalItem = model.totalItem;
}
/**
* <p>Whether the limit condition is reached. Values: -<strong>true</strong>: Yes-<strong>false</strong>: No</p>
*
* <strong>example:</strong>
* <p>false</p>
*/
public Builder limit(Boolean limit) {
this.limit = limit;
return this;
}
/**
* <p>Maximum number of items</p>
*
* <strong>example:</strong>
* <p>100</p>
*/
public Builder maxTotalItem(Integer maxTotalItem) {
this.maxTotalItem = maxTotalItem;
return this;
}
/**
* <p>Total number of items</p>
*
* <strong>example:</strong>
* <p>27</p>
*/
public Builder totalItem(Integer totalItem) {
this.totalItem = totalItem;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleDetailByRuleIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleDetailByRuleIdRequest} extends {@link RequestModel}
*
* <p>DescribeRuleDetailByRuleIdRequest</p>
*/
public class DescribeRuleDetailByRuleIdRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Lang")
private String lang;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("consoleRuleId")
private Long consoleRuleId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("regId")
private String regId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ruleId")
private String ruleId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ruleVersionId")
private Long ruleVersionId;
private DescribeRuleDetailByRuleIdRequest(Builder builder) {
super(builder);
this.lang = builder.lang;
this.consoleRuleId = builder.consoleRuleId;
this.regId = builder.regId;
this.ruleId = builder.ruleId;
this.ruleVersionId = builder.ruleVersionId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleDetailByRuleIdRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return lang
*/
public String getLang() {
return this.lang;
}
/**
* @return consoleRuleId
*/
public Long getConsoleRuleId() {
return this.consoleRuleId;
}
/**
* @return regId
*/
public String getRegId() {
return this.regId;
}
/**
* @return ruleId
*/
public String getRuleId() {
return this.ruleId;
}
/**
* @return ruleVersionId
*/
public Long getRuleVersionId() {
return this.ruleVersionId;
}
public static final class Builder extends Request.Builder<DescribeRuleDetailByRuleIdRequest, Builder> {
private String lang;
private Long consoleRuleId;
private String regId;
private String ruleId;
private Long ruleVersionId;
private Builder() {
super();
}
private Builder(DescribeRuleDetailByRuleIdRequest request) {
super(request);
this.lang = request.lang;
this.consoleRuleId = request.consoleRuleId;
this.regId = request.regId;
this.ruleId = request.ruleId;
this.ruleVersionId = request.ruleVersionId;
}
/**
* <p>Set the language type for requests and received messages, default value is <strong>zh</strong>. Values:</p>
* <ul>
* <li><strong>zh</strong>: Chinese</li>
* <li><strong>en</strong>: English</li>
* </ul>
*
* <strong>example:</strong>
* <p>zh</p>
*/
public Builder lang(String lang) {
this.putQueryParameter("Lang", lang);
this.lang = lang;
return this;
}
/**
* <p>Primary key ID of the policy.</p>
*
* <strong>example:</strong>
* <p>7110</p>
*/
public Builder consoleRuleId(Long consoleRuleId) {
this.putQueryParameter("consoleRuleId", consoleRuleId);
this.consoleRuleId = consoleRuleId;
return this;
}
/**
* <p>Region code.</p>
*
* <strong>example:</strong>
* <p>cn-hangzhou</p>
*/
public Builder regId(String regId) {
this.putQueryParameter("regId", regId);
this.regId = regId;
return this;
}
/**
* <p>Policy ID.</p>
*
* <strong>example:</strong>
* <p>102059</p>
*/
public Builder ruleId(String ruleId) {
this.putQueryParameter("ruleId", ruleId);
this.ruleId = ruleId;
return this;
}
/**
* <p>Primary key ID of the policy version.</p>
*
* <strong>example:</strong>
* <p>10203</p>
*/
public Builder ruleVersionId(Long ruleVersionId) {
this.putQueryParameter("ruleVersionId", ruleVersionId);
this.ruleVersionId = ruleVersionId;
return this;
}
@Override
public DescribeRuleDetailByRuleIdRequest build() {
return new DescribeRuleDetailByRuleIdRequest(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleDetailByRuleIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleDetailByRuleIdResponse} extends {@link TeaModel}
*
* <p>DescribeRuleDetailByRuleIdResponse</p>
*/
public class DescribeRuleDetailByRuleIdResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private DescribeRuleDetailByRuleIdResponseBody body;
private DescribeRuleDetailByRuleIdResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeRuleDetailByRuleIdResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DescribeRuleDetailByRuleIdResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeRuleDetailByRuleIdResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeRuleDetailByRuleIdResponseBody body);
@Override
DescribeRuleDetailByRuleIdResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeRuleDetailByRuleIdResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private DescribeRuleDetailByRuleIdResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeRuleDetailByRuleIdResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DescribeRuleDetailByRuleIdResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeRuleDetailByRuleIdResponse build() {
return new DescribeRuleDetailByRuleIdResponse(this);
}
}
}
|
0
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910
|
java-sources/com/aliyun/alibabacloud-xtee20210910/2.0.2/com/aliyun/sdk/service/xtee20210910/models/DescribeRuleDetailByRuleIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.xtee20210910.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 DescribeRuleDetailByRuleIdResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleDetailByRuleIdResponseBody</p>
*/
public class DescribeRuleDetailByRuleIdResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("resultObject")
private ResultObject resultObject;
private DescribeRuleDetailByRuleIdResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.resultObject = builder.resultObject;
}
public static Builder builder() {
return new Builder();
}
public static DescribeRuleDetailByRuleIdResponseBody create() {
return builder().build();
}
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return resultObject
*/
public ResultObject getResultObject() {
return this.resultObject;
}
public static final class Builder {
private String requestId;
private ResultObject resultObject;
private Builder() {
}
private Builder(DescribeRuleDetailByRuleIdResponseBody model) {
this.requestId = model.requestId;
this.resultObject = model.resultObject;
}
/**
* <p>Request ID.</p>
*
* <strong>example:</strong>
* <p>A32FE941-35F2-5378-B37C-4B8FDB16F094</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Returned object.</p>
*/
public Builder resultObject(ResultObject resultObject) {
this.resultObject = resultObject;
return this;
}
public DescribeRuleDetailByRuleIdResponseBody build() {
return new DescribeRuleDetailByRuleIdResponseBody(this);
}
}
/**
*
* {@link DescribeRuleDetailByRuleIdResponseBody} extends {@link TeaModel}
*
* <p>DescribeRuleDetailByRuleIdResponseBody</p>
*/
public static class ResultObject extends TeaModel {
@com.aliyun.core.annotation.NameInMap("authType")
private String authType;
@com.aliyun.core.annotation.NameInMap("bizVersion")
private String bizVersion;
@com.aliyun.core.annotation.NameInMap("consoleRuleId")
private Long consoleRuleId;
@com.aliyun.core.annotation.NameInMap("createType")
private String createType;
@com.aliyun.core.annotation.NameInMap("eventCode")
private String eventCode;
@com.aliyun.core.annotation.NameInMap("eventName")
private String eventName;
@com.aliyun.core.annotation.NameInMap("gmtCreate")
private Long gmtCreate;
@com.aliyun.core.annotation.NameInMap("gmtModified")
private Long gmtModified;
@com.aliyun.core.annotation.NameInMap("logicExpression")
private String logicExpression;
@com.aliyun.core.annotation.NameInMap("mainEventCode")
private String mainEventCode;
@com.aliyun.core.annotation.NameInMap("memo")
private String memo;
@com.aliyun.core.annotation.NameInMap("ruleActionMap")
private java.util.Map<String, ?> ruleActionMap;
@com.aliyun.core.annotation.NameInMap("ruleActions")
private String ruleActions;
@com.aliyun.core.annotation.NameInMap("ruleAuthType")
private String ruleAuthType;
@com.aliyun.core.annotation.NameInMap("ruleBody")
private String ruleBody;
@com.aliyun.core.annotation.NameInMap("ruleExpressions")
private String ruleExpressions;
@com.aliyun.core.annotation.NameInMap("ruleId")
private String ruleId;
@com.aliyun.core.annotation.NameInMap("ruleName")
private String ruleName;
@com.aliyun.core.annotation.NameInMap("ruleStatus")
private String ruleStatus;
@com.aliyun.core.annotation.NameInMap("ruleType")
private String ruleType;
@com.aliyun.core.annotation.NameInMap("ruleVersionId")
private Long ruleVersionId;
private ResultObject(Builder builder) {
this.authType = builder.authType;
this.bizVersion = builder.bizVersion;
this.consoleRuleId = builder.consoleRuleId;
this.createType = builder.createType;
this.eventCode = builder.eventCode;
this.eventName = builder.eventName;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.logicExpression = builder.logicExpression;
this.mainEventCode = builder.mainEventCode;
this.memo = builder.memo;
this.ruleActionMap = builder.ruleActionMap;
this.ruleActions = builder.ruleActions;
this.ruleAuthType = builder.ruleAuthType;
this.ruleBody = builder.ruleBody;
this.ruleExpressions = builder.ruleExpressions;
this.ruleId = builder.ruleId;
this.ruleName = builder.ruleName;
this.ruleStatus = builder.ruleStatus;
this.ruleType = builder.ruleType;
this.ruleVersionId = builder.ruleVersionId;
}
public static Builder builder() {
return new Builder();
}
public static ResultObject create() {
return builder().build();
}
/**
* @return authType
*/
public String getAuthType() {
return this.authType;
}
/**
* @return bizVersion
*/
public String getBizVersion() {
return this.bizVersion;
}
/**
* @return consoleRuleId
*/
public Long getConsoleRuleId() {
return this.consoleRuleId;
}
/**
* @return createType
*/
public String getCreateType() {
return this.createType;
}
/**
* @return eventCode
*/
public String getEventCode() {
return this.eventCode;
}
/**
* @return eventName
*/
public String getEventName() {
return this.eventName;
}
/**
* @return gmtCreate
*/
public Long getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return logicExpression
*/
public String getLogicExpression() {
return this.logicExpression;
}
/**
* @return mainEventCode
*/
public String getMainEventCode() {
return this.mainEventCode;
}
/**
* @return memo
*/
public String getMemo() {
return this.memo;
}
/**
* @return ruleActionMap
*/
public java.util.Map<String, ?> getRuleActionMap() {
return this.ruleActionMap;
}
/**
* @return ruleActions
*/
public String getRuleActions() {
return this.ruleActions;
}
/**
* @return ruleAuthType
*/
public String getRuleAuthType() {
return this.ruleAuthType;
}
/**
* @return ruleBody
*/
public String getRuleBody() {
return this.ruleBody;
}
/**
* @return ruleExpressions
*/
public String getRuleExpressions() {
return this.ruleExpressions;
}
/**
* @return ruleId
*/
public String getRuleId() {
return this.ruleId;
}
/**
* @return ruleName
*/
public String getRuleName() {
return this.ruleName;
}
/**
* @return ruleStatus
*/
public String getRuleStatus() {
return this.ruleStatus;
}
/**
* @return ruleType
*/
public String getRuleType() {
return this.ruleType;
}
/**
* @return ruleVersionId
*/
public Long getRuleVersionId() {
return this.ruleVersionId;
}
public static final class Builder {
private String authType;
private String bizVersion;
private Long consoleRuleId;
private String createType;
private String eventCode;
private String eventName;
private Long gmtCreate;
private Long gmtModified;
private String logicExpression;
private String mainEventCode;
private String memo;
private java.util.Map<String, ?> ruleActionMap;
private String ruleActions;
private String ruleAuthType;
private String ruleBody;
private String ruleExpressions;
private String ruleId;
private String ruleName;
private String ruleStatus;
private String ruleType;
private Long ruleVersionId;
private Builder() {
}
private Builder(ResultObject model) {
this.authType = model.authType;
this.bizVersion = model.bizVersion;
this.consoleRuleId = model.consoleRuleId;
this.createType = model.createType;
this.eventCode = model.eventCode;
this.eventName = model.eventName;
this.gmtCreate = model.gmtCreate;
this.gmtModified = model.gmtModified;
this.logicExpression = model.logicExpression;
this.mainEventCode = model.mainEventCode;
this.memo = model.memo;
this.ruleActionMap = model.ruleActionMap;
this.ruleActions = model.ruleActions;
this.ruleAuthType = model.ruleAuthType;
this.ruleBody = model.ruleBody;
this.ruleExpressions = model.ruleExpressions;
this.ruleId = model.ruleId;
this.ruleName = model.ruleName;
this.ruleStatus = model.ruleStatus;
this.ruleType = model.ruleType;
this.ruleVersionId = model.ruleVersionId;
}
/**
* <p>Service authorization type.</p>
*
* <strong>example:</strong>
* <p>all</p>
*/
public Builder authType(String authType) {
this.authType = authType;
return this;
}
/**
* <p>Version.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
public Builder bizVersion(String bizVersion) {
this.bizVersion = bizVersion;
return this;
}
/**
* <p>Primary key ID of the policy.</p>
*
* <strong>example:</strong>
* <p>6633</p>
*/
public Builder consoleRuleId(Long consoleRuleId) {
this.consoleRuleId = consoleRuleId;
return this;
}
/**
* <p>Creation type.</p>
*
* <strong>example:</strong>
* <p>MORMAL</p>
*/
public Builder createType(String createType) {
this.createType = createType;
return this;
}
/**
* <p>Event code.</p>
*
* <strong>example:</strong>
* <p>de_asssce8122</p>
*/
public Builder eventCode(String eventCode) {
this.eventCode = eventCode;
return this;
}
/**
* <p>Event name.</p>
*
* <strong>example:</strong>
* <p>注册风险</p>
*/
public Builder eventName(String eventName) {
this.eventName = eventName;
return this;
}
/**
* <p>Creation time.</p>
*
* <strong>example:</strong>
* <p>1621578648000</p>
*/
public Builder gmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* <p>Modification time.</p>
*
* <strong>example:</strong>
* <p>1565701886000</p>
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* <p>Log expression.</p>
*
* <strong>example:</strong>
* <p>1&2</p>
*/
public Builder logicExpression(String logicExpression) {
this.logicExpression = logicExpression;
return this;
}
/**
* <p>Main event code.</p>
*
* <strong>example:</strong>
* <p>de_asssce8122</p>
*/
public Builder mainEventCode(String mainEventCode) {
this.mainEventCode = mainEventCode;
return this;
}
/**
* <p>Memo.</p>
*
* <strong>example:</strong>
* <p>备注</p>
*/
public Builder memo(String memo) {
this.memo = memo;
return this;
}
/**
* <p>Rule action structure.</p>
*
* <strong>example:</strong>
* <p>{
* "SCORE": [
* {
* "actionType": "SCORE",
* "displayType": "ACTION",
* "code": "deAddScore",
* "sourceType": "SAF",
* "inputs": [
* "123"
* ],
* "name": "<strong>addDeScore</strong>",
* "description": "打分",
* "inputTitle": "123",
* "outputType": "const",
* "type": "ACTION",
* "title": "打分",
* "fieldType": "DOUBLE"
* }
* ],
* "VARIABLE": [
* {
* "actionType": "VARIABLE",
* "displayType": "MIDDLE",
* "code": "mid1",
* "inputs": [
* "gg"
* ],
* "name": "mid1",
* "description": "中间变量,mid1",
* "type": "MIDDLE",
* "title": "mid1",
* "fieldType": "STRING"
* }
* ],
* "TAG": [
* {
* "actionType": "TAG",
* "displayType": "ACTION",
* "code": "addDeTags",
* "sourceType": "SAF",
* "inputs": [
* "123"
* ],
* "name": "<strong>addDeTags</strong>",
* "description": "打标签",
* "outputType": "const",
* "type": "ACTION",
* "title": "打标签",
* "fieldType": "STRING"
* }
* ],
* "MIDDLE_VARIABLE": [
* {
* "actionType": "MIDDLE_VARIABLE",
* "inputs": [
* "mid1"
* ],
* "fieldValue": "123",
* "fieldType": "STRING"
* }
* ]
* }</p>
*/
public Builder ruleActionMap(java.util.Map<String, ?> ruleActionMap) {
this.ruleActionMap = ruleActionMap;
return this;
}
/**
* <p>Rule actions.</p>
*
* <strong>example:</strong>
* <p>[{"actionType":"TAG","code":"addDeTags","description":"打标签","displayType":"ACTION","fieldType":"STRING","inputs":["123"],"name":"<strong>addDeTags</strong>","outputType":"const","sourceType":"SAF","title":"打标签","type":"ACTION"},{"actionType":"SCORE","code":"deAddScore","description":"打分","displayType":"ACTION","fieldType":"DOUBLE","inputTitle":"123","inputs":["123"],"name":"<strong>addDeScore</strong>","outputType":"const","sourceType":"SAF","title":"打分","type":"ACTION"},{"actionType":"MIDDLE_VARIABLE","fieldType":"STRING","fieldValue":"123","inputs":["mid1"]},{"actionType":"VARIABLE","code":"mid1","description":"中间变量,mid1","displayType":"MIDDLE","fieldType":"STRING","inputs":["gg"],"name":"mid1","title":"mid1","type":"MIDDLE"}]</p>
*/
public Builder ruleActions(String ruleActions) {
this.ruleActions = ruleActions;
return this;
}
/**
* <p>Rule authorization type.</p>
*
* <strong>example:</strong>
* <p>NOMAL</p>
*/
public Builder ruleAuthType(String ruleAuthType) {
this.ruleAuthType = ruleAuthType;
return this;
}
/**
* <p>DSL policy expression.</p>
*
* <strong>example:</strong>
* <p>{"elseIfStatement":[{"condition":{"currentId":0,"deepCount":1,"list":[{"currentId":0,"deepCount":1,"left":{"code":"getLbsRegion(longitude, latitude)?.prov","description":"根据经纬度得到省份信息,比如经度:111.878062,纬度:22.585409,则经过运算,输出”广东省“","displayType":"SELF_BIND","fieldType":"STRING","functionCode":"","functionName":"","hasRightVariable":true,"name":"sl_S02sHLFT7818","outputThreshold":{},"sourceType":"SAF","title":"经纬度自定义系统变量","type":"SELF_BIND"},"operatorCode":"equals","operatorName":"等于","parentId":0,"right":{"name":"cc","rightVariableType":"constant"},"sequence":5}],"parentId":0,"relationship":"and"},"then":[{"actionType":"TAG","code":"addDeTags","description":"打标签","displayType":"ACTION","fieldType":"STRING","inputs":["332"],"name":"<strong>addDeTags</strong>","outputType":"const","sourceType":"SAF","title":"打标签","type":"ACTION"}]}],"elseStatement":{"then":[{"actionType":"TAG","code":"addDeTags","description":"打标签","displayType":"ACTION","fieldType":"STRING","inputs":["321"],"name":"<strong>addDeTags</strong>","outputType":"const","sourceType":"SAF","title":"打标签","type":"ACTION"}]},"ifStatement":{"condition":{"currentId":0,"deepCount":1,"list":[{"currentId":0,"deepCount":1,"left":{"code":"queryPhoneSimulatorInfo(deviceToken)?.brand","description":"设备信息-终端品牌","displayType":"DEVICE","fieldType":"STRING","functionCode":"","functionName":"","hasRightVariable":true,"name":"<strong>device_brand</strong>","sourceType":"SAF","title":"设备信息-终端品牌-brand","type":"DEVICE"},"operatorCode":"deInNameList","operatorName":"在名单中","parentId":0,"right":{"code":"nl_UN8otElLb490","description":"描述11","displayType":"NAME_LIST","name":"nl_UN8otElLb490","rightVariableType":"constant","sourceType":"SAF","title":"wtz_名单新建测试02","type":"NAME_LIST"},"sequence":1},{"currentId":0,"deepCount":1,"left":{"code":"deFunctionProcess(ip,\"isIp\")","description":"判断是否符合IPv4标准","displayType":"SYSTEM_BIND","fieldType":"BOOLEAN","functionCode":"","functionName":"","hasRightVariable":false,"name":"<strong>isIpAddressV4</strong>","outputThreshold":{},"sourceType":"SAF","title":"IP是否符合IPV4格式","type":"SYSTEM_BIND"},"operatorCode":"boolIsTrue","operatorName":"为true","parentId":0,"right":{"name":"","rightVariableType":"constant"},"sequence":2},{"currentId":0,"deepCount":1,"list":[{"currentId":0,"deepCount":1,"left":{"code":"parseIpV2(ip)?.cityId","description":"通过IP地址库解析IP所在的城市Code,例如,输入“42.120.74.211”,经过该变量运算,输出“330100”。","displayType":"SYSTEM_BIND","fieldType":"STRING","functionCode":"","functionName":"","hasRightVariable":true,"name":"<strong>ipLocationCityCode</strong>","outputThreshold":{},"sourceType":"SAF","title":"IP所在地_城市Code","type":"SYSTEM_BIND"},"operatorCode":"equals","operatorName":"等于","parentId":0,"right":{"code":"deFunctionProcess(ip,\"getCountry\")","description":"通过IP地址库解析IP所在的城市名称,例如,输入“42.120.74.211”,经过该变量运算,输出“CN”。","displayType":"SYSTEM_BIND","fieldType":"STRING","functionCode":"","functionName":"","name":"<strong>ipLocationCountryId</strong>","outputThreshold":{},"rightVariableType":"variable","sourceType":"SAF","title":"IP所在地_国家Code","type":"SYSTEM_BIND"},"sequence":3},{"currentId":0,"deepCount":1,"list":[{"currentId":0,"deepCount":1,"left":{"code":"parseIpV2(ip)?.cityId","description":"通过IP地址库解析IP所在的城市Code,例如,输入“42.120.74.211”,经过该变量运算,输出“330100”。","displayType":"SYSTEM_BIND","fieldType":"STRING","functionCode":"","functionName":"","hasRightVariable":true,"name":"<strong>ipLocationCityCode</strong>","outputThreshold":{"$ref":"$.ifStatement.condition.list[2].list[0].left.outputThreshold"},"sourceType":"SAF","title":"IP所在地_城市Code","type":"SYSTEM_BIND"},"operatorCode":"deInNameList","operatorName":"在名单中","parentId":0,"right":{"code":"nl_NsVwBD2s11e0","displayType":"NAME_LIST","name":"nl_NsVwBD2s11e0","rightVariableType":"constant","sourceType":"SAF","title":"device_block_list","type":"NAME_LIST"},"sequence":4}],"parentId":0,"relationship":"and"}],"parentId":0,"relationship":"and"}],"parentId":0,"relationship":"and"},"then":[{"actionType":"TAG","code":"addDeTags","description":"打标签","displayType":"ACTION","fieldType":"STRING","inputs":["123"],"name":"<strong>addDeTags</strong>","outputType":"const","sourceType":"SAF","title":"打标签","type":"ACTION"}]}}</p>
*/
public Builder ruleBody(String ruleBody) {
this.ruleBody = ruleBody;
return this;
}
/**
* <p>Rule expressions.</p>
*
* <strong>example:</strong>
* <p>[{"expressionName":"营销风险识别评分","itemId":1,"left":{"name":"sl_rjtsDXK124a5"},"operatorCode":"between","operatorName":"数字在[a,b]之间","right":{"fieldValue":"[65,100]"}}]</p>
*/
public Builder ruleExpressions(String ruleExpressions) {
this.ruleExpressions = ruleExpressions;
return this;
}
/**
* <p>Policy ID.</p>
*
* <strong>example:</strong>
* <p>101544</p>
*/
public Builder ruleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* <p>Policy name.</p>
*
* <strong>example:</strong>
* <p>营销风险识别</p>
*/
public Builder ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* <p>Policy status.</p>
*
* <strong>example:</strong>
* <p>RUNNING</p>
*/
public Builder ruleStatus(String ruleStatus) {
this.ruleStatus = ruleStatus;
return this;
}
/**
* <p>Rule type.</p>
*
* <strong>example:</strong>
* <p>DSL</p>
*/
public Builder ruleType(String ruleType) {
this.ruleType = ruleType;
return this;
}
/**
* <p>Primary key ID of the policy version.</p>
*
* <strong>example:</strong>
* <p>3823</p>
*/
public Builder ruleVersionId(Long ruleVersionId) {
this.ruleVersionId = ruleVersionId;
return this;
}
public ResultObject build() {
return new ResultObject(this);
}
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.