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

com.aliyun.rds20140815.models.DescribeSQLLogFilesRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DescribeSQLLogFilesRequest extends TeaModel {
    /**
     * 

The instance ID. You can call the DescribeDBInstances operation to query the instance ID.

*

This parameter is required.

* * example: *

rm-uf6wjk5xxxxxx

*/ @NameInMap("DBInstanceId") public String DBInstanceId; /** *

The name of the audit log file.

* * example: *

custinsxxxxx.csv

*/ @NameInMap("FileName") public String fileName; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; /** *

The number of the page to return. Valid values: 1 to 100000. Default value: 1.

* * example: *

1

*/ @NameInMap("PageNumber") public Integer pageNumber; /** *

The number of entries to return on each page. Valid value: 30 to 200. Default value: 30.

* * example: *

30

*/ @NameInMap("PageSize") public Integer pageSize; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; public static DescribeSQLLogFilesRequest build(java.util.Map map) throws Exception { DescribeSQLLogFilesRequest self = new DescribeSQLLogFilesRequest(); return TeaModel.build(map, self); } public DescribeSQLLogFilesRequest setDBInstanceId(String DBInstanceId) { this.DBInstanceId = DBInstanceId; return this; } public String getDBInstanceId() { return this.DBInstanceId; } public DescribeSQLLogFilesRequest setFileName(String fileName) { this.fileName = fileName; return this; } public String getFileName() { return this.fileName; } public DescribeSQLLogFilesRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public DescribeSQLLogFilesRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DescribeSQLLogFilesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeSQLLogFilesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeSQLLogFilesRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DescribeSQLLogFilesRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy