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 Dec 11, 2023
1 parent 7a9c067 commit 2d23cc7
Show file tree
Hide file tree
Showing 19 changed files with 56 additions and 711 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 @@
2023-12-11 Version: 5.0.0
- Generated 2020-05-18 for `dataworks-public`.

2023-12-08 Version: 4.2.16
- 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>4.2.16</version>
<version>5.0.0</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 @@ -24,159 +24,6 @@
*/
public class GetMetaCollectionDetailResponse extends AcsResponse {

private String requestId;

private Boolean success;

private String errorCode;

private String errorMessage;

private Integer httpStatusCode;

private Collection collection;

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

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

public Boolean getSuccess() {
return this.success;
}

public void setSuccess(Boolean success) {
this.success = success;
}

public String getErrorCode() {
return this.errorCode;
}

public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}

public String getErrorMessage() {
return this.errorMessage;
}

public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}

public Integer getHttpStatusCode() {
return this.httpStatusCode;
}

public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}

public Collection getCollection() {
return this.collection;
}

public void setCollection(Collection collection) {
this.collection = collection;
}

public static class Collection {

private String qualifiedName;

private String collectionType;

private String name;

private String comment;

private String ownerId;

private String ownerName;

private Long createTime;

private Long updateTime;

private Integer level;

public String getQualifiedName() {
return this.qualifiedName;
}

public void setQualifiedName(String qualifiedName) {
this.qualifiedName = qualifiedName;
}

public String getCollectionType() {
return this.collectionType;
}

public void setCollectionType(String collectionType) {
this.collectionType = collectionType;
}

public String getName() {
return this.name;
}

public void setName(String name) {
this.name = name;
}

public String getComment() {
return this.comment;
}

public void setComment(String comment) {
this.comment = comment;
}

public String getOwnerId() {
return this.ownerId;
}

public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}

public String getOwnerName() {
return this.ownerName;
}

public void setOwnerName(String ownerName) {
this.ownerName = ownerName;
}

public Long getCreateTime() {
return this.createTime;
}

public void setCreateTime(Long createTime) {
this.createTime = createTime;
}

public Long getUpdateTime() {
return this.updateTime;
}

public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}

public Integer getLevel() {
return this.level;
}

public void setLevel(Integer level) {
this.level = level;
}
}

@Override
public GetMetaCollectionDetailResponse getInstance(UnmarshallerContext context) {
return GetMetaCollectionDetailResponseUnmarshaller.unmarshall(this, context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ public static class ExtensionsItem {

private String parameterSetting;

private Long gmtCreate;

private Long gmtModified;

public String getExtensionCode() {
return this.extensionCode;
}
Expand Down Expand Up @@ -130,22 +126,6 @@ public String getParameterSetting() {
public void setParameterSetting(String parameterSetting) {
this.parameterSetting = parameterSetting;
}

public Long getGmtCreate() {
return this.gmtCreate;
}

public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}

public Long getGmtModified() {
return this.gmtModified;
}

public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ListEntitiesByTagsRequest extends RpcAcsRequest<ListEntitiesByTagsR
private Integer pageSize;

@SerializedName("tags")
private List<Tags> tags;
private List<Object> tags;
public ListEntitiesByTagsRequest() {
super("dataworks-public", "2020-05-18", "ListEntitiesByTags");
setMethod(MethodType.GET);
Expand Down Expand Up @@ -78,40 +78,15 @@ public void setPageSize(Integer pageSize) {
}
}

public List<Tags> getTags() {
public List<Object> getTags() {
return this.tags;
}

public void setTags(List<Tags> tags) {
public void setTags(List<Object> tags) {
this.tags = tags;
if (tags != null) {
putQueryParameter("Tags" , new Gson().toJson(tags));
}
}

public static class Tags {

@SerializedName("TagValue")
private String tagValue;

@SerializedName("TagKey")
private String tagKey;

public String getTagValue() {
return this.tagValue;
}

public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}

public String getTagKey() {
return this.tagKey;
}

public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

package com.aliyuncs.dataworks_public.model.v20200518;

import java.util.List;
import java.util.Map;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dataworks_public.transform.v20200518.ListEntitiesByTagsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down Expand Up @@ -90,7 +89,7 @@ public static class Data {

private String nextToken;

private List<EntityListItem> entityList;
private List<String> entityList;

public String getNextToken() {
return this.nextToken;
Expand All @@ -100,46 +99,13 @@ public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}

public List<EntityListItem> getEntityList() {
public List<String> getEntityList() {
return this.entityList;
}

public void setEntityList(List<EntityListItem> entityList) {
public void setEntityList(List<String> entityList) {
this.entityList = entityList;
}

public static class EntityListItem {

private String qualifiedName;

private Long tenantId;

private Map<Object,Object> entityContent;

public String getQualifiedName() {
return this.qualifiedName;
}

public void setQualifiedName(String qualifiedName) {
this.qualifiedName = qualifiedName;
}

public Long getTenantId() {
return this.tenantId;
}

public void setTenantId(Long tenantId) {
this.tenantId = tenantId;
}

public Map<Object,Object> getEntityContent() {
return this.entityContent;
}

public void setEntityContent(Map<Object,Object> entityContent) {
this.entityContent = entityContent;
}
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ListEntityTagsResponse extends AcsResponse {

private Integer httpStatusCode;

private List<DataItem> data;
private List<String> data;

public String getRequestId() {
return this.requestId;
Expand Down Expand Up @@ -77,37 +77,14 @@ public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}

public List<DataItem> getData() {
public List<String> getData() {
return this.data;
}

public void setData(List<DataItem> data) {
public void setData(List<String> data) {
this.data = data;
}

public static class DataItem {

private String tagKey;

private String tagValue;

public String getTagKey() {
return this.tagKey;
}

public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}

public String getTagValue() {
return this.tagValue;
}

public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
}

@Override
public ListEntityTagsResponse getInstance(UnmarshallerContext context) {
return ListEntityTagsResponseUnmarshaller.unmarshall(this, context);
Expand Down
Loading

0 comments on commit 2d23cc7

Please sign in to comment.