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

com.aliyun.dms_enterprise20181101.models.GetDataImportSQLRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;

import com.aliyun.tea.*;

public class GetDataImportSQLRequest extends TeaModel {
    /**
     * 

The ticket ID. You can call the ListOrders operation to query the ticket ID.

*

This parameter is required.

* * example: *

14****

*/ @NameInMap("OrderId") public Long orderId; /** *

The SQL ID. You can call the ListDataImportSQLPreCheckDetail operation to query the SQL ID.

*

This parameter is required.

* * example: *

15****

*/ @NameInMap("SqlId") public Long sqlId; /** *

The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to query the tenant ID.

* * example: *

3***

*/ @NameInMap("Tid") public Long tid; public static GetDataImportSQLRequest build(java.util.Map map) throws Exception { GetDataImportSQLRequest self = new GetDataImportSQLRequest(); return TeaModel.build(map, self); } public GetDataImportSQLRequest setOrderId(Long orderId) { this.orderId = orderId; return this; } public Long getOrderId() { return this.orderId; } public GetDataImportSQLRequest setSqlId(Long sqlId) { this.sqlId = sqlId; return this; } public Long getSqlId() { return this.sqlId; } public GetDataImportSQLRequest setTid(Long tid) { this.tid = tid; return this; } public Long getTid() { return this.tid; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy