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

com.antgroup.antchain.openapi.deps.models.QueryApplicationServiceRequest 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 QueryApplicationServiceRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 待查询的应用名称。最大60个UTF-8字符
    @NameInMap("application_name")
    public String applicationName;

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

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

    // 目标环境名称
    @NameInMap("workspaces")
    public java.util.List workspaces;

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

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

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

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

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

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

    public QueryApplicationServiceRequest setWorkspaces(java.util.List workspaces) {
        this.workspaces = workspaces;
        return this;
    }
    public java.util.List getWorkspaces() {
        return this.workspaces;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy