Skip to content

Commit

Permalink
Add RealTimePartitionCountValue in ExportTranSetTable API.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 4, 2024
1 parent 2192322 commit 5672446
Show file tree
Hide file tree
Showing 25 changed files with 16 additions and 1,635 deletions.
4 changes: 4 additions & 0 deletions aliyun-java-sdk-paifeaturestore/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-09-04 Version: 1.0.13
- Add RealTimePartitionCountValue in ExportTranSetTable API.
- Add LabelPriorityLevel in CreateModelFeature API

2024-07-12 Version: 1.0.12
- Add RealTimeIterateInterval parameter in ExportTranSetTable 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.12</version>
<version>1.0.13</version>
<name>aliyun-java-sdk-paifeaturestore</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public class GetModelFeatureResponse extends AcsResponse {

private String exportTrainingSetTableScript;

private Long labelPriorityLevel;

private List<FeaturesItem> features;

private Relations relations;
Expand Down Expand Up @@ -149,6 +151,14 @@ public void setExportTrainingSetTableScript(String exportTrainingSetTableScript)
this.exportTrainingSetTableScript = exportTrainingSetTableScript;
}

public Long getLabelPriorityLevel() {
return this.labelPriorityLevel;
}

public void setLabelPriorityLevel(Long labelPriorityLevel) {
this.labelPriorityLevel = labelPriorityLevel;
}

public List<FeaturesItem> getFeatures() {
return this.features;
}
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5672446

Please sign in to comment.