Skip to content

Commit

Permalink
Add Support Real time mock table.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 18, 2024
1 parent d8d5c7c commit 30e42ff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-paifeaturestore/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-18 Version: 1.0.15
- Add Support Real time mock table.

2024-12-02 Version: 1.0.14
- Add LabelPriorityLevel in UpdateModelFeature API.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-paifeaturestore/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-paifeaturestore</artifactId>
<packaging>jar</packaging>
<version>1.0.14</version>
<version>1.0.15</version>
<name>aliyun-java-sdk-paifeaturestore</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 @@ -69,6 +69,8 @@ public class GetFeatureViewResponse extends AcsResponse {

private String publishTableScript;

private String mockTableName;

private List<FieldsItem> fields;

private List<String> tags;
Expand Down Expand Up @@ -249,6 +251,14 @@ public void setPublishTableScript(String publishTableScript) {
this.publishTableScript = publishTableScript;
}

public String getMockTableName() {
return this.mockTableName;
}

public void setMockTableName(String mockTableName) {
this.mockTableName = mockTableName;
}

public List<FieldsItem> getFields() {
return this.fields;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public static GetFeatureViewResponse unmarshall(GetFeatureViewResponse getFeatur
getFeatureViewResponse.setGmtSyncTime(_ctx.stringValue("GetFeatureViewResponse.GmtSyncTime"));
getFeatureViewResponse.setLastSyncConfig(_ctx.stringValue("GetFeatureViewResponse.LastSyncConfig"));
getFeatureViewResponse.setPublishTableScript(_ctx.stringValue("GetFeatureViewResponse.PublishTableScript"));
getFeatureViewResponse.setMockTableName(_ctx.stringValue("GetFeatureViewResponse.MockTableName"));

List<String> tags = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("GetFeatureViewResponse.Tags.Length"); i++) {
Expand Down

0 comments on commit 30e42ff

Please sign in to comment.