diff --git a/aliyun-java-sdk-paifeaturestore/ChangeLog.txt b/aliyun-java-sdk-paifeaturestore/ChangeLog.txt
index e81779cae1..ac3f3ffeb7 100644
--- a/aliyun-java-sdk-paifeaturestore/ChangeLog.txt
+++ b/aliyun-java-sdk-paifeaturestore/ChangeLog.txt
@@ -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.
diff --git a/aliyun-java-sdk-paifeaturestore/pom.xml b/aliyun-java-sdk-paifeaturestore/pom.xml
index 6c4890ec41..cdbec8d603 100644
--- a/aliyun-java-sdk-paifeaturestore/pom.xml
+++ b/aliyun-java-sdk-paifeaturestore/pom.xml
@@ -4,7 +4,7 @@
com.aliyun
aliyun-java-sdk-paifeaturestore
jar
- 1.0.14
+ 1.0.15
aliyun-java-sdk-paifeaturestore
http://www.aliyun.com
Aliyun Open API SDK for Java
diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetFeatureViewResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetFeatureViewResponse.java
index 339e607836..9e1fb8d92f 100644
--- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetFeatureViewResponse.java
+++ b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetFeatureViewResponse.java
@@ -69,6 +69,8 @@ public class GetFeatureViewResponse extends AcsResponse {
private String publishTableScript;
+ private String mockTableName;
+
private List fields;
private List tags;
@@ -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 getFields() {
return this.fields;
}
diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetFeatureViewResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetFeatureViewResponseUnmarshaller.java
index 38d81daedb..e8e55b90fc 100644
--- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetFeatureViewResponseUnmarshaller.java
+++ b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetFeatureViewResponseUnmarshaller.java
@@ -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 tags = new ArrayList();
for (int i = 0; i < _ctx.lengthValue("GetFeatureViewResponse.Tags.Length"); i++) {