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

com.aliyun.datalake20200710.models.ListRoleUsersRequest Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;

import com.aliyun.tea.*;

public class ListRoleUsersRequest extends TeaModel {
    /**
     * 

NextPageToken

*/ @NameInMap("NextPageToken") public String nextPageToken; /** *

PageSize

*/ @NameInMap("PageSize") public Integer pageSize; @NameInMap("RoleName") public String roleName; /** *

use name pattern filter

*/ @NameInMap("UserNamePattern") public String userNamePattern; public static ListRoleUsersRequest build(java.util.Map map) throws Exception { ListRoleUsersRequest self = new ListRoleUsersRequest(); return TeaModel.build(map, self); } public ListRoleUsersRequest setNextPageToken(String nextPageToken) { this.nextPageToken = nextPageToken; return this; } public String getNextPageToken() { return this.nextPageToken; } public ListRoleUsersRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListRoleUsersRequest setRoleName(String roleName) { this.roleName = roleName; return this; } public String getRoleName() { return this.roleName; } public ListRoleUsersRequest setUserNamePattern(String userNamePattern) { this.userNamePattern = userNamePattern; return this; } public String getUserNamePattern() { return this.userNamePattern; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy