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 3e314d8 commit 2192322
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 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.8
- Generated 2020-05-18 for `dataworks-public`.

2024-09-03 Version: 5.1.7
- 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.7</version>
<version>5.1.8</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 @@ -91,6 +91,8 @@ public static class Data {

private NodeConfiguration nodeConfiguration;

private ResourceDownloadLink resourceDownloadLink;

public File getFile() {
return this.file;
}
Expand All @@ -107,6 +109,14 @@ public void setNodeConfiguration(NodeConfiguration nodeConfiguration) {
this.nodeConfiguration = nodeConfiguration;
}

public ResourceDownloadLink getResourceDownloadLink() {
return this.resourceDownloadLink;
}

public void setResourceDownloadLink(ResourceDownloadLink resourceDownloadLink) {
this.resourceDownloadLink = resourceDownloadLink;
}

public static class File {

private Integer commitStatus;
Expand Down Expand Up @@ -644,6 +654,19 @@ public void setDescription(String description) {
}
}
}

public static class ResourceDownloadLink {

private String downloadLink;

public String getDownloadLink() {
return this.downloadLink;
}

public void setDownloadLink(String downloadLink) {
this.downloadLink = downloadLink;
}
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.NodeConfiguration.InputContextParameter;
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.NodeConfiguration.NodeInputOutput;
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.NodeConfiguration.NodeInputOutput1;
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.NodeConfiguration.OutputContextParameter;
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.NodeConfiguration.OutputContextParameter;
import com.aliyuncs.dataworks_public.model.v20200518.GetFileResponse.Data.ResourceDownloadLink;
import com.aliyuncs.transform.UnmarshallerContext;


Expand Down Expand Up @@ -125,6 +126,10 @@ public static GetFileResponse unmarshall(GetFileResponse getFileResponse, Unmars
}
nodeConfiguration.setOutputParameters(outputParameters);
data.setNodeConfiguration(nodeConfiguration);

ResourceDownloadLink resourceDownloadLink = new ResourceDownloadLink();
resourceDownloadLink.setDownloadLink(_ctx.stringValue("GetFileResponse.Data.ResourceDownloadLink.downloadLink"));
data.setResourceDownloadLink(resourceDownloadLink);
getFileResponse.setData(data);

return getFileResponse;
Expand Down

0 comments on commit 2192322

Please sign in to comment.