diff --git a/aliyun-java-sdk-paifeaturestore/ChangeLog.txt b/aliyun-java-sdk-paifeaturestore/ChangeLog.txt index e615af9e5b..68eeef969a 100644 --- a/aliyun-java-sdk-paifeaturestore/ChangeLog.txt +++ b/aliyun-java-sdk-paifeaturestore/ChangeLog.txt @@ -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. diff --git a/aliyun-java-sdk-paifeaturestore/pom.xml b/aliyun-java-sdk-paifeaturestore/pom.xml index c28e064026..a2bf506a9f 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.12 + 1.0.13 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/ChangeProjectFeatureEntityHotIdVersionRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ChangeProjectFeatureEntityHotIdVersionRequest.java deleted file mode 100644 index d24dc3d96e..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ChangeProjectFeatureEntityHotIdVersionRequest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class ChangeProjectFeatureEntityHotIdVersionRequest extends RoaAcsRequest { - - - private String body; - - private String instanceId; - - private String featureEntityName; - - private String projectId; - public ChangeProjectFeatureEntityHotIdVersionRequest() { - super("PaiFeatureStore", "2023-06-21", "ChangeProjectFeatureEntityHotIdVersion"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureentities/[FeatureEntityName]/action/changehotidversion"); - setMethod(MethodType.POST); - } - - public String getBody() { - return this.body; - } - - public void setBody(String body) { - this.body = body; - if(body != null){ - putBodyParameter("body", body); - } - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getFeatureEntityName() { - return this.featureEntityName; - } - - public void setFeatureEntityName(String featureEntityName) { - this.featureEntityName = featureEntityName; - if(featureEntityName != null){ - putPathParameter("FeatureEntityName", featureEntityName); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return ChangeProjectFeatureEntityHotIdVersionResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ChangeProjectFeatureEntityHotIdVersionResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ChangeProjectFeatureEntityHotIdVersionResponse.java deleted file mode 100644 index b157cb767b..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ChangeProjectFeatureEntityHotIdVersionResponse.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class ChangeProjectFeatureEntityHotIdVersionResponse extends AcsResponse { - - private String requestId; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - @Override - public ChangeProjectFeatureEntityHotIdVersionResponse getInstance(UnmarshallerContext context) { - return ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetModelFeatureResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetModelFeatureResponse.java index 85ab6343f6..63e96dd675 100644 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetModelFeatureResponse.java +++ b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetModelFeatureResponse.java @@ -49,6 +49,8 @@ public class GetModelFeatureResponse extends AcsResponse { private String exportTrainingSetTableScript; + private Long labelPriorityLevel; + private List features; private Relations relations; @@ -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 getFeatures() { return this.features; } diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsRequest.java deleted file mode 100644 index a7aea64da5..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsRequest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class GetProjectFeatureEntityHotIdsRequest extends RoaAcsRequest { - - - private String instanceId; - - private String featureEntityName; - - private String projectId; - - private String nextSeqNumber; - public GetProjectFeatureEntityHotIdsRequest() { - super("PaiFeatureStore", "2023-06-21", "GetProjectFeatureEntityHotIds"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureentities/[FeatureEntityName]/hotids/[NextSeqNumber]"); - setMethod(MethodType.GET); - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getFeatureEntityName() { - return this.featureEntityName; - } - - public void setFeatureEntityName(String featureEntityName) { - this.featureEntityName = featureEntityName; - if(featureEntityName != null){ - putPathParameter("FeatureEntityName", featureEntityName); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - public String getNextSeqNumber() { - return this.nextSeqNumber; - } - - public void setNextSeqNumber(String nextSeqNumber) { - this.nextSeqNumber = nextSeqNumber; - if(nextSeqNumber != null){ - putPathParameter("NextSeqNumber", nextSeqNumber); - } - } - - @Override - public Class getResponseClass() { - return GetProjectFeatureEntityHotIdsResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsResponse.java deleted file mode 100644 index 587bc32bd4..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureEntityHotIdsResponse.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.GetProjectFeatureEntityHotIdsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class GetProjectFeatureEntityHotIdsResponse extends AcsResponse { - - private String requestId; - - private String hotIds; - - private Integer count; - - private String nextSeqNumber; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public String getHotIds() { - return this.hotIds; - } - - public void setHotIds(String hotIds) { - this.hotIds = hotIds; - } - - public Integer getCount() { - return this.count; - } - - public void setCount(Integer count) { - this.count = count; - } - - public String getNextSeqNumber() { - return this.nextSeqNumber; - } - - public void setNextSeqNumber(String nextSeqNumber) { - this.nextSeqNumber = nextSeqNumber; - } - - @Override - public GetProjectFeatureEntityHotIdsResponse getInstance(UnmarshallerContext context) { - return GetProjectFeatureEntityHotIdsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewRequest.java deleted file mode 100644 index fb476c074b..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewRequest.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class GetProjectFeatureViewRequest extends RoaAcsRequest { - - - private String instanceId; - - private String featureViewName; - - private String projectId; - public GetProjectFeatureViewRequest() { - super("PaiFeatureStore", "2023-06-21", "GetProjectFeatureView"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureviews/[FeatureViewName]"); - setMethod(MethodType.GET); - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getFeatureViewName() { - return this.featureViewName; - } - - public void setFeatureViewName(String featureViewName) { - this.featureViewName = featureViewName; - if(featureViewName != null){ - putPathParameter("FeatureViewName", featureViewName); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return GetProjectFeatureViewResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewResponse.java deleted file mode 100644 index 49e5b385b9..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectFeatureViewResponse.java +++ /dev/null @@ -1,270 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.GetProjectFeatureViewResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class GetProjectFeatureViewResponse extends AcsResponse { - - private String requestId; - - private String featureViewId; - - private String projectId; - - private String projectName; - - private String featureEntityId; - - private String featureEntityName; - - private String joinId; - - private String name; - - private String owner; - - private String type; - - private String writeMethod; - - private String registerTable; - - private String registerDatasourceId; - - private Boolean syncOnlineTable; - - private Integer tTL; - - private String config; - - private String gmtSyncTime; - - private String lastSyncConfig; - - private List fields; - - private List tags; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public String getFeatureViewId() { - return this.featureViewId; - } - - public void setFeatureViewId(String featureViewId) { - this.featureViewId = featureViewId; - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - } - - public String getProjectName() { - return this.projectName; - } - - public void setProjectName(String projectName) { - this.projectName = projectName; - } - - public String getFeatureEntityId() { - return this.featureEntityId; - } - - public void setFeatureEntityId(String featureEntityId) { - this.featureEntityId = featureEntityId; - } - - public String getFeatureEntityName() { - return this.featureEntityName; - } - - public void setFeatureEntityName(String featureEntityName) { - this.featureEntityName = featureEntityName; - } - - public String getJoinId() { - return this.joinId; - } - - public void setJoinId(String joinId) { - this.joinId = joinId; - } - - public String getName() { - return this.name; - } - - public void setName(String name) { - this.name = name; - } - - public String getOwner() { - return this.owner; - } - - public void setOwner(String owner) { - this.owner = owner; - } - - public String getType() { - return this.type; - } - - public void setType(String type) { - this.type = type; - } - - public String getWriteMethod() { - return this.writeMethod; - } - - public void setWriteMethod(String writeMethod) { - this.writeMethod = writeMethod; - } - - public String getRegisterTable() { - return this.registerTable; - } - - public void setRegisterTable(String registerTable) { - this.registerTable = registerTable; - } - - public String getRegisterDatasourceId() { - return this.registerDatasourceId; - } - - public void setRegisterDatasourceId(String registerDatasourceId) { - this.registerDatasourceId = registerDatasourceId; - } - - public Boolean getSyncOnlineTable() { - return this.syncOnlineTable; - } - - public void setSyncOnlineTable(Boolean syncOnlineTable) { - this.syncOnlineTable = syncOnlineTable; - } - - public Integer getTTL() { - return this.tTL; - } - - public void setTTL(Integer tTL) { - this.tTL = tTL; - } - - public String getConfig() { - return this.config; - } - - public void setConfig(String config) { - this.config = config; - } - - public String getGmtSyncTime() { - return this.gmtSyncTime; - } - - public void setGmtSyncTime(String gmtSyncTime) { - this.gmtSyncTime = gmtSyncTime; - } - - public String getLastSyncConfig() { - return this.lastSyncConfig; - } - - public void setLastSyncConfig(String lastSyncConfig) { - this.lastSyncConfig = lastSyncConfig; - } - - public List getFields() { - return this.fields; - } - - public void setFields(List fields) { - this.fields = fields; - } - - public List getTags() { - return this.tags; - } - - public void setTags(List tags) { - this.tags = tags; - } - - public static class FieldsItem { - - private String name; - - private String type; - - private List attributes; - - public String getName() { - return this.name; - } - - public void setName(String name) { - this.name = name; - } - - public String getType() { - return this.type; - } - - public void setType(String type) { - this.type = type; - } - - public List getAttributes() { - return this.attributes; - } - - public void setAttributes(List attributes) { - this.attributes = attributes; - } - } - - @Override - public GetProjectFeatureViewResponse getInstance(UnmarshallerContext context) { - return GetProjectFeatureViewResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureRequest.java deleted file mode 100644 index ca64abe377..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureRequest.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class GetProjectModelFeatureRequest extends RoaAcsRequest { - - - private String modelFeatureName; - - private String instanceId; - - private String projectId; - public GetProjectModelFeatureRequest() { - super("PaiFeatureStore", "2023-06-21", "GetProjectModelFeature"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/modelfeatures/[ModelFeatureName]"); - setMethod(MethodType.GET); - } - - public String getModelFeatureName() { - return this.modelFeatureName; - } - - public void setModelFeatureName(String modelFeatureName) { - this.modelFeatureName = modelFeatureName; - if(modelFeatureName != null){ - putPathParameter("ModelFeatureName", modelFeatureName); - } - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return GetProjectModelFeatureResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureResponse.java deleted file mode 100644 index fd0698f462..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/GetProjectModelFeatureResponse.java +++ /dev/null @@ -1,240 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.GetProjectModelFeatureResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class GetProjectModelFeatureResponse extends AcsResponse { - - private String requestId; - - private String modelFeatureId; - - private String projectId; - - private String projectName; - - private String name; - - private String owner; - - private String labelTableId; - - private String labelDatasourceId; - - private String labelDatasourceTable; - - private String labelEventTime; - - private String trainingSetTable; - - private String trainingSetFGTable; - - private String gmtCreateTime; - - private String gmtModifiedTime; - - private List features; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public String getModelFeatureId() { - return this.modelFeatureId; - } - - public void setModelFeatureId(String modelFeatureId) { - this.modelFeatureId = modelFeatureId; - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - } - - public String getProjectName() { - return this.projectName; - } - - public void setProjectName(String projectName) { - this.projectName = projectName; - } - - public String getName() { - return this.name; - } - - public void setName(String name) { - this.name = name; - } - - public String getOwner() { - return this.owner; - } - - public void setOwner(String owner) { - this.owner = owner; - } - - public String getLabelTableId() { - return this.labelTableId; - } - - public void setLabelTableId(String labelTableId) { - this.labelTableId = labelTableId; - } - - public String getLabelDatasourceId() { - return this.labelDatasourceId; - } - - public void setLabelDatasourceId(String labelDatasourceId) { - this.labelDatasourceId = labelDatasourceId; - } - - public String getLabelDatasourceTable() { - return this.labelDatasourceTable; - } - - public void setLabelDatasourceTable(String labelDatasourceTable) { - this.labelDatasourceTable = labelDatasourceTable; - } - - public String getLabelEventTime() { - return this.labelEventTime; - } - - public void setLabelEventTime(String labelEventTime) { - this.labelEventTime = labelEventTime; - } - - public String getTrainingSetTable() { - return this.trainingSetTable; - } - - public void setTrainingSetTable(String trainingSetTable) { - this.trainingSetTable = trainingSetTable; - } - - public String getTrainingSetFGTable() { - return this.trainingSetFGTable; - } - - public void setTrainingSetFGTable(String trainingSetFGTable) { - this.trainingSetFGTable = trainingSetFGTable; - } - - public String getGmtCreateTime() { - return this.gmtCreateTime; - } - - public void setGmtCreateTime(String gmtCreateTime) { - this.gmtCreateTime = gmtCreateTime; - } - - public String getGmtModifiedTime() { - return this.gmtModifiedTime; - } - - public void setGmtModifiedTime(String gmtModifiedTime) { - this.gmtModifiedTime = gmtModifiedTime; - } - - public List getFeatures() { - return this.features; - } - - public void setFeatures(List features) { - this.features = features; - } - - public static class FeaturesItem { - - private String featureViewId; - - private String featureViewName; - - private String name; - - private String type; - - private String aliasName; - - public String getFeatureViewId() { - return this.featureViewId; - } - - public void setFeatureViewId(String featureViewId) { - this.featureViewId = featureViewId; - } - - public String getFeatureViewName() { - return this.featureViewName; - } - - public void setFeatureViewName(String featureViewName) { - this.featureViewName = featureViewName; - } - - public String getName() { - return this.name; - } - - public void setName(String name) { - this.name = name; - } - - public String getType() { - return this.type; - } - - public void setType(String type) { - this.type = type; - } - - public String getAliasName() { - return this.aliasName; - } - - public void setAliasName(String aliasName) { - this.aliasName = aliasName; - } - } - - @Override - public GetProjectModelFeatureResponse getInstance(UnmarshallerContext context) { - return GetProjectModelFeatureResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersRequest.java deleted file mode 100644 index 5177409ae5..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersRequest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class ListProjectFeatureViewOwnersRequest extends RoaAcsRequest { - - - private String instanceId; - - private String projectId; - public ListProjectFeatureViewOwnersRequest() { - super("PaiFeatureStore", "2023-06-21", "ListProjectFeatureViewOwners"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureviewowners"); - setMethod(MethodType.GET); - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return ListProjectFeatureViewOwnersResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersResponse.java deleted file mode 100644 index aceb9b0d31..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewOwnersResponse.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.ListProjectFeatureViewOwnersResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class ListProjectFeatureViewOwnersResponse extends AcsResponse { - - private String requestId; - - private List owners; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public List getOwners() { - return this.owners; - } - - public void setOwners(List owners) { - this.owners = owners; - } - - @Override - public ListProjectFeatureViewOwnersResponse getInstance(UnmarshallerContext context) { - return ListProjectFeatureViewOwnersResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsRequest.java deleted file mode 100644 index d9fcba633d..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsRequest.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class ListProjectFeatureViewTagsRequest extends RoaAcsRequest { - - - private String instanceId; - - private String projectId; - public ListProjectFeatureViewTagsRequest() { - super("PaiFeatureStore", "2023-06-21", "ListProjectFeatureViewTags"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureviewtags"); - setMethod(MethodType.GET); - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return ListProjectFeatureViewTagsResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsResponse.java deleted file mode 100644 index 420b9f26ba..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/ListProjectFeatureViewTagsResponse.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.ListProjectFeatureViewTagsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class ListProjectFeatureViewTagsResponse extends AcsResponse { - - private String requestId; - - private List tags; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public List getTags() { - return this.tags; - } - - public void setTags(List tags) { - this.tags = tags; - } - - @Override - public ListProjectFeatureViewTagsResponse getInstance(UnmarshallerContext context) { - return ListProjectFeatureViewTagsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsRequest.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsRequest.java deleted file mode 100644 index 84f24f68df..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsRequest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.RoaAcsRequest; -import com.aliyuncs.http.MethodType; - -/** - * @author auto create - * @version - */ -public class WriteProjectFeatureEntityHotIdsRequest extends RoaAcsRequest { - - - private String body; - - private String instanceId; - - private String featureEntityName; - - private String projectId; - public WriteProjectFeatureEntityHotIdsRequest() { - super("PaiFeatureStore", "2023-06-21", "WriteProjectFeatureEntityHotIds"); - setUriPattern("/api/v1/instances/[InstanceId]/projects/[ProjectId]/featureentities/[FeatureEntityName]/action/writehotids"); - setMethod(MethodType.POST); - } - - public String getBody() { - return this.body; - } - - public void setBody(String body) { - this.body = body; - if(body != null){ - putBodyParameter("body", body); - } - } - - public String getInstanceId() { - return this.instanceId; - } - - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - if(instanceId != null){ - putPathParameter("InstanceId", instanceId); - } - } - - public String getFeatureEntityName() { - return this.featureEntityName; - } - - public void setFeatureEntityName(String featureEntityName) { - this.featureEntityName = featureEntityName; - if(featureEntityName != null){ - putPathParameter("FeatureEntityName", featureEntityName); - } - } - - public String getProjectId() { - return this.projectId; - } - - public void setProjectId(String projectId) { - this.projectId = projectId; - if(projectId != null){ - putPathParameter("ProjectId", projectId); - } - } - - @Override - public Class getResponseClass() { - return WriteProjectFeatureEntityHotIdsResponse.class; - } - -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsResponse.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsResponse.java deleted file mode 100644 index 1963bd8eb2..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/model/v20230621/WriteProjectFeatureEntityHotIdsResponse.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.model.v20230621; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.paifeaturestore.transform.v20230621.WriteProjectFeatureEntityHotIdsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class WriteProjectFeatureEntityHotIdsResponse extends AcsResponse { - - private String requestId; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - @Override - public WriteProjectFeatureEntityHotIdsResponse getInstance(UnmarshallerContext context) { - return WriteProjectFeatureEntityHotIdsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller.java deleted file mode 100644 index 18ccec8ee9..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import com.aliyuncs.paifeaturestore.model.v20230621.ChangeProjectFeatureEntityHotIdVersionResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class ChangeProjectFeatureEntityHotIdVersionResponseUnmarshaller { - - public static ChangeProjectFeatureEntityHotIdVersionResponse unmarshall(ChangeProjectFeatureEntityHotIdVersionResponse changeProjectFeatureEntityHotIdVersionResponse, UnmarshallerContext _ctx) { - - changeProjectFeatureEntityHotIdVersionResponse.setRequestId(_ctx.stringValue("ChangeProjectFeatureEntityHotIdVersionResponse.RequestId")); - - return changeProjectFeatureEntityHotIdVersionResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetModelFeatureResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetModelFeatureResponseUnmarshaller.java index 993fb84da9..9d2ceb7690 100644 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetModelFeatureResponseUnmarshaller.java +++ b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetModelFeatureResponseUnmarshaller.java @@ -41,6 +41,7 @@ public static GetModelFeatureResponse unmarshall(GetModelFeatureResponse getMode getModelFeatureResponse.setTrainingSetTable(_ctx.stringValue("GetModelFeatureResponse.TrainingSetTable")); getModelFeatureResponse.setTrainingSetFGTable(_ctx.stringValue("GetModelFeatureResponse.TrainingSetFGTable")); getModelFeatureResponse.setExportTrainingSetTableScript(_ctx.stringValue("GetModelFeatureResponse.ExportTrainingSetTableScript")); + getModelFeatureResponse.setLabelPriorityLevel(_ctx.longValue("GetModelFeatureResponse.LabelPriorityLevel")); Relations relations = new Relations(); diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureEntityHotIdsResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureEntityHotIdsResponseUnmarshaller.java deleted file mode 100644 index be5672bf31..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureEntityHotIdsResponseUnmarshaller.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import com.aliyuncs.paifeaturestore.model.v20230621.GetProjectFeatureEntityHotIdsResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class GetProjectFeatureEntityHotIdsResponseUnmarshaller { - - public static GetProjectFeatureEntityHotIdsResponse unmarshall(GetProjectFeatureEntityHotIdsResponse getProjectFeatureEntityHotIdsResponse, UnmarshallerContext _ctx) { - - getProjectFeatureEntityHotIdsResponse.setRequestId(_ctx.stringValue("GetProjectFeatureEntityHotIdsResponse.RequestId")); - getProjectFeatureEntityHotIdsResponse.setHotIds(_ctx.stringValue("GetProjectFeatureEntityHotIdsResponse.HotIds")); - getProjectFeatureEntityHotIdsResponse.setCount(_ctx.integerValue("GetProjectFeatureEntityHotIdsResponse.Count")); - getProjectFeatureEntityHotIdsResponse.setNextSeqNumber(_ctx.stringValue("GetProjectFeatureEntityHotIdsResponse.NextSeqNumber")); - - return getProjectFeatureEntityHotIdsResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureViewResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureViewResponseUnmarshaller.java deleted file mode 100644 index 24e81adc85..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectFeatureViewResponseUnmarshaller.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.paifeaturestore.model.v20230621.GetProjectFeatureViewResponse; -import com.aliyuncs.paifeaturestore.model.v20230621.GetProjectFeatureViewResponse.FieldsItem; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class GetProjectFeatureViewResponseUnmarshaller { - - public static GetProjectFeatureViewResponse unmarshall(GetProjectFeatureViewResponse getProjectFeatureViewResponse, UnmarshallerContext _ctx) { - - getProjectFeatureViewResponse.setRequestId(_ctx.stringValue("GetProjectFeatureViewResponse.RequestId")); - getProjectFeatureViewResponse.setFeatureViewId(_ctx.stringValue("GetProjectFeatureViewResponse.FeatureViewId")); - getProjectFeatureViewResponse.setProjectId(_ctx.stringValue("GetProjectFeatureViewResponse.ProjectId")); - getProjectFeatureViewResponse.setProjectName(_ctx.stringValue("GetProjectFeatureViewResponse.ProjectName")); - getProjectFeatureViewResponse.setFeatureEntityId(_ctx.stringValue("GetProjectFeatureViewResponse.FeatureEntityId")); - getProjectFeatureViewResponse.setFeatureEntityName(_ctx.stringValue("GetProjectFeatureViewResponse.FeatureEntityName")); - getProjectFeatureViewResponse.setJoinId(_ctx.stringValue("GetProjectFeatureViewResponse.JoinId")); - getProjectFeatureViewResponse.setName(_ctx.stringValue("GetProjectFeatureViewResponse.Name")); - getProjectFeatureViewResponse.setOwner(_ctx.stringValue("GetProjectFeatureViewResponse.Owner")); - getProjectFeatureViewResponse.setType(_ctx.stringValue("GetProjectFeatureViewResponse.Type")); - getProjectFeatureViewResponse.setWriteMethod(_ctx.stringValue("GetProjectFeatureViewResponse.WriteMethod")); - getProjectFeatureViewResponse.setRegisterTable(_ctx.stringValue("GetProjectFeatureViewResponse.RegisterTable")); - getProjectFeatureViewResponse.setRegisterDatasourceId(_ctx.stringValue("GetProjectFeatureViewResponse.RegisterDatasourceId")); - getProjectFeatureViewResponse.setSyncOnlineTable(_ctx.booleanValue("GetProjectFeatureViewResponse.SyncOnlineTable")); - getProjectFeatureViewResponse.setTTL(_ctx.integerValue("GetProjectFeatureViewResponse.TTL")); - getProjectFeatureViewResponse.setConfig(_ctx.stringValue("GetProjectFeatureViewResponse.Config")); - getProjectFeatureViewResponse.setGmtSyncTime(_ctx.stringValue("GetProjectFeatureViewResponse.GmtSyncTime")); - getProjectFeatureViewResponse.setLastSyncConfig(_ctx.stringValue("GetProjectFeatureViewResponse.LastSyncConfig")); - - List tags = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("GetProjectFeatureViewResponse.Tags.Length"); i++) { - tags.add(_ctx.stringValue("GetProjectFeatureViewResponse.Tags["+ i +"]")); - } - getProjectFeatureViewResponse.setTags(tags); - - List fields = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("GetProjectFeatureViewResponse.Fields.Length"); i++) { - FieldsItem fieldsItem = new FieldsItem(); - fieldsItem.setName(_ctx.stringValue("GetProjectFeatureViewResponse.Fields["+ i +"].Name")); - fieldsItem.setType(_ctx.stringValue("GetProjectFeatureViewResponse.Fields["+ i +"].Type")); - - List attributes = new ArrayList(); - for (int j = 0; j < _ctx.lengthValue("GetProjectFeatureViewResponse.Fields["+ i +"].Attributes.Length"); j++) { - attributes.add(_ctx.stringValue("GetProjectFeatureViewResponse.Fields["+ i +"].Attributes["+ j +"]")); - } - fieldsItem.setAttributes(attributes); - - fields.add(fieldsItem); - } - getProjectFeatureViewResponse.setFields(fields); - - return getProjectFeatureViewResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectModelFeatureResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectModelFeatureResponseUnmarshaller.java deleted file mode 100644 index 898db5e446..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/GetProjectModelFeatureResponseUnmarshaller.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.paifeaturestore.model.v20230621.GetProjectModelFeatureResponse; -import com.aliyuncs.paifeaturestore.model.v20230621.GetProjectModelFeatureResponse.FeaturesItem; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class GetProjectModelFeatureResponseUnmarshaller { - - public static GetProjectModelFeatureResponse unmarshall(GetProjectModelFeatureResponse getProjectModelFeatureResponse, UnmarshallerContext _ctx) { - - getProjectModelFeatureResponse.setRequestId(_ctx.stringValue("GetProjectModelFeatureResponse.RequestId")); - getProjectModelFeatureResponse.setModelFeatureId(_ctx.stringValue("GetProjectModelFeatureResponse.ModelFeatureId")); - getProjectModelFeatureResponse.setProjectId(_ctx.stringValue("GetProjectModelFeatureResponse.ProjectId")); - getProjectModelFeatureResponse.setProjectName(_ctx.stringValue("GetProjectModelFeatureResponse.ProjectName")); - getProjectModelFeatureResponse.setName(_ctx.stringValue("GetProjectModelFeatureResponse.Name")); - getProjectModelFeatureResponse.setOwner(_ctx.stringValue("GetProjectModelFeatureResponse.Owner")); - getProjectModelFeatureResponse.setLabelTableId(_ctx.stringValue("GetProjectModelFeatureResponse.LabelTableId")); - getProjectModelFeatureResponse.setLabelDatasourceId(_ctx.stringValue("GetProjectModelFeatureResponse.LabelDatasourceId")); - getProjectModelFeatureResponse.setLabelDatasourceTable(_ctx.stringValue("GetProjectModelFeatureResponse.LabelDatasourceTable")); - getProjectModelFeatureResponse.setLabelEventTime(_ctx.stringValue("GetProjectModelFeatureResponse.LabelEventTime")); - getProjectModelFeatureResponse.setTrainingSetTable(_ctx.stringValue("GetProjectModelFeatureResponse.TrainingSetTable")); - getProjectModelFeatureResponse.setTrainingSetFGTable(_ctx.stringValue("GetProjectModelFeatureResponse.TrainingSetFGTable")); - getProjectModelFeatureResponse.setGmtCreateTime(_ctx.stringValue("GetProjectModelFeatureResponse.GmtCreateTime")); - getProjectModelFeatureResponse.setGmtModifiedTime(_ctx.stringValue("GetProjectModelFeatureResponse.GmtModifiedTime")); - - List features = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("GetProjectModelFeatureResponse.Features.Length"); i++) { - FeaturesItem featuresItem = new FeaturesItem(); - featuresItem.setFeatureViewId(_ctx.stringValue("GetProjectModelFeatureResponse.Features["+ i +"].FeatureViewId")); - featuresItem.setFeatureViewName(_ctx.stringValue("GetProjectModelFeatureResponse.Features["+ i +"].FeatureViewName")); - featuresItem.setName(_ctx.stringValue("GetProjectModelFeatureResponse.Features["+ i +"].Name")); - featuresItem.setType(_ctx.stringValue("GetProjectModelFeatureResponse.Features["+ i +"].Type")); - featuresItem.setAliasName(_ctx.stringValue("GetProjectModelFeatureResponse.Features["+ i +"].AliasName")); - - features.add(featuresItem); - } - getProjectModelFeatureResponse.setFeatures(features); - - return getProjectModelFeatureResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewOwnersResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewOwnersResponseUnmarshaller.java deleted file mode 100644 index 43c2994b1f..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewOwnersResponseUnmarshaller.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.paifeaturestore.model.v20230621.ListProjectFeatureViewOwnersResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class ListProjectFeatureViewOwnersResponseUnmarshaller { - - public static ListProjectFeatureViewOwnersResponse unmarshall(ListProjectFeatureViewOwnersResponse listProjectFeatureViewOwnersResponse, UnmarshallerContext _ctx) { - - listProjectFeatureViewOwnersResponse.setRequestId(_ctx.stringValue("ListProjectFeatureViewOwnersResponse.RequestId")); - - List owners = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("ListProjectFeatureViewOwnersResponse.Owners.Length"); i++) { - owners.add(_ctx.stringValue("ListProjectFeatureViewOwnersResponse.Owners["+ i +"]")); - } - listProjectFeatureViewOwnersResponse.setOwners(owners); - - return listProjectFeatureViewOwnersResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewTagsResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewTagsResponseUnmarshaller.java deleted file mode 100644 index 5c130fd029..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/ListProjectFeatureViewTagsResponseUnmarshaller.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.paifeaturestore.model.v20230621.ListProjectFeatureViewTagsResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class ListProjectFeatureViewTagsResponseUnmarshaller { - - public static ListProjectFeatureViewTagsResponse unmarshall(ListProjectFeatureViewTagsResponse listProjectFeatureViewTagsResponse, UnmarshallerContext _ctx) { - - listProjectFeatureViewTagsResponse.setRequestId(_ctx.stringValue("ListProjectFeatureViewTagsResponse.RequestId")); - - List tags = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("ListProjectFeatureViewTagsResponse.Tags.Length"); i++) { - tags.add(_ctx.stringValue("ListProjectFeatureViewTagsResponse.Tags["+ i +"]")); - } - listProjectFeatureViewTagsResponse.setTags(tags); - - return listProjectFeatureViewTagsResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/WriteProjectFeatureEntityHotIdsResponseUnmarshaller.java b/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/WriteProjectFeatureEntityHotIdsResponseUnmarshaller.java deleted file mode 100644 index aa488cdd7d..0000000000 --- a/aliyun-java-sdk-paifeaturestore/src/main/java/com/aliyuncs/paifeaturestore/transform/v20230621/WriteProjectFeatureEntityHotIdsResponseUnmarshaller.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.aliyuncs.paifeaturestore.transform.v20230621; - -import com.aliyuncs.paifeaturestore.model.v20230621.WriteProjectFeatureEntityHotIdsResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class WriteProjectFeatureEntityHotIdsResponseUnmarshaller { - - public static WriteProjectFeatureEntityHotIdsResponse unmarshall(WriteProjectFeatureEntityHotIdsResponse writeProjectFeatureEntityHotIdsResponse, UnmarshallerContext _ctx) { - - writeProjectFeatureEntityHotIdsResponse.setRequestId(_ctx.stringValue("WriteProjectFeatureEntityHotIdsResponse.RequestId")); - - return writeProjectFeatureEntityHotIdsResponse; - } -} \ No newline at end of file