Skip to content

Commit

Permalink
Generated 2020-05-18 for dataworks-public.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 3, 2024
1 parent 78639ef commit 3e314d8
Show file tree
Hide file tree
Showing 11 changed files with 465 additions and 7 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-dataworks-public/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-03 Version: 5.1.7
- Generated 2020-05-18 for `dataworks-public`.

2024-07-31 Version: 5.1.6
- Generated 2020-05-18 for `dataworks-public`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-dataworks-public/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dataworks-public</artifactId>
<packaging>jar</packaging>
<version>5.1.6</version>
<version>5.1.7</version>
<name>aliyun-java-sdk-dataworks-public</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public class CreateFileRequest extends RpcAcsRequest<CreateFileResponse> {

private Boolean createFolderIfNotExists;

private Boolean applyScheduleImmediately;

private String rerunMode;

private String connectionName;
Expand Down Expand Up @@ -249,6 +251,17 @@ public void setCreateFolderIfNotExists(Boolean createFolderIfNotExists) {
}
}

public Boolean getApplyScheduleImmediately() {
return this.applyScheduleImmediately;
}

public void setApplyScheduleImmediately(Boolean applyScheduleImmediately) {
this.applyScheduleImmediately = applyScheduleImmediately;
if(applyScheduleImmediately != null){
putBodyParameter("ApplyScheduleImmediately", applyScheduleImmediately.toString());
}
}

public String getRerunMode() {
return this.rerunMode;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public class DeleteLineageRelationRequest extends RpcAcsRequest<DeleteLineageRel

private String destEntityQualifiedName;

private String relationshipType;

private String relationshipGuid;
public DeleteLineageRelationRequest() {
super("dataworks-public", "2020-05-18", "DeleteLineageRelation");
Expand Down Expand Up @@ -61,6 +63,17 @@ public void setDestEntityQualifiedName(String destEntityQualifiedName) {
}
}

public String getRelationshipType() {
return this.relationshipType;
}

public void setRelationshipType(String relationshipType) {
this.relationshipType = relationshipType;
if(relationshipType != null){
putQueryParameter("RelationshipType", relationshipType);
}
}

public String getRelationshipGuid() {
return this.relationshipGuid;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ public static class NodeConfiguration {

private Boolean startImmediately;

private String applyScheduleImmediately;

private List<NodeInputOutput> inputList;

private List<NodeInputOutput1> outputList;
Expand Down Expand Up @@ -490,6 +492,14 @@ public void setStartImmediately(Boolean startImmediately) {
this.startImmediately = startImmediately;
}

public String getApplyScheduleImmediately() {
return this.applyScheduleImmediately;
}

public void setApplyScheduleImmediately(String applyScheduleImmediately) {
this.applyScheduleImmediately = applyScheduleImmediately;
}

public List<NodeInputOutput> getInputList() {
return this.inputList;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.dataworks_public.model.v20200518;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.dataworks_public.Endpoint;

/**
* @author auto create
* @version
*/
public class ListTablesRequest extends RpcAcsRequest<ListTablesResponse> {


private String dataSourceType;

private String nextToken;

private Integer pageSize;
public ListTablesRequest() {
super("dataworks-public", "2020-05-18", "ListTables");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}

public String getDataSourceType() {
return this.dataSourceType;
}

public void setDataSourceType(String dataSourceType) {
this.dataSourceType = dataSourceType;
if(dataSourceType != null){
putQueryParameter("DataSourceType", dataSourceType);
}
}

public String getNextToken() {
return this.nextToken;
}

public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}

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

public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}

@Override
public Class<ListTablesResponse> getResponseClass() {
return ListTablesResponse.class;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.dataworks_public.model.v20200518;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dataworks_public.transform.v20200518.ListTablesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class ListTablesResponse extends AcsResponse {

private String requestId;

private Data data;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Data getData() {
return this.data;
}

public void setData(Data data) {
this.data = data;
}

public static class Data {

private Long total;

private String nextToken;

private List<TableEntityListItem> tableEntityList;

public Long getTotal() {
return this.total;
}

public void setTotal(Long total) {
this.total = total;
}

public String getNextToken() {
return this.nextToken;
}

public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}

public List<TableEntityListItem> getTableEntityList() {
return this.tableEntityList;
}

public void setTableEntityList(List<TableEntityListItem> tableEntityList) {
this.tableEntityList = tableEntityList;
}

public static class TableEntityListItem {

private String entityQualifiedName;

private EntityContent entityContent;

public String getEntityQualifiedName() {
return this.entityQualifiedName;
}

public void setEntityQualifiedName(String entityQualifiedName) {
this.entityQualifiedName = entityQualifiedName;
}

public EntityContent getEntityContent() {
return this.entityContent;
}

public void setEntityContent(EntityContent entityContent) {
this.entityContent = entityContent;
}

public static class EntityContent {

private String tableName;

private String dataSourceQualifiedName;

private String dataSourceUniqueId;

private String databaseName;

private String projectName;

private String instanceId;

public String getTableName() {
return this.tableName;
}

public void setTableName(String tableName) {
this.tableName = tableName;
}

public String getDataSourceQualifiedName() {
return this.dataSourceQualifiedName;
}

public void setDataSourceQualifiedName(String dataSourceQualifiedName) {
this.dataSourceQualifiedName = dataSourceQualifiedName;
}

public String getDataSourceUniqueId() {
return this.dataSourceUniqueId;
}

public void setDataSourceUniqueId(String dataSourceUniqueId) {
this.dataSourceUniqueId = dataSourceUniqueId;
}

public String getDatabaseName() {
return this.databaseName;
}

public void setDatabaseName(String databaseName) {
this.databaseName = databaseName;
}

public String getProjectName() {
return this.projectName;
}

public void setProjectName(String projectName) {
this.projectName = projectName;
}

public String getInstanceId() {
return this.instanceId;
}

public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}
}
}

@Override
public ListTablesResponse getInstance(UnmarshallerContext context) {
return ListTablesResponseUnmarshaller.unmarshall(this, context);
}

@Override
public boolean checkShowJsonItemName() {
return false;
}
}
Loading

0 comments on commit 3e314d8

Please sign in to comment.