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

com.aliyun.dataworks_public20200518.models.UpdateTableModelInfoRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpdateTableModelInfoRequest extends TeaModel {
    /**
     * 

The ID of the first-level table folder.

* * example: *

101

*/ @NameInMap("FirstLevelThemeId") public Long firstLevelThemeId; /** *

The table level ID.

* * example: *

101

*/ @NameInMap("LevelId") public Long levelId; /** *

The type of the table level. Valid values: 1 and 2. The value 1 indicates the logical level. The value 2 indicates the physical level.

* * example: *

1

*/ @NameInMap("LevelType") public Integer levelType; /** *

The ID of the second-level table folder.

* * example: *

101

*/ @NameInMap("SecondLevelThemeId") public Long secondLevelThemeId; /** *

The GUID of the table. Specify the GUID in the odps.{projectName}.{tableName} format.

*

This parameter is required.

* * example: *

odps.test.table1

*/ @NameInMap("TableGuid") public String tableGuid; public static UpdateTableModelInfoRequest build(java.util.Map map) throws Exception { UpdateTableModelInfoRequest self = new UpdateTableModelInfoRequest(); return TeaModel.build(map, self); } public UpdateTableModelInfoRequest setFirstLevelThemeId(Long firstLevelThemeId) { this.firstLevelThemeId = firstLevelThemeId; return this; } public Long getFirstLevelThemeId() { return this.firstLevelThemeId; } public UpdateTableModelInfoRequest setLevelId(Long levelId) { this.levelId = levelId; return this; } public Long getLevelId() { return this.levelId; } public UpdateTableModelInfoRequest setLevelType(Integer levelType) { this.levelType = levelType; return this; } public Integer getLevelType() { return this.levelType; } public UpdateTableModelInfoRequest setSecondLevelThemeId(Long secondLevelThemeId) { this.secondLevelThemeId = secondLevelThemeId; return this; } public Long getSecondLevelThemeId() { return this.secondLevelThemeId; } public UpdateTableModelInfoRequest setTableGuid(String tableGuid) { this.tableGuid = tableGuid; return this; } public String getTableGuid() { return this.tableGuid; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy