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

com.antgroup.antchain.openapi.deps.models.QueryDeploymentRequest Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class QueryDeploymentRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 部署单包含的应用(服务)名称
    @NameInMap("application_name")
    public String applicationName;

    // 部署单创建日期,采用UTC时间,按照ISO8601标准表示,格式为:YYYY-MM-DDThh:mm:ssZ
    @NameInMap("creation_time")
    public String creationTime;

    // 部署单id
    @NameInMap("operation_id")
    public String operationId;

    // 当前页码,默认为1
    @NameInMap("page_num")
    public Integer pageNum;

    // 分页大小,默认10
    @NameInMap("page_size")
    public Integer pageSize;

    // 
    // 部署单状态。取值列表:
    // INITING:初始化中;
    // INIT_FAILED:初始化失败;
    // INITED:初始化完成;
    // EXECUTING:执行中;
    // SUCCESS:执行成功;
    // FAILED:执行失败;
    // CANCELING:取消中;
    // CANCELED:已取消
    //                             
    //                         
    @NameInMap("statuses")
    public java.util.List statuses;

    // 精确部署单标题
    @NameInMap("title")
    public String title;

    public static QueryDeploymentRequest build(java.util.Map map) throws Exception {
        QueryDeploymentRequest self = new QueryDeploymentRequest();
        return TeaModel.build(map, self);
    }

    public QueryDeploymentRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public QueryDeploymentRequest setTenant(String tenant) {
        this.tenant = tenant;
        return this;
    }
    public String getTenant() {
        return this.tenant;
    }

    public QueryDeploymentRequest setApplicationName(String applicationName) {
        this.applicationName = applicationName;
        return this;
    }
    public String getApplicationName() {
        return this.applicationName;
    }

    public QueryDeploymentRequest setCreationTime(String creationTime) {
        this.creationTime = creationTime;
        return this;
    }
    public String getCreationTime() {
        return this.creationTime;
    }

    public QueryDeploymentRequest setOperationId(String operationId) {
        this.operationId = operationId;
        return this;
    }
    public String getOperationId() {
        return this.operationId;
    }

    public QueryDeploymentRequest setPageNum(Integer pageNum) {
        this.pageNum = pageNum;
        return this;
    }
    public Integer getPageNum() {
        return this.pageNum;
    }

    public QueryDeploymentRequest setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Integer getPageSize() {
        return this.pageSize;
    }

    public QueryDeploymentRequest setStatuses(java.util.List statuses) {
        this.statuses = statuses;
        return this;
    }
    public java.util.List getStatuses() {
        return this.statuses;
    }

    public QueryDeploymentRequest setTitle(String title) {
        this.title = title;
        return this;
    }
    public String getTitle() {
        return this.title;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy